/* own custom css  */
.main-price {
    text-decoration: line-through red;
}
.pricing {
    display: flex;
    flex-direction: column;
    line-height: 10px;
    margin-left: 5px;
}

.guider-card:hover .guider-name{
display: hidden;
transition: all 3s ease-in-out;
}


.content{
    opacity: 0;
    position : absolute;
    width: 100%;
    height: 100%;
    display: flex;
    top: 0;
    left: 0;
    flex-direction: column;
    align-items: center;
    justify-content:end;
    background-color: #13202298;
    transition: all 0.5s ease-in-out;

}
.content:hover{
    opacity: 1;
    transition: all 0.5s ease-in-out;
}

.content > *{
    /* transform: translateY(25px); */
    transition: all 0.5s ease-in-out;
}

/* Left Side (Content Display) */

/* Right Side (Accordion) */
/* .accordion-container {
            width: 30%;
            padding: 20px;
            background: #f4f4f4;
            overflow: auto;
        } */
.accordion {
    background: #fff;
    color: #000;
    cursor: pointer;
    padding: 15px;
    border: none;
    text-align: left;
    outline: none;
    width: 100%;
    transition: 0.3s;
    margin-bottom: 5px;
    border-radius: 10px;
}
.accordion:hover {
    /* background: #2980b9; */
}
.panel {
    display: none;
    background: white;
    border: 1px solid #facf16;
    padding: 10px;
}
.panel.show {
    display: block;
}
/* Sub Page Buttons */
.sub-page {
    background: #fff;
    color: #000;
    cursor: pointer;
    padding: 10px;
    border: none;
    width: 100%;
    text-align: left;
    margin-top: 5px;
}
.sub-page:hover {
    /* background: #1a252f; */
}
/* Nested Items */
.nested-items {
    display: none;
    padding-left: 20px;
    margin-top: 5px;
}
.nested-items button {
    display: block;
    width: 100%;
    padding: 8px;
    border: none;
    text-align: left;
    cursor: pointer;
    margin-bottom: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        flex-direction: column;
    }
    .content {
        width: 100%;
        height: 50vh;
    }
    .accordion-container {
        width: 100%;
        height: 50vh;
        overflow-y: auto;
    }
}
@media (max-width: 768px) {
    .accordion,
    .sub-page {
        font-size: 14px;
        padding: 10px;
    }
}
