/*========== HEADER ==========*/
.header__fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000000;
    box-shadow: 0 1px 0 rgba(22, 8, 43, 0.1);
    padding: 0;
    z-index: 1000000;
}

.header__fixed .header__container {
    display: flex;
    align-items: center;
    height: 70px;
    justify-content: space-between;
    z-index: 132;
}

.header__fixed .header__container > a {
    padding-left: 20px
}

.header__fixed .header__img {
    height: 60px;
}

header .header__search {
    display: flex;
    padding: 10px 15px 10px 10px;
    /* background: #0c0c0c; */
    background: linear-gradient(135deg, #db1461 0%, #3b63dc 100%);
    border-radius: 20px;
    position: relative;
    flex-direction: row;
    margin-left: -180px;
}

@media (max-width: 980px) {
    .header__fixed .header__img {
        height: 45px;
    }
}

@media (max-width: 767px) {
    header .header__container > .header__search {
        display: none;
    }
}

header .header__search .header__input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
    font-size: 15px;
    color: #ffffff;
    margin-right: 10px;
}

header .header__search .header__input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: white;
    opacity: 1;
    /* Firefox */
}

header .header__search button {
    width: 20px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    color: #ffffff;
    padding: 0;
}

.header__fixed .header__options {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    flex-direction: column;
}

.header__fixed .header__options > .nav-btn {
    cursor: pointer;
    z-index: 100;
    position: relative;
    width: 60px;
    height: 60px;
}

.header__fixed .header__options > .nav-btn > label {
    display: inline-block;
    width: 60px;
    height: 60px;
    padding: 19px;
    cursor: pointer;
    z-index: 100;
    position: relative;
}

.header__fixed .header__options > .nav-btn > label:hover, .nav #nav-check:checked ~ .nav-btn > label {
    background-color: rgba(0, 0, 0, 0.3);
}

.header__fixed .header__options > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid #eee;
}

header .header__search button img {
    width: 20px;
    display: block;
}

.header__nav-links > .header__search {
    margin: 40px 10% 20px;
    width: 80%;
}

.header__nav-links > a {
    display: inline-block;
    padding: 13px 10px 13px 10px;
    text-decoration: none;
    color: #efefef;
}

.header__nav-links > a:hover {
    /* widev background-color: rgba(0, 0, 0, 0.3); */
    background-color: #333;
}

.header__nav-links.open {
    height: 100vh;
    z-index: 999999;
    top: 60px;
}

@media (min-width: 768px) {
    .header__nav-links > .header__search {
        display: none;
    }

    .header__nav-links {
        width: 250px !important;
    }

    .header__nav-links.open {
        right: 0;
        box-shadow: -2px 2px 20px #000000;
        height: initial !important;
        padding: 40px 0;
    }
}

.header__nav-links {
    position: fixed;
    display: block;
    background: linear-gradient(135deg, #3b63dc 0%, #db1461 100%);
    height: 0px;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    right: 0px;
    width: 100%;
    z-index: -1;
    top: 0;
}

.header__nav-links > a {
    display: block;
    width: 100%;
    font-size: 19px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
}
