

header {
    width: 100%;
}
.social-icons {
    margin: 0;
}
.social-icons a {
    color: #333;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: #007bff; /* ili boje brenda */
}

.header-container {
    display: flex;
    justify-content: space-between;
}
.custom-container {
    width: 100%;
}
.header-items {
    display: flex;
    justify-items: center;
    justify-content: space-between !important;
    align-items: center;
    width: 100%;
}
.navbar {
    justify-content: center;
    width: 100%;
}
.navbar-nav {
    display: flex;
    align-items: center;
}
.header-okta-box {
    width: 150px;
    overflow: hidden;
}
.header-nworths-box {
    overflow: hidden;
    width: 80px;
}
.header-okta-img-link {
    width: 100%;
}

.input-group {
    width: 150px;
}
.input-group:hover {
    border: none;
    outline: none;
}
.form-control {
    border: 1px solid black;
}
.header-search-btn {
    background-color: #F7941D;
}
#navbarNav {
    display: flex;
    justify-self: right;
}
.header-purchase-btn {
    display: inline-block;
    height: 40px;
    width: 40px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.header-cart-icon {
    height: 35px;
    width: 35px;
    color: black;
}

.langauge-first-style,
.language-switcher-style {
    width: 55px;
}

.langauge-first-style img,
.language-switcher img {
    width: 100%;
}

/*Cart opened*/

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 1050;
    padding: 20px;
}

.cart-sidebar.open {
    right: 0;
}
