/* YouTube-Style Design */

/* Import Roboto font like YouTube */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* Global Variables */
:root {
    --yt-red: #FF0000;
    --yt-dark-gray: #0F0F0F;
    --yt-gray: #606060;
    --yt-light-gray: #F9F9F9;
    --yt-border: #E5E5E5;
    --yt-white: #FFFFFF;
    --yt-hover-bg: #F2F2F2;
}

/* Toastr styles moved to master-admin.blade.php for better control */

/* Reset and Base Styles */
body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: var(--yt-white);
    color: var(--yt-dark-gray);
    margin: 0;
    padding: 0;
}

/* Channel Header - YouTube Style */
.channel-header {
    margin-bottom: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--yt-border);
}

.channel-header-content {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
}

.channel-logo {
    flex-shrink: 0;
}

.channel-logo img {
    width: 180px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.channel-logo-placeholder {
    width: 180px;
    height: auto;
    border-radius: 50%;
    background: var(--yt-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yt-gray);
}

.channel-logo-placeholder i {
    font-size: 96px;
}

.channel-info {
    flex: 1;
    min-width: 0;
    margin-top: 55px;
}

.channel-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.channel-title h1 {
    font-family: "Roboto", "Arial", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: var(--yt-dark-gray);
    line-height: 1.2;
}

.verified-badge {
    color: #065fd4;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
}

.channel-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--yt-gray);
}

.channel-stats span {
    display: inline-block;
}

.channel-description {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--yt-dark-gray);
    line-height: 1.5;
}

.channel-description p {
    margin: 0;
    display: inline;
}

.show-more-btn {
    background: none;
    border: none;
    color: var(--yt-gray);
    cursor: pointer;
    padding: 0;
    margin-left: 4px;
    font-size: 14px;
    text-decoration: underline;
}

.show-more-btn:hover {
    color: var(--yt-dark-gray);
}

.channel-links {
    margin-top: 8px;
    display: none; /* Hide YouTube text link, use icon instead */
}

.youtube-link {
    color: #065fd4;
    font-size: 14px;
    text-decoration: none;
}

.youtube-link:hover {
    color: #065fd4;
    text-decoration: underline;
}

/* Channel Social Links */
.channel-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-left: auto;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 0;
}

.channel-social-links .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--yt-light-gray);
    color: var(--yt-dark-gray);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 20px;
    border: 1px solid var(--yt-border);
    position: relative;
    overflow: hidden;
}

.channel-social-links .social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.channel-social-links .social-link:hover::before {
    width: 100%;
    height: 100%;
}

.channel-social-links .social-link i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.channel-social-links .social-link:hover i {
    transform: scale(1.1);
}

/* YouTube */
.channel-social-links .social-youtube {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: #ffffff;
    border-color: #CC0000;
}

.channel-social-links .social-youtube:hover {
    background: linear-gradient(135deg, #CC0000 0%, #990000 100%);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Facebook */
.channel-social-links .social-facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
    color: #ffffff;
    border-color: #0C63D4;
}

.channel-social-links .social-facebook:hover {
    background: linear-gradient(135deg, #0C63D4 0%, #0A52B8 100%);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
    transform: translateY(-2px);
}

/* Telegram */
.channel-social-links .social-telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: #ffffff;
    border-color: #006699;
}

.channel-social-links .social-telegram:hover {
    background: linear-gradient(135deg, #006699 0%, #004d73 100%);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
    transform: translateY(-2px);
}

/* WhatsApp */
.channel-social-links .social-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: #ffffff;
    border-color: #1DA851;
}

.channel-social-links .social-whatsapp:hover {
    background: linear-gradient(135deg, #1DA851 0%, #15803d 100%);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

/* Zalo */
.channel-social-links .social-zalo {
    background: linear-gradient(135deg, #0068FF 0%, #0052CC 100%);
    color: #ffffff;
    border-color: #0052CC;
}

.channel-social-links .social-zalo:hover {
    background: linear-gradient(135deg, #0052CC 0%, #003D99 100%);
    box-shadow: 0 4px 12px rgba(0, 104, 255, 0.3);
    transform: translateY(-2px);
}

/* YouTube-Style Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background-color: var(--yt-white);
    display: flex;
    align-items: center;
    padding: 0 16px;
    z-index: 1000;
    border-bottom: 1px solid var(--yt-border);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    gap: 16px;
    box-sizing: border-box;
}

.header .toggle_menu,
.header #collapse_menu {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.header .toggle_menu:hover,
.header #collapse_menu:hover {
    background-color: var(--yt-hover-bg);
}

.header .toggle_menu i,
.header #collapse_menu i {
    font-size: 24px;
    color: var(--yt-dark-gray);
}

.header .main_logo {
    margin-right: 0;
}

.header .main_logo img {
    height: 20px;
    width: auto;
}

/* Search Bar - YouTube Style */
.header .search120 {
    flex: 1;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
}

.header .search120 .ui.search {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.header .search120 .search-container {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.header .search120 .search-form-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    margin: 0;
    padding: 0;
    height: 40px;
    border: 1px solid #CCCCCC;
    border-radius: 40px;
    background: #F8F8F8;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-sizing: border-box;
}

.header .search120 .search-form-wrapper:focus-within {
    border-color: #065fd4;
    box-shadow: 0 0 0 1px #065fd4;
    background: var(--yt-white);
}

.header .search120 .search-input-group {
    display: flex;
    align-items: center;
    flex: 1;
    height: 40px;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: none;
    overflow: hidden;
    box-sizing: border-box;
    max-width: 100%;
}

.header .search120 .search-input-group:focus-within {
    border: none;
    box-shadow: none;
    background: transparent;
}

.header .search120 .search-input-container {
    display: flex;
    align-items: center;
    flex: 1;
    height: 100%;
    padding: 0;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
    gap: 0;
}

.header .search120 .srch10 {
    flex: 1;
    border: none;
    padding: 0 16px;
    font-size: 16px;
    outline: none;
    background: transparent;
    color: var(--yt-dark-gray);
    line-height: 40px;
    min-width: 0;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.header .search120 .srch10:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

/* Remove border-radius from .ui.search .prompt */
.ui.search .prompt {
    border-radius: 0 !important;
}

.header .search120 .srch10::placeholder {
    color: var(--yt-gray);
    opacity: 0.7;
}

.header .search120 .keyboard-btn {
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yt-gray);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    height: 32px;
    width: 32px;
    border-radius: 0;
    margin-right: 4px;
}

.header .search120 .keyboard-btn:hover {
    color: var(--yt-dark-gray);
    background-color: rgba(0, 0, 0, 0.05);
}

.header .search120 .keyboard-btn:active {
    background-color: rgba(0, 0, 0, 0.08);
}

.header .search120 .keyboard-btn i {
    font-size: 18px;
}

.header .search120 .search-btn {
    width: 64px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-left: 1px solid #CCCCCC;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.header .search120 .search-form-wrapper:focus-within .search-btn {
    border-left-color: #065fd4;
}

.header .search120 .search-btn:hover {
    background: #F0F0F0;
}

.header .search120 .search-btn:active {
    background: #E8E8E8;
}

.header .search120 .search-btn i {
    font-size: 20px;
    color: var(--yt-dark-gray);
}

.header .search120 .voice-search-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8F8F8;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    padding: 0;
    margin-left: 0;
    position: relative;
    z-index: 1;
}

.header .search120 .voice-search-btn:hover {
    background-color: #F0F0F0;
}

.header .search120 .voice-search-btn:active {
    background-color: rgba(0, 0, 0, 0.1);
}

.header .search120 .voice-search-btn.recording {
    background-color: #FF0000;
    animation: pulse 1.5s ease-in-out infinite;
}

.header .search120 .voice-search-btn.recording i {
    color: var(--yt-white);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.header .search120 .voice-search-btn i {
    font-size: 20px;
    color: var(--yt-dark-gray);
}

/* Search Suggestions */
.search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--yt-white);
    border: 1px solid var(--yt-border);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-suggestions.show {
    display: block;
}

.search-suggestions-item {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.15s;
    border-bottom: 1px solid var(--yt-border);
}

.search-suggestions-item:last-child {
    border-bottom: none;
}

.search-suggestions-item:hover,
.search-suggestions-item.active {
    background-color: var(--yt-hover-bg);
}

.search-suggestions-item i {
    color: var(--yt-gray);
    font-size: 18px;
    flex-shrink: 0;
}

.search-suggestions-item-text {
    flex: 1;
    font-size: 14px;
    color: var(--yt-dark-gray);
}

.search-suggestions-item-highlight {
    font-weight: 500;
    color: var(--yt-dark-gray);
}

.search-suggestions-empty {
    padding: 16px;
    text-align: center;
    color: var(--yt-gray);
    font-size: 14px;
}

/* Header Right */
.header .header_right {
    margin-left: auto;
    flex-shrink: 0;
}

.header .header_right ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.header .header_right .upload_btn {
    padding: 10px 16px;
    background-color: var(--yt-red);
    color: var(--yt-white);
    border-radius: 18px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
}

.header .header_right .upload_btn:hover {
    background-color: #CC0000;
    color: var(--yt-white);
}

/* Sidebar */
.vertical_nav {
    position: fixed !important;
    left: 0 !important;
    top: 56px !important;
    width: 240px !important;
    height: calc(100vh - 56px) !important;
    background-color: var(--yt-white) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    border-right: 1px solid var(--yt-border) !important;
    z-index: 999 !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 1px 0 2px rgba(0, 0, 0, 0.05) !important;
    transform: translateX(-100%) !important;
    bottom: auto !important;
}

.vertical_nav.menu-open {
    transform: translateX(0) !important;
}

/* Override vertical-responsive-menu styles */
.vertical_nav.vertical_nav__closed {
    transform: translateX(-100%) !important;
    left: 0 !important;
}

.vertical_nav.vertical_nav__opened {
    transform: translateX(0) !important;
    left: 0 !important;
}

.vertical_nav::-webkit-scrollbar {
    width: 8px;
}

.vertical_nav::-webkit-scrollbar-track {
    background: transparent;
}

.vertical_nav::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    transition: background 0.2s;
}

.vertical_nav::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.35);
}

.vertical_nav .left_section {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vertical_nav::-webkit-scrollbar {
    width: 8px;
}

.vertical_nav::-webkit-scrollbar-track {
    background: transparent;
}

.vertical_nav::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    transition: background 0.2s;
}

.vertical_nav::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.35);
}

.vertical_nav .left_section {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vertical_nav .left_section ul {
    padding: 8px 0;
    list-style: none;
    margin: 0;
    flex: 1;
    overflow-y: auto;
}

.vertical_nav .menu--item {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vertical_nav .menu--link {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: var(--yt-dark-gray);
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    font-weight: 400;
    position: relative;
    min-height: 40px;
    line-height: 1.5;
}

.vertical_nav .menu--link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background-color: var(--yt-red);
    border-radius: 0 2px 2px 0;
    transform: translateY(-50%);
    transition: height 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.vertical_nav .menu--link:hover {
    background-color: var(--yt-hover-bg);
    color: var(--yt-dark-gray);
}

.vertical_nav .menu--link.active {
    background-color: var(--yt-hover-bg);
    color: var(--yt-red);
    font-weight: 500;
}

.vertical_nav .menu--link.active::before {
    height: 100%;
}

.vertical_nav .menu--link:hover .menu--icon {
    transform: scale(1.05);
    color: var(--yt-dark-gray);
}

.vertical_nav .menu--link.active .menu--icon {
    color: var(--yt-red);
}

.vertical_nav .menu--icon {
    width: 24px;
    min-width: 24px;
    height: 24px;
    margin-right: 20px;
    font-size: 22px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    line-height: 1;
}

.vertical_nav .menu--label {
    font-size: 14px;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    display: block;
    margin: 0;
    padding: 0;
    height: auto;
    min-height: 0;
}

/* Main Content Wrapper */
.wrapper {
    margin-top: 56px;
    margin-left: 0;
    padding: 24px;
    background-color: var(--yt-white);
    min-height: calc(100vh - 56px);
    transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Show menu and adjust wrapper on desktop */
@media (min-width: 1201px) {
    .vertical_nav {
        transform: translateX(0) !important;
        left: 0 !important;
    }

    .wrapper {
        margin-left: 240px;
    }
}

/* When menu is open on mobile/tablet */
@media (max-width: 1200px) {
    body.menu-open .wrapper {
        margin-left: 0;
    }

    .vertical_nav.menu-open {
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
    }
}

.wrapper._bg4586 {
    background-color: var(--yt-white) !important;
}

.container-fluid {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.col-md-12 {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Remove old search bar */
.search2 {
    display: none !important;
}

/* Homepage Styles */
.fcrse_2 {
    display: none; /* Hide channel banner for cleaner look */
}

.container-fluid {
    padding: 0;
}

/* Video Grid */
._14d25 {
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

._14d25 .row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (min-width: 1400px) {
    ._14d25 .row {
        grid-template-columns: repeat(4, 1fr);
        max-width: 100%;
    }
}

@media (max-width: 1200px) {
    ._14d25 .row {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    ._14d25 .row {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    ._14d25 .row {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

/* Video Card - YouTube Style */
.fcrse_1 {
    background: transparent;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.fcrse_1 .fcrse_img {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    box-sizing: border-box;
}

.fcrse_1 .fcrse_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.fcrse_1 .course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    transition: background 0.2s;
}

.fcrse_1:hover .course-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.fcrse_1 .play_btn1 {
    opacity: 0;
    transition: opacity 0.2s;
    background: rgba(0, 0, 0, 0.8);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yt-white);
    font-size: 20px;
}

.fcrse_1:hover .play_btn1 {
    opacity: 1;
}

.fcrse_1 .crse_timer {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--yt-white);
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 500;
}

.fcrse_1 .fcrse_content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fcrse_1 .crse14s {
    font-size: 16px;
    font-weight: 500;
    color: var(--yt-dark-gray);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    text-decoration: none;
}

.fcrse_1 .crse14s:hover {
    color: var(--yt-dark-gray);
}

.fcrse_1 .crse-cate {
    font-size: 14px;
    color: var(--yt-gray);
    text-decoration: none;
    line-height: 1.3;
}

.fcrse_1 .crse-cate:hover {
    color: var(--yt-gray);
}

/* Remove old titles */
.item_title {
    display: none;
}

/* Load More Button - Deprecated, using pagination now */
.load_btn {
    display: none;
}

/* Pagination Styles */
.pagination-wrapper {
    margin: 24px 0;
    padding: 16px 0;
    border-top: 1px solid var(--yt-border);
    border-bottom: 1px solid var(--yt-border);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.pagination-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.pagination-info {
    font-size: 14px;
    color: var(--yt-gray);
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pagination-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    max-width: 100%;
    overflow: hidden;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background-color: var(--yt-white);
    border: 1px solid var(--yt-border);
    border-radius: 18px;
    color: var(--yt-dark-gray);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.pagination-btn:hover:not(.disabled) {
    background-color: var(--yt-hover-bg);
    border-color: #D0D0D0;
    color: var(--yt-dark-gray);
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-btn i {
    font-size: 18px;
    flex-shrink: 0;
}

.pagination-page-info {
    font-size: 14px;
    color: var(--yt-dark-gray);
    padding: 0 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.pagination-page-info strong {
    font-weight: 500;
    color: var(--yt-dark-gray);
}

.pagination-per-page {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.pagination-per-page label {
    font-size: 14px;
    color: var(--yt-gray);
    white-space: nowrap;
}

.per-page-select {
    padding: 8px 12px;
    border: 1px solid var(--yt-border);
    border-radius: 8px;
    background-color: var(--yt-white);
    color: var(--yt-dark-gray);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
    min-width: 80px;
    max-width: 100px;
    box-sizing: border-box;
}

.per-page-select:hover {
    border-color: #D0D0D0;
}

.per-page-select:focus {
    border-color: #065fd4;
    outline: 2px solid rgba(6, 95, 212, 0.2);
    outline-offset: 2px;
}

/* Responsive pagination */
@media (max-width: 1200px) {
    .pagination-controls {
        gap: 10px;
    }

    .pagination-buttons {
        gap: 8px;
    }

    .pagination-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .pagination-page-info {
        font-size: 13px;
        padding: 0 4px;
    }
}

@media (max-width: 768px) {
    .wrapper {
        padding: 16px;
    }

    .header .search120 {
        display: none;
    }

    ._14d25 .row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Channel Header Responsive */
    .channel-header-content {
        flex-wrap: wrap;
        gap: 16px;
    }

    .channel-logo img,
    .channel-logo-placeholder {
        width: 120px;
        height: 120px;
    }

    .channel-logo-placeholder i {
        font-size: 72px;
    }

    .channel-social-links {
        margin-left: 0;
        width: 100%;
        justify-content: flex-start;
        margin-top: 12px;
    }
}

/* Hide old elements */
.fcrse_2,
.section3125.rpt145 {
    display: none;
}

/* Additional YouTube-style improvements */
* {
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Better focus states */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #065fd4;
    outline-offset: 2px;
}

/* Smooth transitions */
.fcrse_1,
.menu--link,
.header .toggle_menu,
.load_btn {
    transition: all 0.2s ease;
}

/* Improve video card hover */
.fcrse_1:hover {
    transform: translateY(-2px);
}

/* Override any old styles that might break the grid */
._14d25 .row > * {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
    flex: none !important;
}

/* Ensure grid items don't overflow */
._14d25 .row .fcrse_1 {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
}

/* Override Bootstrap column classes if used */
._14d25 .row .col-lg-3,
._14d25 .row .col-md-4,
._14d25 .row .col-sm-6,
._14d25 .row .col-xs-12 {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding: 0 !important;
}

/* Ensure images don't break out */
._14d25 .fcrse_1 .fcrse_img {
    max-width: 100% !important;
    width: 100% !important;
}

._14d25 .fcrse_1 .fcrse_img img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center !important;
}

/* Better spacing for video grid */
._14d25 {
    padding: 0;
    max-width: 100%;
    width: 100%;
}

/* Ensure proper image loading */
.fcrse_1 .fcrse_img img {
    display: block;
}

/* Better related videos layout */
.live_chat .fcrse_1 .fcrse_img {
    border-radius: 8px;
}

/* Improve search bar on mobile */
@media (max-width: 768px) {
    .header {
        padding: 0 8px;
    }

    .header .main_logo {
        margin-right: 8px;
    }

    .wrapper {
        padding: 16px 8px;
    }
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
.main_logo {
    margin-left: 5px !important;
	width: 110px !important;
}

.search120 {
    display: none;
    margin-left: 0 !important;
}

.search2 {
    display: flex !important;
    top: 58px !important;
}

.fcrse_2, .r-mt-45 {
    margin-top: 45px !important;
}

.header_right ul li:nth-child(2) {
	display: none !important;
}

.option_links {
    padding: 10px 3px !important;
    font-size: 18px !important;
}

.opts_account img {
    margin-left: 5px !important;
	width: 30px !important;
}

.menu.dropdown_mn {
   margin-right: -43px !important;
}

.menu.dropdown_ms {
   margin-right: -82px !important;
}

.noti_count {
    right: 0 !important;
}

.play_btn1 {
    top: 40%;
    right: 45% !important;
}

.value_props {
    text-align: center;
}

.value_icon {
	width: 100%;
}

.value_content {
    width: 100% !important;
    margin-top: 20px;
}

.value_content h4 {
    text-align: center !important;
}

.value_content p {
    text-align: center;
}

.get1452 {
    text-align: center !important;
}

.edu_social_links {
    text-align: left !important;
	margin-top: 10px;
}

.edu_social_links a:first-child {
    padding-left: 0;
}

.live1452 iframe {
	height: 190px !important;
}

.user_dt_right {
	float: left !important;
	width: 100%;
    margin-top: 30px;
}

.user_dt_right ul li {
    width: 24.3%;
}

._215b03 {
    margin-top: 30px;
}

.tab_crse .nav-link {
    padding: .5rem 1rem !important;
}

.progress1 {
    flex-basis: 30% !important;
}

.reviews_left {
	margin-bottom: 50px;
}

._216b22 {
    display: block !important;
}

._216b12 {
    display: none !important;
}

.dp_dt150 {
    display: block !important;
}

.prfledt1 {
    text-align: center !important;
	margin-left: 0 !important;
}

.rgt-145 {
    text-align: center !important;
    margin-top: 30px !important;
}

._bty149 {
    text-align: center !important;
}

.hf_img {
    width: 100% !important;
    float: left;
    position: relative;
}

.hs_content {
    padding: 10px 5px !important;
    float: left;
    width: 100% !important;
    position: relative;
}

.eps_dots10 {
    top: 10px !important;
}

.billing-percentages-progress-bar__labels li {
    width: 15% !important;
}

.radio--group-inline-container_1 li {
	margin-right: 5px !important;
}

.radio-label_1 {
	padding: 15px 10px !important;
}

._215b03:before {
    background: none !important;
}

.ml_item {
	width: auto !important;
    text-align: left !important;
	padding-top: 13px;
	margin-left: 15px !important;
}

.hde151 {
	display: none;
}

.hde152 {
	display: block !important;
}

.titleright {
	float: left !important;
	width: 100%;
    margin-top: 30px;
}

.title589 p {
	padding: 0 0 !important;
}

.title478 {
	padding: 0 0 80px !important;
}

.prev_title {
    max-width: 100px !important;
}

.prev_title1 {
    max-width: 100px !important;
}

.story125 iframe {
	margin-bottom: 50px;
}

.career_item p {
	padding: 0 0 !important;
}

.membership__right {
    display: none;
}

.thnk_coming_title {
	font-size: 4em !important;
}

.tc_footer_left {
	width: 100%;
	text-align: center;
}

.tc_footer_right {
	width: 100%;
	text-align: center;
	margin-top: 30px;
}

.cmtk_dt .clock li span {
    font-size: 3.5em !important;
}

.cmtk_dt .clock li label {
    font-size: 14px !important;
}

.cmtk_dt .clock li.sep {
    font-size: 2.5em !important;
}

.cmtk_dt {
    padding: 71px 0 61px !important;
}

.cert_banner_text h1 {
	font-size: 42px !important;
}

.edttslogo img {
    width: 80px !important;
}

.edttsplus img {
    width: 30px !important;
	margin: 0 20px !important;
}

.edttslogo1 img {
    width: 95px !important;
}

.result_dt h4 {
    height: 80px !important;
    width: 80px !important;
    padding: 25px 0 !important;
}

.result_dt .right_ans {
    height: 80px !important;
    width: 80px !important;
    padding: 16px 0 !important;
}

.result_dt .wrong_ans {
    height: 80px !important;
    width: 80px !important;
    padding: 16px 0 !important;
}

.result_content h2 {
	font-size: 36px !important;
}

.title478 {
    padding: 62px 0 50px !important;
}

.top-category {
	display: none;
}

.lecture-header-left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
}

.lecture-sidebar {
    display: none;
    width: 100%;
}

.lecture-container {
    margin-left: 0;
    padding: 30px 20px;
}

.lecture-content-inner-video {
    height: auto !important;
}

.video-responsive iframe {
    position: relative;
    width: 100vw;
    height: 55vw;
}
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
.main_logo {
    margin-left: 10px !important;
}

.search120 {
    margin-left: 30px !important;
}

.search2 {
    display: none !important;
}

.ui.swdh10 {
    width: 45vw !important;
}

.value_props {
    text-align: center;
}

.value_icon {
	width: 100%;
}

.value_content {
    width: 100% !important;
    margin-top: 20px;
}

.value_content h4 {
    text-align: center !important;
}

.value_content p {
    text-align: center;
}

.get1452 {
    text-align: center !important;
}

.edu_social_links {
    text-align: left !important;
	margin-top: 10px;
}

.edu_social_links a:first-child {
    padding-left: 0;
}

._215b03 {
    margin-top: 30px;
}

.reviews_left {
	margin-bottom: 50px;
}

._216b22 {
    display: block !important;
}

._216b12 {
    display: none !important;
}

.dp_dt150 {
    display: block !important;
}

.prfledt1 {
    text-align: center !important;
	margin-left: 0 !important;
}

.rgt-145 {
    text-align: center !important;
    margin-top: 30px !important;
}

._bty149 {
    text-align: center !important;
}

.hf_img {
    width: 100% !important;
    float: left;
    position: relative;
}

.hs_content {
    padding: 10px 5px !important;
    float: left;
    width: 100% !important;
    position: relative;
}

.eps_dots10 {
    top: 10px !important;
}

._215b03:before {
    background: none !important;
}

.ml_item {
	width: auto !important;
    text-align: center !important;
	margin-left: 15px !important;
}

.titleright {
	float: left !important;
	width: 100%;
    margin-top: 30px;
}

.title589 p {
	padding: 0 0 !important;
}

.title478 {
	padding: 0 0 80px !important;
}

.story125 iframe {
	margin-bottom: 50px;
}

.career_item p {
	padding: 0 0 !important;
}

.tc_footer_left {
	width: 100%;
	text-align: center;
}

.tc_footer_right {
	width: 100%;
	text-align: center;
	margin-top: 30px;
}

.thnk_coming_title {
	font-size: 10em !important;
}

.cmtk_dt .clock li span {
    font-size: 6em !important;
}

.cmtk_dt .clock li label {
    font-size: 16px !important;
}

.cmtk_dt .clock li.sep {
    font-size: 5em !important;
}

.cmtk_dt {
    padding: 71px 0 61px !important;
}

.cert_banner_text h1 {
	font-size: 42px !important;
}

.edttslogo img {
    width: 80px !important;
}

.edttsplus img {
    width: 30px !important;
	margin: 0 20px !important;
}

.edttslogo1 img {
    width: 95px !important;
}

.title478 {
    padding: 62px 0 50px !important;
}

.top-category {
	display: none;
}

.lecture-header-left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
}

.lecture-sidebar {
    display: none;
    width: 100%;
}

.lecture-container {
    margin-left: 0;
    padding: 30px 20px;
}

.lecture-content-inner-video {
    height: auto !important;
}

.video-responsive iframe {
    position: relative;
	width: 100vw;
    height: 40vw;
}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
.main_logo {
    margin-left: 10px !important;
}

.search120 {
    margin-left: 30px !important;
}

.search2 {
    display: none !important;
}

.ui.swdh10 {
    width: 55vw !important;
}

.value_props {
    text-align: center;
}

.value_icon {
	width: 100%;
}

.value_content {
    width: 100% !important;
    margin-top: 20px;
}

.value_content h4 {
    text-align: center !important;
}

.value_content p {
    text-align: center;
}

.get1452 {
    text-align: center !important;
}

.rating-box {
    flex-basis: 20% !important;
}

.reviews_left {
	margin-bottom: 50px;
}

._216b22 {
    display: block !important;
}

._216b12 {
    display: none !important;
}

.dp_dt150 {
    display: block !important;
}

.prfledt1 {
    text-align: center !important;
	margin-left: 0 !important;
}

.rgt-145 {
    text-align: center !important;
    margin-top: 30px !important;
}

._bty149 {
    text-align: center !important;
}

.hf_img {
    width: 100% !important;
    float: left;
    position: relative;
}

.hs_content {
    padding: 10px 5px !important;
    float: left;
    width: 100% !important;
    position: relative;
}

.eps_dots10 {
    top: 10px !important;
}

._215b03:before {
    background: none !important;
}

.ml_item {
	width: auto !important;
    text-align: center !important;
	margin-left: 15px !important;
}

.title589 p {
	padding: 0 50px !important;
}

.career_item p {
	padding: 0 0 !important;
}

.tc_footer_left {
	width: 100%;
	text-align: center;
}

.tc_footer_right {
	width: 100%;
	text-align: center;
	margin-top: 30px;
}

.lecture-header-left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 149px;
    flex: 0 0 149px;
}

.lecture-sidebar {
    display: none;
    width: 100%;
}

.lecture-container {
    margin-left: 0;
    padding: 30px 20px;
}

.lecture-content-inner-video {
    height: auto !important;
}

.video-responsive iframe {
    position: relative;
	width: 100vw;
    height: 55vw;
}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
body {
    overflow-y: scroll;
  }

.logo img {
	width: 200px;
	text-align: center;
	margin-top: 10px;
	float: none;
}

.wrapper__minify {
	margin-left: 50px;
}

.search120 {
    margin-left: 30px !important;
}

.search2 {
    display: none !important;
}

.ui.swdh10 {
    width: 62vw !important;
}

.value_props {
    text-align: center;
}

.value_icon {
	width: 100%;
}

.value_content {
    width: 100% !important;
    margin-top: 20px;
}

.value_content h4 {
    text-align: center !important;
}

.value_content p {
    text-align: center;
}

.get1452 {
    text-align: center !important;
}

.ui-accordion-content .content-summary {
    width: 30% !important;
}

.title900 {
	text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.hf_img {
    width: 40% !important;
}

.hs_content {
    width: 60% !important;
}

.ml_item {
	width: 78% !important;
}

.title589 p {
	padding: 0 160px !important;
}
}

/* Extra large devices (large desktops, 1200px and up) */
 @media (min-width: 1200px) {
.container {
    max-width: 1200px !important;
}


.hf_img {
    width: 40% !important;
}

.hs_content {
    width: 60% !important;
}

.container-fluid {
    padding-right: 30px !important;
    padding-left: 30px !important;
}
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
.main_logo {
    margin-left: 5px !important;
	width: 110px !important;
}

.search120 {
    display: none;
    margin-left: 0 !important;
}

.search2 {
    display: flex !important;
    top: 58px !important;
}

.fcrse_2, .r-mt-45 {
    margin-top: 45px !important;
}

.header_right ul li:nth-child(2) {
	display: none !important;
}

.option_links {
    padding: 10px 3px !important;
    font-size: 18px !important;
}

.opts_account img {
    margin-left: 5px !important;
	width: 30px !important;
}

.menu.dropdown_mn {
   margin-right: -43px !important;
}

.menu.dropdown_ms {
   margin-right: -82px !important;
}

.noti_count {
    right: 0 !important;
}

.play_btn1 {
    top: 40%;
    right: 45% !important;
}

.value_props {
    text-align: center;
}

.value_icon {
	width: 100%;
}

.value_content {
    width: 100% !important;
    margin-top: 20px;
}

.value_content h4 {
    text-align: center !important;
}

.value_content p {
    text-align: center;
}

.get1452 {
    text-align: center !important;
}

.edu_social_links {
    text-align: left !important;
	margin-top: 10px;
}

.edu_social_links a:first-child {
    padding-left: 0;
}

.live1452 iframe {
	height: 190px !important;
}

.user_dt_right {
	float: left !important;
	width: 100%;
    margin-top: 30px;
}

.user_dt_right ul li {
    width: 24.3%;
}

._215b03 {
    margin-top: 30px;
}

.tab_crse .nav-link {
    padding: .5rem 1rem !important;
}

.progress1 {
    flex-basis: 30% !important;
}

.reviews_left {
	margin-bottom: 50px;
}

._216b22 {
    display: block !important;
}

._216b12 {
    display: none !important;
}

.dp_dt150 {
    display: block !important;
}

.prfledt1 {
    text-align: center !important;
	margin-left: 0 !important;
}

.rgt-145 {
    text-align: center !important;
    margin-top: 30px !important;
}

._bty149 {
    text-align: center !important;
}

.hf_img {
    width: 100% !important;
    float: left;
    position: relative;
}

.hs_content {
    padding: 10px 5px !important;
    float: left;
    width: 100% !important;
    position: relative;
}

.eps_dots10 {
    top: 10px !important;
}

.billing-percentages-progress-bar__labels li {
    width: 15% !important;
}

.radio--group-inline-container_1 li {
	margin-right: 5px !important;
}

.radio-label_1 {
	padding: 15px 10px !important;
}

._215b03:before {
    background: none !important;
}

.ml_item {
	width: auto !important;
    text-align: left !important;
	padding-top: 13px;
	margin-left: 15px !important;
}

.hde151 {
	display: none;
}

.hde152 {
	display: block !important;
}

.titleright {
	float: left !important;
	width: 100%;
    margin-top: 30px;
}

.title589 p {
	padding: 0 0 !important;
}

.title478 {
	padding: 0 0 80px !important;
}

.prev_title {
    max-width: 100px !important;
}

.prev_title1 {
    max-width: 100px !important;
}

.story125 iframe {
	margin-bottom: 50px;
}

.career_item p {
	padding: 0 0 !important;
}

.membership__right {
    display: none;
}

.thnk_coming_title {
	font-size: 4em !important;
}

.tc_footer_left {
	width: 100%;
	text-align: center;
}

.tc_footer_right {
	width: 100%;
	text-align: center;
	margin-top: 30px;
}

.cmtk_dt .clock li span {
    font-size: 3.5em !important;
}

.cmtk_dt .clock li label {
    font-size: 14px !important;
}

.cmtk_dt .clock li.sep {
    font-size: 2.5em !important;
}

.cmtk_dt {
    padding: 71px 0 61px !important;
}

.cert_banner_text h1 {
	font-size: 42px !important;
}

.edttslogo img {
    width: 80px !important;
}

.edttsplus img {
    width: 30px !important;
	margin: 0 20px !important;
}

.edttslogo1 img {
    width: 95px !important;
}

.result_dt h4 {
    height: 80px !important;
    width: 80px !important;
    padding: 25px 0 !important;
}

.result_dt .right_ans {
    height: 80px !important;
    width: 80px !important;
    padding: 16px 0 !important;
}

.result_dt .wrong_ans {
    height: 80px !important;
    width: 80px !important;
    padding: 16px 0 !important;
}

.result_content h2 {
	font-size: 36px !important;
}

.title478 {
    padding: 62px 0 50px !important;
}

.top-category {
	display: none;
}

.lecture-header-left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
}

.lecture-sidebar {
    display: none;
    width: 100%;
}

.lecture-container {
    margin-left: 0;
    padding: 30px 20px;
}

.lecture-content-inner-video {
    height: auto !important;
}

.video-responsive iframe {
    position: relative;
    width: 100vw;
    height: 55vw;
}
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
.main_logo {
    margin-left: 10px !important;
}

.search120 {
    margin-left: 30px !important;
}

.search2 {
    display: none !important;
}

.ui.swdh10 {
    width: 45vw !important;
}

.value_props {
    text-align: center;
}

.value_icon {
	width: 100%;
}

.value_content {
    width: 100% !important;
    margin-top: 20px;
}

.value_content h4 {
    text-align: center !important;
}

.value_content p {
    text-align: center;
}

.get1452 {
    text-align: center !important;
}

.edu_social_links {
    text-align: left !important;
	margin-top: 10px;
}

.edu_social_links a:first-child {
    padding-left: 0;
}

._215b03 {
    margin-top: 30px;
}

.reviews_left {
	margin-bottom: 50px;
}

._216b22 {
    display: block !important;
}

._216b12 {
    display: none !important;
}

.dp_dt150 {
    display: block !important;
}

.prfledt1 {
    text-align: center !important;
	margin-left: 0 !important;
}

.rgt-145 {
    text-align: center !important;
    margin-top: 30px !important;
}

._bty149 {
    text-align: center !important;
}

.hf_img {
    width: 100% !important;
    float: left;
    position: relative;
}

.hs_content {
    padding: 10px 5px !important;
    float: left;
    width: 100% !important;
    position: relative;
}

.eps_dots10 {
    top: 10px !important;
}

._215b03:before {
    background: none !important;
}

.ml_item {
	width: auto !important;
    text-align: center !important;
	margin-left: 15px !important;
}

.titleright {
	float: left !important;
	width: 100%;
    margin-top: 30px;
}

.title589 p {
	padding: 0 0 !important;
}

.title478 {
	padding: 0 0 80px !important;
}

.story125 iframe {
	margin-bottom: 50px;
}

.career_item p {
	padding: 0 0 !important;
}

.tc_footer_left {
	width: 100%;
	text-align: center;
}

.tc_footer_right {
	width: 100%;
	text-align: center;
	margin-top: 30px;
}

.thnk_coming_title {
	font-size: 10em !important;
}

.cmtk_dt .clock li span {
    font-size: 6em !important;
}

.cmtk_dt .clock li label {
    font-size: 16px !important;
}

.cmtk_dt .clock li.sep {
    font-size: 5em !important;
}

.cmtk_dt {
    padding: 71px 0 61px !important;
}

.cert_banner_text h1 {
	font-size: 42px !important;
}

.edttslogo img {
    width: 80px !important;
}

.edttsplus img {
    width: 30px !important;
	margin: 0 20px !important;
}

.edttslogo1 img {
    width: 95px !important;
}

.title478 {
    padding: 62px 0 50px !important;
}

.top-category {
	display: none;
}

.lecture-header-left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
}

.lecture-sidebar {
    display: none;
    width: 100%;
}

.lecture-container {
    margin-left: 0;
    padding: 30px 20px;
}

.lecture-content-inner-video {
    height: auto !important;
}

.video-responsive iframe {
    position: relative;
	width: 100vw;
    height: 40vw;
}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
.main_logo {
    margin-left: 10px !important;
}

.search120 {
    margin-left: 30px !important;
}

.search2 {
    display: none !important;
}

.ui.swdh10 {
    width: 55vw !important;
}

.value_props {
    text-align: center;
}

.value_icon {
	width: 100%;
}

.value_content {
    width: 100% !important;
    margin-top: 20px;
}

.value_content h4 {
    text-align: center !important;
}

.value_content p {
    text-align: center;
}

.get1452 {
    text-align: center !important;
}

.rating-box {
    flex-basis: 20% !important;
}

.reviews_left {
	margin-bottom: 50px;
}

._216b22 {
    display: block !important;
}

._216b12 {
    display: none !important;
}

.dp_dt150 {
    display: block !important;
}

.prfledt1 {
    text-align: center !important;
	margin-left: 0 !important;
}

.rgt-145 {
    text-align: center !important;
    margin-top: 30px !important;
}

._bty149 {
    text-align: center !important;
}

.hf_img {
    width: 100% !important;
    float: left;
    position: relative;
}

.hs_content {
    padding: 10px 5px !important;
    float: left;
    width: 100% !important;
    position: relative;
}

.eps_dots10 {
    top: 10px !important;
}

._215b03:before {
    background: none !important;
}

.ml_item {
	width: auto !important;
    text-align: center !important;
	margin-left: 15px !important;
}

.title589 p {
	padding: 0 50px !important;
}

.career_item p {
	padding: 0 0 !important;
}

.tc_footer_left {
	width: 100%;
	text-align: center;
}

.tc_footer_right {
	width: 100%;
	text-align: center;
	margin-top: 30px;
}

.lecture-header-left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 149px;
    flex: 0 0 149px;
}

.lecture-sidebar {
    display: none;
    width: 100%;
}

.lecture-container {
    margin-left: 0;
    padding: 30px 20px;
}

.lecture-content-inner-video {
    height: auto !important;
}

.video-responsive iframe {
    position: relative;
	width: 100vw;
    height: 55vw;
}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
body {
    overflow-y: scroll;
  }

.logo img {
	width: 200px;
	text-align: center;
	margin-top: 10px;
	float: none;
}

.wrapper__minify {
	margin-left: 50px;
}

.search120 {
    margin-left: 30px !important;
}

.search2 {
    display: none !important;
}

.ui.swdh10 {
    width: 62vw !important;
}

.value_props {
    text-align: center;
}

.value_icon {
	width: 100%;
}

.value_content {
    width: 100% !important;
    margin-top: 20px;
}

.value_content h4 {
    text-align: center !important;
}

.value_content p {
    text-align: center;
}

.get1452 {
    text-align: center !important;
}

.ui-accordion-content .content-summary {
    width: 30% !important;
}

.title900 {
	text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.hf_img {
    width: 40% !important;
}

.hs_content {
    width: 60% !important;
}

.ml_item {
	width: 78% !important;
}

.title589 p {
	padding: 0 160px !important;
}
}

/* Extra large devices (large desktops, 1200px and up) */
 @media (min-width: 1200px) {
.container {
    max-width: 1200px !important;
}


.hf_img {
    width: 40% !important;
}

.hs_content {
    width: 60% !important;
}

.container-fluid {
    padding-right: 30px !important;
    padding-left: 30px !important;
}
}
