*{
    box-sizing: border-box;
}
a, a:link, a:visited, a:hover, a:active, a:visited{
    text-decoration: inherit;
    color: inherit;
}
.a_link{
    font-weight: 600;
    cursor: pointer;
}
.a_link:hover{
    text-decoration: underline;
}
b{
    font-weight: 600;
}
option:disabled {
	color:rgb(200,200,200);
}

form{
    margin:0;
    /*width: 100%;*/
}
html{
    font-size: 16px;
}
body{
    font-family: canada-type-gibson, sans-serif;
    font-weight: 400;
    font-style: normal;
    margin:0;
    position: relative;
    width:100%;
    overflow-x: hidden;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
input{
    all:unset;
}
ul{
    margin:0;
    padding: 0; 
}
h2{
    all:unset;
    display: inline-block;
    font-size: 2.2rem;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 10px;
    letter-spacing: 1px;
}
h3{
    all:unset;
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
    padding-bottom: 5px;
}
p{
    font-size: 1rem;
    margin: 0;
    margin-bottom: .5rem;
}
ul{
    display: inline-block;
    list-style-position: outside;
    padding-left: 20px;
}
li{
    list-style-type: square;
    margin-bottom: 3px;
    margin-left: 16px;
    font-size: .9rem;
    text-align: left;
}
svg{
    fill:currentColor;
}
.extra_bold{
    font-weight: 700;
}

.eshop_item li{
    margin-left: unset;
}
.spacer{
    height: 60px;
    width: 100%;
    background-color: unset;
    display: inline-block;
}
.content_block{
    padding: 10 0;
}
.Section_overcont{
    width: 80%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}
.Section_overcont_lowPadding{
    padding-top: 40px;
}
.Section_overcont_fullwidth{
    width: 100%;
    padding: 100px 10%;
    background-color: unset;
}
.Section_overcont_spacer{
    margin-top: 100px;
}
.nadpis_cont{
    width: 100%;
    border-bottom: 2px solid black;
}



.eshop_items{
    width: 100%;
    display: flex;
    justify-content: center;
    gap:20px;
    flex-wrap: wrap;
    padding: 20px 0;
}
.eshop_item{
    height: fit-content;
    background: linear-gradient(-40deg, hsla(0, 0%, 97%, 1), hsla(0, 0%, 100%, 1));
    box-shadow: 0px 0px 20px rgba(0,0,0,0.15);
    width: 300px;
    text-align: center;
    font-size: 30px;
    padding: 20px 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: .3s;
}
.eshop_item_notselled{
    opacity: .5;
}
.eshop_item:hover{
    /*background: linear-gradient(-40deg, hsla(0, 0%, 100%, 1), hsla(0, 0%, 100%, 1));*/
    transform: scale(1.01);
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
.eshop_item:hover .button{
    box-shadow: 0px 3px 10px rgba(0,0,0,0.3);
    transform: scale(1.02);
}
.eshop_item_inner{
    display: flex;
    flex-direction: column;
    gap:10px;
    align-items: center;
}
.eshop_item .nadpis{
    width: 100%;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 600;
}
.eshop_item .img{
    height: 200px;
}
.END_text{
    width: 100%;
    padding-bottom: 60px;
    text-align: center;
}
.dekujeme{
    width: 100%;
    height: calc(100vh - 60px);
}
.dekujeme_inner{
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgba(0,0,0,.8);
}

.UserOrder{
    display: flex;
    background-color: yellow;
    padding: 10px;
    gap: 10px;
}
.UserOrder_mastercont{
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 20px;
    gap: 10px;
}
.UserOrder_cart_cont{
    padding: 10px;
    background-color: orange;
    width: 350px;
    display: flex;
    flex-direction: column;
    
}
.AddItemToCartForUser{
    align-self: flex-end;
}
.UserOrder_cart{
    min-height: 240px;
}

@media (max-width:1200px){
    .Section_overcont{
        width: 90%;
        padding-top: 40px;
    }
    .Section_overcont_fullwidth{
        width: 100%;
        padding: 20px 5%;
    }
    .Section_overcont_spacer{
        margin-top: 40px;
    }
}