/* hedaer */

.top-menu a{
    color: var(--dark);
    text-decoration: none !important;
    transition: all ease-in-out 150ms;
    font-size: 16px;
}

.top-menu a .remix{
    transition: all ease-in-out 150ms;
}

.top-menu a:hover{
    color: rgba(0,0,0, .9) !important;
}

.top-menu a:hover .remix{
    fill: rgba(0,0,0, .9) !important;
}

body .main-menu{
    top: -100px;
    position: static;
}
body header{
    background-color: #fff;
}
body.fixed-header .main-menu{
    animation: all .5s both;
    position: fixed;
    top: 0;
    z-index: 1040;
    background-color: #fff;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 8px rgb(0 0 0 / 10%) !important;
    -webkit-box-shadow: 0 4px 8px rgb(0 0 0 / 10%) !important;
    
}

.top-menu{
    padding: 4px 0;
}

header .dropdown-menu{
    display: block;
    visibility: hidden;
    opacity: 0;
    
}

header .dropdown:hover .dropdown-menu{
    visibility: visible;
    opacity: 1;
    padding-top: 1.5rem;
}

.category-tree,
.category-tree ul{
    margin: 0;
    list-style-type: none;
    padding: 0;
    position: relative;
}

.category-tree a{
    display: inline-block;
    text-decoration: none !important;
}

/*
.category-tree > li.has_child > ul{
    position: absolute;
    top: -90px;
    left: 0;
    right: 0;
    z-index: 112;
    width: 1180px;
    transform: translateX(386px);
    visibility: hidden;
    opacity: 0;
    transition: padding 200ms ease-in-out 150ms, opacity 150ms ease-in-out 200ms;
}

.category-tree > li.has_child:hover > ul{
    padding-top: 1rem;
    opacity: 1;
    visibility: visible;
}
*/
.category-tree > li.has_child {
    overflow:hidden;
}
.category-tree > li.has_child:hover {
    cursor: pointer;
}

.category-tree > li.has_child > ul {
    display: none;
    animation: fade_in_show 0.5s;
    
}
.category-tree > li.has_child.on > ul {
    display: block;
    animation: fade_in_show 0.5s
}

@keyframes fade_in_show {
    0% {
         opacity: 0;
         transform: translateY(-20px) ;
    }
    100% {
         opacity: 1;
         transform: translateY(0px);
    }
}

.category-tree > li.has_child > ul > .sub-category-container{
    background-color: #fff;
    padding:0 1rem;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.category-tree > li.has_child > ul > .sub-category-container > .sub-category{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.category-tree > li.has_child > ul > .sub-category-container > .category-images{
    width: 25%;
}

.category-tree > li.has_child > ul > .sub-category-container > .sub-category > li{
    flex: 0 1 50%;
    padding: 10px 18px;
    
}

.category-tree > li.has_child > ul > .sub-category-container > .sub-category > li > a{
    font-weight: 600;
    display: flex;
    align-items: center;
}

.category-tree > li.has_child > ul > .sub-category-container > .sub-category > li.has_child > a:before{
    content: 'Tüm';
    display: block;
    margin-right: 3px;
}

.category-tree > li.has_child > ul > .sub-category-container > .sub-category > li > ul{
    margin-bottom: 1rem;
    margin-top: .25rem;
}

.category-tree > li.has_child > ul > .sub-category-container > .sub-category > li > ul > .sub-category-container > .sub-category{
    display: flex;
    flex-wrap: wrap;
}

.category-tree > li.has_child > ul > .sub-category-container > .sub-category > li > ul > .sub-category-container > .sub-category > li{
    display: none;
}

.category-tree > li.has_child > ul > .sub-category-container > .sub-category > li > ul > .sub-category-container > .sub-category > li:nth-child(-n+4){
    display: block;
}

.category-tree > li.has_child > ul > .sub-category-container > .sub-category > li > ul > .sub-category-container > .sub-category > li:not(:last-child):after{
    display: inline-block;
    content: ',';
    margin-right: 6px;
    margin-left: 1px;
    font-weight: 500;
    color: var(--dark);
}

.category-tree > li{
    display: block;
}

.category-tree > li > a{
    padding: 1rem 1rem;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.category-tree > .has_child > a:after{
    display: block;
    content: '\203A';
    line-height: 1;
    transform: rotate3d(0, 0, 1, 90deg ) scale(2);
    transition: all 150ms linear;
}
.category-tree > .has_child.on > a:after{
    transform: rotate3d(0, 0, 1, -90deg ) scale(2);
}

.user .dropdown-menu{
    border: none!important;
    border-radius: 0;
    right: 0;
    left: 0;
    transform: translateX(-120px);
    width: 200px;
    background-color: transparent;
    visibility: hidden;
    opacity: 0;
    transition: padding 200ms ease-in-out 150ms, opacity 150ms ease-in-out 200ms;
    z-index: 1001 !important;
}

.user .dropdown-menu-container{
    border: none!important;
    border-radius: 4px;
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 15%);
    background-color: #fff;
    padding: 1rem 0;
}


.user .dropdown-item{
    padding: .5rem 1.5rem !important;
    font-weight: 500;
    color: var(--dark);
}


.modal .close{
    font-size: 26px;
} 

.ac_results{
    z-index: 1000;
    background-color: white;
}

.ac_results ul{
    max-width: 800px !important;
	position: absolute;
    padding: 0;
    font-size: var(--dark);
    text-align: left;
    list-style: none;
    background-color: #fff;
    box-shadow: 0 6px 12px rgba(0,0,0,.175) !important;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175) !important;
    -ms-touch-action: none !important;
    touch-action: none !important;
    width: calc(100% + 2rem) !important;
    margin-top: .25rem;
    border-radius: .25rem;
    border: 1px solid rgba(0,0,0,.15);
}

.ac_results ul>li>p,
.ac_results ul>li>a {
	margin: 0;
    display: block;
    padding: 1rem;
    font-weight: 400;
    color: var(--dark) !important;
    border-top: 1px solid var(--gray-light);
    text-decoration: none!important;
    height: 100%;
    width: 100%;
}
.ac_results ul>li>a img{
    display: block;
    height: 36px;
    float: left;
    margin-right: 6px !important;
    margin-top: -0.5rem;
}
.ac_results ul>li>a:hover{
	background-color: var(--light);
}

.ust_ek_menu_{
    display: none;
}

.main-banner .owl-carousel{
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

#breadcrumbs h1{
    font-size: 2rem;
    margin-bottom: 0 !important;
}

#breadcrumbs{
    font-size: 14px;
    max-width: 1400px;
    margin: 20px auto 0 auto;
}

#breadcrumbs .breadcrumb li{
    font-weight: 300;
}

#breadcrumbs .breadcrumb:not(:last-of-type){
    display: none;
}

#bug_finder .close,
#bugger .close{
    opacity: 1;
    color: var(--dark);
    z-index: 1042;
    position: absolute;
    right: 0;
    text-shadow: none;
    font-size: 3rem;
    font-weight: 300;
    margin: .75rem 1.5rem 0 0;
}