/*
Theme Name:   EduBlink Child
Theme URI:    https://demo.edublink.co/
Author:       DevsBlink
Author URI:   https://themeforest.net/user/devsblink/portfolio
Description:  EduBlink Child Theme For LMS and Education Purpose.
Version:      1.0.0
Template:     edublink
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain:  edublink-child
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

* If you are not familiar with Child Themes, you can read about it here:
* http://codex.wordpress.org/Child_Themes
*/
.edublink-course-details-page {
    padding-top: 40px !important;
    padding-bottom: 70px;
}
/* Value değeri 'intermediate' olan checkbox'a sahip label'ı gizle */
.eb-filter-content label:has(input[value="intermediate"]) {
    display: none !important;
}
/* İçinde value="intermediate" olan checkbox barındıran li elemanını gizle */
.tutor-widget-content .tutor-list-item:has(input[value="intermediate"]) {
    display: none !important;
}
.eb-tl-course-single-page .eb-tl-course-tabs {
    padding-top: 30px !important;
}
b, strong {
    color: inherit !important;
}
.elementor-widget-text-editor p:last-of-type {
  /* İstediğiniz özellikleri buraya yazın */
  margin-bottom: 15px;
}
.edublink-course-page-header .eb-course-header-breadcrumb {
    margin-bottom: 0 !important;
}
.edublink-course-page-header {
    padding: 45px 0 45px !important;
}
.edublink-course-page-header .eb-course-header-breadcrumb ul {
    justify-content: end !important;
}
.eb-course-single-4-preview {
    margin-bottom: 30px !important;
}

.edublink-single-course.course-style-2 .content .read-more-btn {
    visibility: visible !important;
    opacity: 1 !important;
    margin-bottom: 0 !important;
	
}

.edublink-single-course.course-style-2:hover .content .read-more-btn {
    margin-top: 0 !important; 
}

.edublink-single-course.course-style-2:hover .inner .thumbnail {
    margin-bottom: 0 !important;
}

.edublink-single-course.course-style-2:hover .inner .thumbnail a:after {
    background: none !important;
}

.edublink-single-course:hover .inner .thumbnail a img {
    transform: none !important;
}

.edublink-single-course.course-style-2:before {
    content: none !important;
    height: 0 !important;
    width: 0 !important;
    background-color: var(--edublink-color-white);
    border-radius: 0 0 4px 4px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    -webkit-transition: none !important;
    transition: none !important;
}
.sayfa_kurs_detay_kurs_ozet {
	display: none !important;
}
.edublink-single-course.course-style-2 .inner .content .title {

    margin-top: 0 !important;
	text-transform: none !important;
	margin-bottom: 5px !important;
}

.edublink-single-course.course-style-2 .content p {
	font-size: 13px !important;
	margin-bottom: 10px !important;
}

.edublink-single-course .content .course-price {
    font-size: 18px !important;
    margin-bottom: 15px !important;
}

.sayfa_kurs_liste_kurs_ozet {
	font-size: 13px !important;
	border-bottom: 1px solid #CCCCCC !important;
	border-top: 1px solid #CCCCCC !important;
	padding-top: 3px !important;
	padding-bottom: 3px !important;
	margin-bottom: 10px !important;
}

.sayfa_kurs_liste_kurs_ozet i {
	font-size: 10px !important;
}
.sayfa_pats_detay_modul h1, h2, h3 {
	margin-top: 5px !important;
}
.sayfa_anaysayfa_hero h1, h2 {
	margin-top: 5px !important;
	margin-bottom: 5px !important;
}
.swiper-pagination .swiper-pagination-bullet {
    height: 25px !important;
    width: 25px !important;
    background-color: rgba(255, 234, 153, 1) !important;
}
.course-price .price {
	display: inline-block !important;
}
.liste_taksit {
	color:#444444 !important;
	font-size: 12px !important;
	font-weight: 600 !important;
}


/* TOPBAR */

.edublink-header-top-content {
	display: inherit !important;
}

#topbar {
    background: #212121;
    height: 40px;
    position: relative;
    z-index: 999;
}

#topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
	width: 100%;
    padding: 0 52px;
	max-width: none !important;
}

#topbar a {
    color: #fff;
    text-decoration: none;
}

#topbar i {
    
}



/* SOL TARAF */

.topbar-left {
    display: flex;
    align-items: center;
}

.icon-link {
    width: 36px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-link,
.mail-link,
.whatsapp-link {
    height: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
}

.topbar-left span {
    height: 45px !important;
}


.icon-link i,
.phone-link i {

}

/* 1. Tetikleyici Kod (Sizin yazdığınız alan) */
.topbar-left a:hover i,
.topbar-left a:hover span {
    display: inline-block; /* İkonun hareket edebilmesi için kutu modeline alınması şarttır */
    -webkit-animation: toTopFromBottom 0.3s forwards;
    animation: toTopFromBottom 0.3s forwards;
	color:#FFFFFF !important;
}

/* 2. Eksik Olan Animasyon Tanımı (Keyframes) */
@keyframes toTopFromBottom {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    49% {
        transform: translateY(-100%);
        opacity: 0;
    }
    50% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Safari ve eski tarayıcılar için webkit desteği */
@-webkit-keyframes toTopFromBottom {
    0% {
        -webkit-transform: translateY(0);
        opacity: 1;
    }
    49% {
        -webkit-transform: translateY(-100%);
        opacity: 0;
    }
    50% {
        -webkit-transform: translateY(100%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        opacity: 1;
    }
}


/* SAĞ MENÜ */

.topbar-menu {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.topbar-menu li {
    margin: 0;
}

.topbar-menu li a {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 18px;
    font-size: 14px;
}

.topbar-menu li span {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 18px;
    font-size: 14px;
}

/* HOVER */


.topbar-left a:hover {
    background: #ff623b;
}
#topbar a i {
    color: #1AB69D !important;
}
#topbar .topbar-left a:hover i {
    color: #ffffff !important;
}

.topbar-menu a.link_panelim,
.topbar-menu a.link_giris {
	
	color: #ffffff;
    background-color: #009933;
}
.topbar-menu a.link_panelim:hover,
.topbar-menu a.link_giris:hover {
	
	color: #000000 !important;
    background-color: #FFCC00;
}
.topbar-menu a.link_cikis,
.topbar-menu a.link_kayit {

	color: #ffffff;
    background-color: #ff623b;
}
.topbar-menu a.link_cikis:hover,
.topbar-menu a.link_kayit:hover {

	color: #000000 !important;
    background-color: #FFCC00;
}


/* MOBİL */

@media (max-width: 1102px) {

	.mail-link span {
		display:none;
	}
}

@media (max-width: 767px) {

    #topbar {
        height: auto;
    }

    #topbar .container {
        flex-direction: column;
        align-items: stretch;
        height: auto;
    }

    .topbar-left,
    .topbar-menu {
        justify-content: center;
    }

    .topbar-menu {
        flex-wrap: wrap;
    }
}