header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgb(255 255 255 / 80%);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

header div.child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    margin: 0 30px;
}

header a.brand-logo {
    padding: 5px 0;
}

header a.brand-logo svg,
header a.brand-logo img {
    height: 37px;
    width: auto;
    display: flex;
}

header div.links {
    display: flex;
    align-items: center;
}

header div.links a {
    height: 34px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    border-radius: 50px;
    font-size: 15px;
}

header div.links a:hover {
    background-color: rgba(96, 23, 197, 0.3);
}

header div.links a.login,
header div.links a.highlighted {
    padding: 0 20px;
    border: 1px solid rgba(96, 23, 197, 1);
    font-weight: 600;
    color: rgba(96, 23, 197, 1);
    margin-left: 10px;
}

header div.links a.login:hover,
header div.links a.highlighted:hover {
    background-color: rgba(96, 23, 197, 1);
    color: #fff;
}

header div.links div.date-filter {
    display: flex;
    align-items: center;
    gap: 7px;

    input {
        font-size: 15px;
        outline: none;
        display: flex;
        border: 1px solid #d3d3d3;
        padding: 6px 7px;
        border-radius: 7px;
    }

    input:hover {
        border-color: #454545;
        /*background-color: rgba(96, 23, 197, 0.3);*/
    }

    input:focus:not(:hover) {
        border-color: #212121;
        /*background-color: rgba(96, 23, 197, 0.3);*/
    }

    input[type="date"]::-webkit-calendar-picker-indicator {
        color: rgba(0, 0, 0, 0);
        opacity: 1;
        display: flex;
        margin-left: -14px;
        outline: none;
    }

    button {
        display: none;
        height: 37px;
        border: 0;
        outline: none;
        padding: 0 16px;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        background-color: #5F17C5;
        color: #fff;
    }

    button.active {
        display: block;
    }

    button.active:hover {
        opacity: 0.7;
    }

}

header div.links select {
    position: relative;
    outline: none;
    font-size: 15px;
    background-color: transparent;
    border: 1px solid #d3d3d3;
    height: 37px;
    margin-right: 10px;
    border-radius: 7px;
    padding: 0 12px 0 7px;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("https://www.svgrepo.com/show/365207/caret-down-thin.svg");
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: calc(100% - 5px) center;
}

header div.links select[name="courier-partner"] {
    width: 150px;
    margin-right: 0;
}

header div.links select:hover {
    border-color: #454545;
}

header div.links select:focus:not(:hover) {
    border-color: #212121;
}

header div.links button.search {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    outline: none;
    border-radius: 50px;
    background-color: #f2f2f2;
    margin-left: 14px;
    cursor: pointer;

    svg {
        display: flex;
        height: 18px;
        width: 18px;
        overflow: visible;
        fill: #0f0f0f;
    }
}

header div.links button.search:hover {
    background-color: rgba(96, 24, 196, 0.1);
}

header div.links button.search[data-visibility="hidden"] {
    display: none;
}

/* @media only screen and (max-width: 1040px) {
    body {
      background-color: lightblue;
    }
} */