﻿.header-search-form-wrapper {
    width: 534px;
    margin: 0 auto;
    position: relative;
}

.header-search-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 40px;
    border-radius: 20px;
    border: 1px solid #ccc;
    padding: 8px 16px;
    gap: 8px;
    box-sizing: border-box;
    background: #fff;
    width: 100%;
}

    .header-search-form .form-group {
        flex: 1;
        margin: 0;
    }

    .header-search-form .form-control {
        width: 100%;
        height: 100%;
        border: none;
        outline: none;
        background: transparent;
        font-size: 13px;
        padding: 0 2px;
        box-sizing: border-box;
        white-space: nowrap;
        overflow-x: auto;
        text-overflow: clip;
    }

        .header-search-form .form-control::placeholder {
            color: #424242;
            opacity: 1;
            font-size: 13px;
            font-style: italic;
        }

    .header-search-form .btn-overlay {
        width: 32px;
        height: 32px;
        border: none;
        background: transparent;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        cursor: pointer;
        color: #004990;
        font-size: 18px;
    }

    .header-search-form .loader {
        margin-left: 6px;
    }

/* --- Sonuç listesi sadece sonuç varsa görünür --- */
.header-search-form-wrapper .result-list-wrapper:empty,
.header-search-form-wrapper .result-list:empty {
    display: none;
}

.header-search-form-wrapper .result-list-wrapper {
    position: absolute;
    top: 46px;
    left: 0;
    width: 100%;
    z-index: 10;
    background: #fff;
    border-radius: 10px;
    padding: 4px 0;
}

.header-search-form-wrapper .result-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .header-search-form-wrapper .result-list li,
    .header-search-form-wrapper .result-list a {
        color: #222 !important;
        background: transparent;
        padding: 8px 16px;
        font-size: 14px;
        cursor: pointer;
        transition: background 0.2s;
        text-decoration: none;
        display: block;
        border-radius: 6px;
    }

        .header-search-form-wrapper .result-list li:hover,
        .header-search-form-wrapper .result-list a:hover {
            background: #f2f2f2;
        }

/* Responsive */
@media (max-width: 768px) {
    .header-search-form-wrapper {
        width: 96%;
        max-width: 400px;
    }

    .header-search-form {
        height: 34px;
        border-radius: 14px;
        padding: 5px 8px;
        gap: 4px;
    }

        .header-search-form .form-control {
            font-size: 12px;
            padding: 0 1px;
            min-width: 150px;
        }

            .header-search-form .form-control::placeholder {
                font-size: 12px;
                color: #424242;
            }

        .header-search-form .btn-overlay {
            width: 28px;
            height: 28px;
            border-radius: 14px;
            font-size: 16px;
        }

    .header-search-form-wrapper .result-list-wrapper {
        top: 38px;
    }

    .header-search-form-wrapper .result-list li,
    .header-search-form-wrapper .result-list a {
        font-size: 13px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .header-search-form-wrapper {
        width: 98%;
        max-width: none;
        left: 1%;
        right: 1%;
    }

    .header-search-form {
        flex-direction: column;
        height: auto;
        padding: 4px 4px;
        gap: 2px;
        border-radius: 10px;
    }

        .header-search-form .form-control {
            font-size: 11px;
            padding: 0 1px;
            min-width: 150px;
        }

            .header-search-form .form-control::placeholder {
                font-size: 11px;
                color: #424242;
            }

        .header-search-form .btn-overlay {
            align-self: flex-end;
            margin-top: 2px;
            width: 24px;
            height: 24px;
            border-radius: 12px;
            font-size: 15px;
        }

    .header-search-form-wrapper .result-list-wrapper {
        top: 55px;
    }

    .header-search-form-wrapper .result-list li,
    .header-search-form-wrapper .result-list a {
        font-size: 12px;
        padding: 5px 8px;
    }
}

.btn-online-banking {
    display: flex; 
    flex-direction: row;
    align-items: center;
    width: 200px; 
    height: 48px; 
    border-radius: 8px; 
    padding: 13px 16px;
    gap: 8px; 
    border: none;
    font-size: 16px;
    background-color: #d9322d; 
    color: #fff;
    transition: background 0.2s, color 0.2s;
}

    .btn-online-banking:hover,
    .btn-online-banking:focus {
        background-color: #b82825;
        color: #fff;
    }

        .btn-online-banking:hover .icon,
        .btn-online-banking:focus .icon {
            color: #fff;
        }
    .btn-online-banking .icon {
        width: 25px;
        height: 20px;
        font-size: 20px; 
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-online-banking .btn-text {
        width: 114px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center; 
        font-family: 'Ubuntu', Arial, sans-serif;
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0;
        text-align: center;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }


.btn.link.dropdown-toggle:hover {
    background-color: #e6f0ff; 
    color: #0074d9; 
}

.ykb-footer {
    background-color: #004990;
}

    .ykb-footer .ykb-footer-top {
        padding: 32px 0 16px;
    }

        .ykb-footer .ykb-footer-top .ykb-footer-nav-list {
            display: flex;
            flex-flow: column;
            align-items: center;
            gap: 24px;
        }

@media (min-width: 768px) {
    .ykb-footer .ykb-footer-top .ykb-footer-nav-list {
        flex-wrap: wrap;
        flex-flow: row;
        align-items: inherit;
        justify-content: center;
    }
}

.ykb-footer .ykb-footer-top .ykb-footer-nav-list .list-item {
    display: flex;
    flex-flow: column;
    align-items: center;
}

@media (min-width: 768px) {
    .ykb-footer .ykb-footer-top .ykb-footer-nav-list .list-item {
        flex: 1 1 auto;
        align-items: center;
        justify-content: center;
    }
}

.ykb-footer .ykb-footer-top .ykb-footer-nav-list .list-item .list-title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: #fff;
    padding: 0;
    position: relative;
}

@media (max-width: 767px) {
    .ykb-footer .ykb-footer-top .ykb-footer-nav-list .list-item .list-title {
        padding-right: 24px;
    }
}

@media (max-width: 767px) {
    .ykb-footer .ykb-footer-top .ykb-footer-nav-list .list-item .list-title:after {
        position: absolute;
        content: "\e900";
        font-family: icon-font;
        top: 0;
        right: 0;
        font-size: 16px;
        color: #fff;
        transition: all ease 0.3s;
    }
}

.ykb-footer .ykb-footer-top .ykb-footer-nav-list .list-item .nav-inner-content {
    display: none;
    flex-flow: column;
    padding: 16px 0 0;
    width: 100%;
}

@media (min-width: 768px) {
    .ykb-footer .ykb-footer-top .ykb-footer-nav-list .list-item .nav-inner-content {
        display: flex;
        flex-flow: row;
        justify-content: center;
    }
}

.ykb-footer
.ykb-footer-top
.ykb-footer-nav-list
.list-item
.nav-inner-content
.nav-inner-list {
    display: flex;
    flex-flow: column;
    align-items: center;
}

    .ykb-footer
    .ykb-footer-top
    .ykb-footer-nav-list
    .list-item
    .nav-inner-content
    .nav-inner-list
    .item + .item {
        margin-top: 8px;
    }

    .ykb-footer
    .ykb-footer-top
    .ykb-footer-nav-list
    .list-item
    .nav-inner-content
    .nav-inner-list
    .item
    .link {
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        color: #fff;
        padding: 6px 0;
        display: block;
        text-align: center;
    }

@media (max-width: 767px) {
    .ykb-footer
    .ykb-footer-top
    .ykb-footer-nav-list
    .list-item
    .nav-inner-content
    .nav-inner-list
    .item
    .link {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .ykb-footer
    .ykb-footer-top
    .ykb-footer-nav-list
    .list-item
    .nav-inner-content.multiple-list
    .nav-inner-list {
        flex-basis: 50%;
        max-width: 50%;
    }
}

.ykb-footer
.ykb-footer-top
.ykb-footer-nav-list
.list-item
.nav-inner-content.multiple-list
.nav-inner-list + .nav-inner-list {
    margin: 8px 0 0;
}

@media (min-width: 768px) {
    .ykb-footer
    .ykb-footer-top
    .ykb-footer-nav-list
    .list-item
    .nav-inner-content.multiple-list
    .nav-inner-list + .nav-inner-list {
        margin: 0 0 0 24px;
    }
}

@media (max-width: 767px) {
    .ykb-footer .ykb-footer-top .ykb-footer-nav-list .list-item.active .list-title:after {
        content: "\e902";
    }
}

@media (max-width: 767px) {
    .ykb-footer .ykb-footer-top .ykb-footer-nav-list .list-item.active .nav-inner-content {
        display: flex;
    }
}

.ykb-footer .ykb-footer-bottom {
    display: flex;
    flex-flow: column-reverse;
    padding: 24px 0;
    border-top: solid 1px #003971;
    align-items: center;
    justify-content: center;
}

@media (max-width: 575px) {
    .ykb-footer .ykb-footer-bottom {
        margin: 0 -16px;
        padding: 24px 16px;
    }
}

@media (min-width: 768px) {
    .ykb-footer .ykb-footer-bottom {
        flex-flow: row;
        justify-content: center;
        align-items: center;
    }
}

.ykb-footer .ykb-footer-bottom .copyright-text {
    font-size: 14px;
    line-height: normal;
    color: #fff;
    text-align: center;
}

@media (max-width: 767px) {
    .ykb-footer .ykb-footer-bottom .copyright-text {
        text-align: center;
    }
}

.ykb-footer .ykb-footer-bottom .social-media-list {
    display: flex;
    flex-flow: row;
    justify-content: center;
}

@media (max-width: 767px) {
    .ykb-footer .ykb-footer-bottom .social-media-list {
        padding: 0 0 24px;
        justify-content: center;
    }
}

.ykb-footer .ykb-footer-bottom .social-media-list .list-item {
    padding: 6px 0;
}

    .ykb-footer .ykb-footer-bottom .social-media-list .list-item + .list-item {
        margin-left: 32px;
    }

@media (min-width: 0) and (max-width: 380px) {
    .ykb-footer .ykb-footer-bottom .social-media-list .list-item + .list-item {
        margin-left: 12px;
    }
}

@media (min-width: 768px) {
    .ykb-footer .ykb-footer-bottom .social-media-list .list-item + .list-item {
        margin-left: 24px;
    }
}

@media (min-width: 1025px) {
    .ykb-footer .ykb-footer-bottom .social-media-list .list-item + .list-item {
        margin-left: 32px;
    }
}

.ykb-footer .ykb-footer-bottom .social-media-list .list-item .link {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}


.btn.link.nav-link.dropdown-toggle:focus {
    outline: 2px solid #1976d2;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px #90caf9;
    z-index: 2;
    position: relative;
}

.icon-magnifying-glass:before {
    content: "\e907";
}