/* HEADER SETTİNGS */

/* First Bar */

.header-firstBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 11px 0;
}

.firstbar-phone {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.firstbar-phone i {
    font-size: 14px;
}

.firstbar-phone p {
    margin-bottom: 0;
    margin-left: 7px;
    color: red;
    font-size: 20px;
    font-weight: bold;
}

.firstbar-vertical {
    border-left: 1.9px solid black;
    height: 21px;
    margin: 0 12px;
}

.firstbar-nav .nav-link {
    padding: 0;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding-right: 12px;
}

/* Second Bar */

.header-secondBar {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.secondbar-slogan {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.secondbar-slogan img {
    width: 33px;
    height: auto;
}

.secondbar-slogan h1 {
    margin: 0;
    margin-left: 6px;
    font-style: italic;
    font-size: 14px;
}

.secondbar-nav {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.secondbar-nav .nav-item {
    display: flex;
    align-items: center;
}

.secondbar-nav .nav-link {
    color: white;
    font-size: 13px;
    padding-right: 0;
    padding-left: 12px;
}

.secondbar-nav .nav-item img {
    width: 15px;
    height: 12px;
    cursor: pointer;
}

.secondbar-nav .nav-link {
    padding-top: 0;
    padding-bottom: 0;
}

/* Third Bar */

.header-thirdBar {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: auto;
}

.header-thirdBar-top {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: 40px;
    margin: 32px 0;
}

.header-thirdBar-top .main-logo {
    width: 200px;
    margin-right: 48px;
    height: 100%;
    /* order: 1; */
}

.thirdbar-searchBar {
    margin-right: 30px;
    height: 100%;
    display: flex;
    flex-direction: row;
    width: 483px;
}

/* .thirdbar-searchBar form {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.thirdbar-searchBar form input {
    width: 100%;
    height: 100%;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border: none;
    outline: none;
    font-size: 12px;
    padding: 12px;
    padding-left: 18px;
    color: #282828;
    margin-top: 1px;
}

.thirdbar-searchBar form input::placeholder {
    color: #282828;
}

.searchbar-image {
    position: relative;
    left: 3px;
    width: 66px;
    height: 100%;
    background-color: #414141;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.searchbar-image img {
    width: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
} */

.thirdbar-basket {
    display: flex;
    align-items: center;
    height: 100%;
    width: 144px;
    margin-right: 18px;
    /* order: 3; */
}

.thirdbar-basket img {
    width: 25px;
    height: auto;
    margin: 0;
    margin-right: 11px;
    cursor: pointer;
}

.basket-context p {
    margin: 0;
    width: 119px;
    height: 100%;
}

.basket-text {
    font-size: 14px;
    font-weight: bold;
}

.basket-subtext {
    font-size: 12px;
    font-weight: bold;
}

.thirdbar-login {
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
    width: 173px;
    /* order: 4; */
    position: relative;
}

.login-context {
    background-color: #fdc300;
    width: 17vh;
    height: 100%;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.login-context p {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 13vh;
}

.login-context-name {
    margin: -14px 0 !important;
}

.login-text {
    font-size: 14px;
    font-weight: bold;
    position: relative;
    top: 3px;
}

.login-subtext {
    font-size: 12px;
    font-weight: bold;
    position: relative;
    bottom: 3px;
}

.login-icon {
    font-size: 19px;
}

.login-image {
    position: relative;
    width: 59px;
    height: 100%;
    background-color: #414141;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.login-image img {
    width: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.fa-chevron-down:before {
    position: relative;
    top: 2px;
}

.login-context-dropdown {
    position: absolute;
    left: -10px;
    top: 120%;
    background: #fdc300;
    width: 140px;
    /* height: 70px; */
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 6px;
    z-index: 99;
}

.login-context-dropdown a {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    width: 100%;
}

.login-context-dropdown a,
.login-context-dropdown p {
    background: "#fdc300";
    color: "#414141";
}

.login-context-dropdown a:hover,
.login-context-dropdown p:hover {
    background: "#414141";
    color: "white";
}

.login-context-dropdown a:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.login-context-dropdown a:last-child {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.header-thirdBar-bottom {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.thirdbar-nav .nav-link {
    color: white;
    font-size: 16px;
    padding-right: 0;
    padding: 14px;
}

/* STİCKY */

.sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
}

/* RESPONSİVE */

@media only screen and (max-width: 375px) and (min-width: 300px) {
    .secondbar-slogan span {
        font-size: 11px !important;
    }

    .secondbar-slogan img {
        width: 26px;
    }
}

@media only screen and (max-width: 600px) and (min-width: 375px) {
    .secondbar-slogan span {
        font-size: 14px !important;
    }

    .secondbar-slogan img {
        width: 26px;
    }
}

@media only screen and (max-width: 1200px) {
    .hideMobile {
        display: none !important;
    }

    .showMobile {
        display: block;
    }

    .secondbar-slogan {
        justify-content: center;
        width: 100%;
    }

    .header-thirdBar-top {
        height: auto;
        justify-content: center;
    }

    .main-logo {
        width: 100% !important;
        margin-right: 0 !important;
        display: flex;
        justify-content: center;
        height: auto;
        margin-bottom: 15px;
    }

    .main-logo img {
        width: 150px;
    }

    .thirdbar-basket {
        order: 3;
        margin-bottom: 15px;
    }

    .thirdbar-searchBar {
        order: 4;
        width: 100%;
        margin: 0 !important;
    }

    .thirdbar-hamburger {
        order: 2;
        margin-right: 30px;
        margin-bottom: 15px;
        height: 100%;
        display: flex !important;
        align-items: center;
    }

    .thirdbar-hamburger a,
    .thirdbar-hamburger a i {
        color: white;
        font-size: 18px;
    }

    .thirdbar-hamburger a i {
        margin-right: 5px;
    }

    .thirdbar-searchBar form input {
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 1200px) {
    .showMobile {
        display: none;
    }
}

/* extras */

.result {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* height: 100px; */
    border-radius: 5px;
    background-color: white;
    z-index: 3;
    border: 1px solid #cccccc;
    max-height: 410px;
}
.overflow {
    overflow-y: scroll;
}

.result a {
    padding: 8px 18px;
    border-bottom: 1px solid #cccccc;
}

.result a:first-child {
    padding-top: 10px;
}

.result a:last-child {
    padding-bottom: 10px;
    border-bottom: none;
}

.display-none {
    display: none;
}
