@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css");

/* 
why we doing this ? 
Ans: Basically this is kickstart css and icon of timeline didn't show when user is logged out that way we are overriding this css
*/
.img-thumbnail, .text img, [class$=__body] img, .cke_widget_image img {
    padding: 0 !important;
    background-color: transparent !important;
    border: none !important;
}

.get-started-card {
    background-color: white;
    border: 1px solid #ddd;
    /* Adds a light gray border */
    border-top: none;
    /* Removes the border at the top */
    border-radius: 0 0 8px 8px;
    /* Adds rounded corners only at the bottom */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Adds a shadow only on sides and bottom */
    padding: 0 15px 15px;
    /* No padding on top, padding only on sides and bottom */
    background-color: #fff;
    /* Ensures a white background */
}

.timeline::before {
    content: '';
    /* position: absolute; */
    top: 32px;
    left: 3rem;
    height: 100vh;
    width: 2px;
    background: #e9ecef;
}

.timeline-item {
    position: relative;
    padding-left: 7rem;
    margin-bottom: 3rem;
}

.timeline-icon {
    position: absolute;
    left: 1rem;
    background: #fff;
    border: 2px solid #DCDFE2;
    border-radius: 7%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background-color: #EEF3F7;
    font-size: 30px;
    color: #1E3564;
    ;
    font-weight: bolder;
    padding: 15px 15px 15px 15px;
}

.img-size{
    height: 33px;
    width: 33px;
}
.timeline-icon i {
    color: #11309C;
    font-size: 2rem;
}

.timeline-content {
    background: transparent;
}

.timeline-content h3 {
    color: #1E3564;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.timeline-content p {
    color: #1E3564;
    font-weight: 400;
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
    padding-left: 0;
}

.timeline-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1E3564;
    font-weight: 400;
}

.timeline-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #515A63;
}

strong {
    color: black;
    font-weight: 600;
}

.note-section {
    margin-top: 3rem;
    background-color: #EEF3F7;
    border: 1px solid #EEF3F7;
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 0px 20px;
}

.note-icon {
    font-size: 1.5rem;
    color: #42BC97;
}

.note-content {
    flex: 1;
}

.note-content h4 {
   color: #1E3564;
    font-weight: 400;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.note-content p {
   color: #1E3564;
    font-weight: 400;
    margin-bottom: 0;
}

.note-link {
   color: #1E3564;
    font-weight: 400;
    text-decoration: none;
}

.note-link:hover {
    color: #463404;
}

.page,
.dialog-off-canvas-main-canvas {
    height: auto !important;
}


@media (max-width: 768px) {
    .timeline-icon {
        padding: 9px;
    }
}