#toggle-darkmode {
    margin-top: 5px;
    width: 75px;
    height: 30px;
    position: relative;
    display: block;
    background-color: #EBEBEB;
    border-radius: 200px;
    box-shadow: inset 0px 5px 15px rgba(0, 0, 0, 0.4), inset 0px -5px 15px rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: 0.3s;
}
#toggle-darkmode::after {
    content: "";
    width: 27px;
    height: 27px;
    position: absolute;
    top: 1.5px;
    left: 1.5px;
    background: linear-gradient(180deg, #FFCC89, #D8890B);
    border-radius: 180px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

#dark-mode-checkbox {
    width: 0;
    height: 0;
    visibility: hidden;
}
#dark-mode-checkbox:checked + #toggle-darkmode {
    background-color: #3B3E40;
}
#dark-mode-checkbox:checked + #toggle-darkmode::after{
    left: 74px;
    transform: translateX(-100%);
    background: linear-gradient(180deg, #777, #3A3A3A);
}

#toggle-darkmode:active::after{
    width: 39px;
}
#toggle-darkmode svg {
    position: absolute;
    top: 6px;
    z-index: 100;
}
#toggle-darkmode svg.sun{
    left: 6px;
    fill: #FFF;
    transition: 0.3s;
}
#toggle-darkmode svg.moon{
    left: 51px;
    fill: #7E7E7E;
    transition: 0.3s;
}
#dark-mode-checkbox:checked + #toggle-darkmode svg.sun{
    fill: #7E7E7E;
}
#dark-mode-checkbox:checked + #toggle-darkmode svg.moon{
    fill: #FFF;
}

svg.tailwind{
    fill: #5B96C2;
    opacity: 100%;
}

.bg-lightBlue{
    background-color: #5B96C2;
    color: black;
}

.text-lightBlue{
    color: #5B96C2;
}

.placeholder{
    opacity: 1;
    cursor: auto;
}


/* The actual timeline (the vertical ruler) */
.main-timeline {
    position: relative;
}
  
/* The actual timeline (the vertical ruler) */
.main-timeline::after {
    content: "";
    position: absolute;
    width: 3px;
    background-color: #5B96C2;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}
  
  /* Container around content */
.timeline {
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline .card{
    border: none;
}

.border-card-left{
    position: relative;
    border-radius: 5px;
    padding: 1px;

    /* fallback for old browsers */
    background: #5b96c2;

    /* Chrome 10-25, Safari 5.1-6 */
    background: -webkit-linear-gradient(
        to right,
        rgba(173, 181, 189, 0.5),
        rgba(31, 150, 194, 1)
    );

    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: linear-gradient(
        to right,
        rgba(173, 181, 189, 0.5),
        rgba(31, 150, 194, 1)
    );
}

.border-card-right{
    position: relative;
    border-radius: 5px;
    padding: 1px;

    /* fallback for old browsers */
    background: #5b96c2;

    /* Chrome 10-25, Safari 5.1-6 */
    background: -webkit-linear-gradient(
        to right,
        rgba(31, 150, 194, 1),
        rgba(173, 181, 189, 0.5)
    );

    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: linear-gradient(
        to right,
        rgba(31, 150, 194, 1),
        rgba(173, 181, 189, 0.5)
    );
}
  
/* The circles on the timeline */
.timeline::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    right: -11px;
    background-color: #5b96c2;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}
  
/* Place the container to the left */
.timeline-left {
    padding: 0px 40px 20px 0px;
    left: 0;
}

/* Place the container to the right */
.timeline-right {
    padding: 0px 0px 20px 40px;
    left: 50%;
}

/* Add arrows to the left container (pointing right) */
.timeline-left::before {
    content: " ";
    position: absolute;
    top: 18px;
    z-index: 1;
    right: 30px;
    border: medium solid #5B96C2;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #5B96C2;
}
  
/* Add arrows to the right container (pointing left) */
.timeline-right::before {
    content: " ";
    position: absolute;
    top: 18px;
    z-index: 1;
    left: 30px;
    border: medium solid #5B96C2;
    border-width: 10px 10px 10px 0;
    border-color: transparent #5B96C2 transparent transparent;
}

/* Fix the circle for containers on the right side */
.timeline-right::after {
    left: -14px;
}
  
/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
    /* Place the timelime to the left */
    .main-timeline::after {
        left: 31px;
    }

    /* Full-width containers */
    .timeline {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    /* Make sure that all arrows are pointing leftwards */
    .timeline::before {
        left: 60px;
        border: medium solid #5B96C2;
        border-width: 10px 10px 10px 0;
        border-color: transparent #5B96C2 transparent transparent;
    }

    /* Make sure all circles are at the same spot */
    .timeline-left::after,
    .timeline-right::after {
        left: 18px;
    }

    .timeline-left::before {
        right: auto;
    }

    /* Make all right containers behave like the left ones */
    .timeline-right {
        left: 0%;
    }
}