/* booking-master-tutorial-23-july-2026 */

.bking-mstr-tutorial .tutorial-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 2rem;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    border: 1px solid #e9ecef;
    padding: 1.2rem;
}

.bking-mstr-tutorial .sidebar-header {
    border-bottom: 2px solid #fe5e00;
    padding-bottom: 0.8rem;
    margin-bottom: 1.2rem;
}

.bking-mstr-tutorial .sidebar-title {
    font-size: 2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.8rem;
    letter-spacing: 0.03rem;
}

.bking-mstr-tutorial .tutorial-nav .nav-link {
    color: #006079;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 1.2rem;
    border-radius: 0;
    text-align: left;
    border-bottom: 1px solid #b7b7b7;
    transition: all 0.2s ease-in-out;
    letter-spacing: 0.03rem;
    background-color: transparent;
}

.bking-mstr-tutorial .tutorial-nav .nav-link:last-child {
    border-bottom: none;
}

.bking-mstr-tutorial .tutorial-nav .nav-link:hover {
    color: #fe5e00;
    background-color: #f8f9fa;
}

.bking-mstr-tutorial .tutorial-nav .nav-link.active:not(.dropdown-toggle-link):not(.sub-link) {
    color: #fe5e00 !important;
    background-color: #f8f9fa !important;
    /* border-left: 3px solid #fe5e00 !important; */
    font-weight: 700 !important;
}

.bking-mstr-tutorial .submenu-group {
    width: 100%;
}

.bking-mstr-tutorial .dropdown-toggle-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-decoration: none;
}

.bking-mstr-tutorial .dropdown-toggle-link.active {
    background-color: transparent !important;
    color: #006079 !important;
    border-left: none !important;
}

.bking-mstr-tutorial .dropdown-toggle-link .toggle-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.bking-mstr-tutorial .dropdown-toggle-link:not(.collapsed) .toggle-icon {
    transform: rotate(180deg);
}

.bking-mstr-tutorial .submenu-collapse {
    background-color: #fcfcfc;
    padding-left: 1rem;
    width: 100%;
    margin-top: 1rem;
}

.bking-mstr-tutorial .sub-link {
    background: #ffffff !important;
    color: #200505 !important;
    padding: 1rem !important;
    font-size: 1.4rem !important;
    max-width: 90%;
    width: 61% !important;
    margin-bottom: 0.8rem;
    font-weight: 600 !important;
    letter-spacing: 0.02rem;
    border-bottom: none !important;
    border-left: 3px solid transparent !important;
    display: block;
    transition: all 0.2s ease-in-out;
}

.bking-mstr-tutorial .sub-link:hover {
    color: #fe5e00 !important;
    background-color: #f1f1f1 !important;
}

.bking-mstr-tutorial .sub-link.active {
    background: #f1f1f1 !important;
    color: #fe5e00 !important;
    /* border-left: 3px solid #fe5e00 !important; */
    font-weight: 700 !important;
}

.bking-mstr-tutorial .content-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
}

.bking-mstr-tutorial .main-heading {
    font-size: 2.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.bking-mstr-tutorial .video-box {
    border: 1px solid #dddddd;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

.bking-mstr-tutorial .video-box iframe {
    width: 100%;
    height: 100%;
}

.bking-mstr-tutorial .sub-heading {
    font-size: 2.2rem;
    font-weight: 600;
    color: #222222;
    margin-top: 1.5rem;
    margin-bottom: 1.2rem;
}

.bking-mstr-tutorial .article-body p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 1.5rem;
}

.bking-mstr-tutorial .tutorial-sidebar::-webkit-scrollbar {
    width: 5px;
}

.bking-mstr-tutorial .tutorial-sidebar::-webkit-scrollbar-thumb {
    background-color: #cccccc;
    border-radius: 10px;
}


.bking-mstr-tutorial .dropdown-toggle-link,
.bking-mstr-tutorial .sub-link {
  outline: none !important;
  box-shadow: none !important;
}

.bking-mstr-tutorial .tutorial-sidebar {
  scroll-behavior: auto !important; 
}

@media (max-width: 991px) {
    .bking-mstr-tutorial .tutorial-sidebar {
        position: relative;
        top: 0;
        max-height: none;
        border-right: none;
        padding-right: 0;
        margin-bottom: 25px;
    }
}