header {
    background-color: rgb(19, 25, 33);
    color: white;
    padding: 0px 15px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;
}

.amazon-header-left-section {
    width: 180px;
}

@media (max-width: 800px) {
    .amazon-header-left-section {
        width: unset;
    }
}

.amazon-logo-link,
.orders-link,
.cart-link {
    display: inline-block;
    padding: 6px;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0);
    cursor: pointer;
    text-decoration: none;
}

.amazon-logo-link:hover,
.orders-link:hover,
.cart-link:hover {
    border: 2px solid white;
}

.amazon-logo {
    width: 100px;
    margin-top: 5px;
}

.amazon-mobile-logo {
    display: none;
}

@media (max-width: 575px) {
    .amazon-logo {
        display: none;
    }

    .amazon-mobile-logo {
        display: block;
        height: 36px;
        margin-top: 2px;
    }
}

.amazon-header-middle-section {
    max-width: 850px;
    margin: 0px 10px;
    display: flex;
    flex: 1;
}

.search-bar {
    flex: 1;
    width: 0;
    height: 38px;
    padding: 0 15px;
    border: none;
    font-size: 16px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.search-btn {
    width: 45px;
    height: 38px;
    border: none;
    background-color: rgb(254, 189, 105);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    flex-shrink: 0;
}

.search-icon {
    height: 22px;
    margin-left: 2px;
    margin-top: 3px;
}

.search-bar:focus {
    outline: 2px solid rgb(255, 153, 0);
}

.amazon-header-right-section {
    width: 180px;
    display: flex;
    justify-content: end;
    flex-shrink: 0;

}

.returns-text {
    display: block;
    font-size: 13px;
    color: white;
}

.orders-text {
    display: block;
    font-size: 15px;
    color: white;
    font-weight: 700;
}

.cart-link {
    color: white;
    display: flex;
    align-items: center;
    position: relative;
}

.cart-icon {
    width: 50px;
}

.cart-text {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 700;
}

.cart-quantity {
    color: rgb(240, 136, 4);
    font-size: 16px;
    font-weight: 700;

    position: absolute;
    top: 4px;
    left: 22px;

    width: 26px;
    text-align: center;
}