* {
    padding:0;
    margin:0;
    box-sizing: border-box;
    font-family: "montserrat", sans-serif;
}

body {
    background-color:rgb(255, 255, 255);
}

.header {
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: rgb(74, 60, 99);
    height:80px;
}

.logo {
    display:flex;
    height: 60px;
    padding: 10px 20px; 
    position:relative;
    top:5px; 
}

.search-bar {
    display: flex;
    position:absolute;
    top:80px;
    flex-grow: 1;
    align-items: center;
    margin-left:30px;
}

.search-bar-input {
    display:flex;
    min-width:200px;
    float:left;
    line-height: 27px;
    padding-left:5px;
    border:none;
    border-bottom: 1px solid black;
    background-color:rgb(120, 110, 137);
    color:white;
}

input {
    color:white;
}
.search-bar-icon.fa.fa-search {
    display: flex;
    float:left;
    font-size: 20px;
    margin-left:5px;
}

.basket-content {
    display:flex;
    flex-grow: 1;
    float:right;
    align-items: center;
    margin-right:15px;
    position: relative;
}

.fa.fa-shopping-bag {
    float:right;
    font-size:20px;
    background: rgb(235, 178, 72);
    padding:7px;
    border-radius: 50%;
}

.basket-amount {
    height:100%;
    border:none;
    background: none; 
    font-weight: bold;
    margin-left:5px;
    font-size: 18px;

}

.basket-clear-btn {
    font-weight: bold;
    font-size: 18px;
    margin-top:-3px;
    margin-left:6px;
    align-self: start;
    cursor: pointer;
    display:none;
}

.basket-clear-btn.active {
    display:block;
}

.icons {
    flex-grow: 1;
    margin-right:0.3rem;
    align-items: center;
    justify-content: center;
}

.sign.fa {
    display:none;
}

#first {
    display: flex;
    align-items: center;
    justify-self: center;
    justify-content: center;
    
}

#belt {
    position:relative;
    top:-1px;
    height:70px;
    width:80%;
    min-width:330px;
    background: rgb(236, 157, 54);
    color:white;
    border-bottom-right-radius: 35px;
    border-bottom-left-radius: 35px;
    transform:perspective(300px) rotatex(-20deg);
}

.btn.btn-categories {
    color: rgb(74, 60, 99);
    
    font-size: 16px;
    position:relative;
    top:-55px;
}

.row.link {
    justify-content: center;
    align-items: center;
}

.break {
    height: 100px;
}

.site {
    display:flex;
    align-items: center;
    font-size: 18px;
    justify-content: center;
}

#shop-container {
    display: block;
    justify-content: center;
    align-items: center;
}

#shop-container > .shop {
    display:flex;
    align-items: center;
    font-size: 16px;
    justify-content: center;
    margin-bottom:20px;
}

.link-to-allegro { 
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration:none;
    color:rgb(236, 157, 54);
}

#btn-allegro {
    margin:auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    padding:10px 20px;
    border:none;
    border-radius: 15px;
}

#btn-allegro:hover {
    box-shadow: rgba(36, 36, 41, 0.215) 5px 17px 32px -1px, rgba(0, 0, 0, 0.392) 5px 12px 20px -12px;
}

a>img {
    width:150px;
}


@media screen and (min-width:767px) {
    .collapsible .menu-items {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        column-gap:4rem;
        height:60px;
    }

    .collapsible .menu-items:hover {
        color:white;
    }

    #bars {
        display:none;
    }

    .menu-last-element {
        margin-bottom:0;
    }

    .sign.fa {
        display:flex;
        font-size: 18px;
        float:right;
        margin-left:10px;
        color:white;
        background-color: black;
        width:30px;
        height:30px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
    }

    .search-bar {
        display:flex;
        flex-grow: 1;
        align-items: center;
        margin-left:30px;
    }
    
    .search-bar-input {
        display:flex;
        min-width:200px;
        float:left;
        line-height: 27px;
        padding-left:5px;
        border:none;
        border-bottom: 1px solid black;
    }
    
    .search-bar-icon.fa.fa-search {
        display: flex;
        float:left;
        font-size: 20px;
        margin-left:5px;
    }

    .search-bar {
        display: flex;
        flex-grow: 1;
        align-items: center;
        margin-left:30px;
        position:relative;
        top:0;
    }

    .header {
        position: sticky;
        z-index: 2;
        top:0;
    }

    .menu {
        background-color:  rgb(246, 170, 65);
        position:relative;
        top:0;
        position: sticky;
        z-index: 1;
    }
    
    main {
        display:flex;
        flex-direction:column;
        align-items: center;
        justify-content: center;
        margin-top:30px;
    }

    .icons {
        flex-grow: 1;
        margin-right:2rem;
        align-items: center;
        justify-content: center;
    }

    .break {
        height: 100px;
    }

    #shop-container > .shop {
        display:flex;
        align-items: center;
        font-size: 18px;
        justify-content: center;
        margin-bottom:25px;
    }
    
    .link-to-allegro { 
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration:none;
        color:rgb(236, 157, 54);
    }  

    #shop-container {
        display: block;
        justify-content: center;
        align-items: center;
    }
  
    
    a>img {
        width:150px;
    }

    .site {
        display:flex;
        align-items: center;
        font-size: 18px;
        justify-content: center;
    }

    .row.link {
        justify-content: center;
        align-items: center;
    }
}

@media screen and (min-width:992px) {
    .btn.btn-categories {
        color: rgb(74, 60, 99);
        font-size: 17px;
        margin: 0 30px;
        position:relative;
        top:-55px;
    }

    .row.link {
        justify-content: center;
        align-items: center;
    }
        
    #shop-container {
        display: block;
        justify-content: center;
        align-items: center;
    }
    
    .site {
        display:flex;
        align-items: center;
        font-size: 18px;
        justify-content: center;
    }

    #shop-container > .shop {
        display:flex;
        align-items: center;
        font-size: 18px;
        justify-content: center;
        margin-bottom:25px;
    }
    
    .link-to-allegro { 
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration:none;
        color:rgb(236, 157, 54);
    }  

    .row.link {
        justify-content: center;
        align-items: center;
    }
}