/* Smart App Banner - TUR-1486 */
.smart-app-banner {
    display: none;
    position: relative!important;
    width: 100%!important;
    background: #292929!important;
    padding: 0 12px!important;
    box-sizing: border-box!important;
    z-index: 5!important;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif!important;
    -webkit-font-smoothing: antialiased!important;
    padding: 10px 12px!important;
    transform: translateY(-100%)!important;
    transition: transform .4s ease-out!important;
}
.smart-app-banner.visible {
    display: flex;
    align-items: center!important;
}
.smart-app-banner.animate-in {
    transform: translateY(0)!important;
}
.smart-app-banner-close {
    flex-shrink: 0!important;
    width: 13px!important;
    height: 28px!important;
    border: none!important;
    background: none!important;
    font-size: 22px!important;
    color: rgba(255,255,255,.7)!important;
    cursor: pointer!important;
    padding: 0!important;
    line-height: 28px!important;
    text-align: center!important;
    margin-right: 8px!important;
}
.smart-app-banner-close:hover {
    color: #fff!important;
}
.smart-app-banner-icon {
    flex-shrink: 0!important;
    width: 35px!important;
    height: 35px!important;
    border-radius: 10px!important;
    overflow: hidden!important;
    margin-right: 10px!important;
    box-shadow: 0 1px 4px rgba(0,0,0,.2)!important;
    background: #fff!important;
}
.smart-app-banner-icon img {
    width: 100%!important;
    height: 100%!important;
    object-fit: cover!important;
}
.smart-app-banner-info {
    flex: 1!important;
    min-width: 0!important;
    overflow: hidden!important;
}
.smart-app-banner-title {
    font-size: 13px!important;
    font-weight: 600!important;
    color: #fff!important;
    /*white-space: nowrap!important;*/
    /*overflow: hidden!important;*/
    /*text-overflow: ellipsis!important;*/
    margin: 0!important;
    display:block!important;
}
.smart-app-banner-author {
    font-size: 11px!important;
    color: rgba(255,255,255,.8)!important;
    margin: 2px 0 0!important;
    /*white-space: nowrap!important;*/
    /*overflow: hidden!important;*/
    /*text-overflow: ellipsis!important;*/
    display:block!important;
}
.smart-app-banner-action {
    flex-shrink: 0!important;
    margin-left: 8px!important;
}
.smart-app-banner-action a {
    background: #fff;
    color: #000!important;
    padding: .3rem .75rem!important;
    border-radius: 4px!important;
    display: flex!important;
    align-items: center!important;
    font-weight: 500!important;
    font-size: 11px!important;
    gap: 0.2rem!important;
    text-decoration: none!important;
    white-space: nowrap!important;
}
.smart-app-banner-action a:hover {
    background-color: rgba(255,255,255,.9)!important;
    text-decoration: none!important;
}

/* Sadece mobil telefonlarda goster */

@media (min-width: 768px), (pointer: fine) {
    .smart-app-banner {
        display: none !important;
    }
}