:root{
    --color0:white;
    --color1:black;
    --color2:#231E25;
    --color3:rgb(245,249,252);
    --color4:#506896;
    --shadowcolor1:#353122;
}
::-webkit-scrollbar {
    width: 8px;
}
/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius:8px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
body{
    background-color: var(--color3);
    margin:0;
    overflow-x:hidden;
    width:100%;
}
nav{
    width:100%;
    background-color:var(--color0);
    height:64px;
    box-shadow:0 4px 10px #808080;
    display:flex;
    position:fixed;
    top:0;
}
.header{
    min-width:80%;
    display:flex;
    align-items: center;
    justify-content: space-between;
    margin:auto;
    padding: 0px 10px;
    color:var(--color1);
    font-size:32px;
}
.btn-menu,.btn-menu-close{
    display:none;
}
.bold{
font-weight:900;
}
.tf1{
    text-decoration: line-through;
    color:gray;
}
.ui{
width:100%;
height:70px;
display:flex;
align-items:center;
}
.header span{
min-width:200px;
width:100%;
font-family: "Raleway", sans-serif;
font-weight: 400;
font-size:28px;
}
span a{
text-decoration: none;
color:#1c5c93;
}
.menu{
    width:75%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size:18px;
    margin:auto;
}
.menu a{
    min-width:96px;
    height:32px;
    text-decoration:none;
    color:#5c768d;
    display:flex;
    align-items: center;
    justify-content: center;
    font-size:15px;
    padding: 10px 0px 10px 30px;
    font-family: "Open-sans", sans-serif;
    transition: 0.3s;
}
.menu a:hover{
    color:#428bca;
}
.telegram{
   min-width:32px!important;
   height:32px!important;
}
.main{
    width:100%;
    margin:auto;
    padding:4px;
    display:flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    overflow:auto;
    margin-top:96px;
}
.buy-now{
    height:12%!important;
}
.buy-now img{
    width:100%!important;
    height:100%!important;
}

.order{
    width:180px;
    background-color:var(--color0);
    height:348px;
    border-radius:4px;
    /*box-shadow:0 0 10px 1px var(--shadowcolor1);*/
    overflow-y:hidden;
    display: flex;
    flex-direction: column;
    margin-bottom:8px;
    border-radius: 0px 0px 14px 14px;
}
.order img{
    height:50%;
    width:100%;
}
.order div{
    width:100%;
    height:50%;
    word-break: break-word;
    overflow: hidden;
}
.order div p{
    padding:2px;
    font-size:10px;
    font-weight:600;
    font-family:sans-serif;
    text-align:center;
}
.select{
    color:#217fcf!important;
}
.order a{
/*    width:100%;
    height:10%;*/
    text-decoration: none;
    color:black;
/*    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;*/
}
@media screen and (max-width:600px){
.telegram{
   min-width:64px!important;
   height:64px!important;
}
    .header{
    width:100%;
    }
    .btn-menu{
        display:block;
        background-image: url(./menu.svg);
        width:32px;
        height:32px;
        background-size:32px;
        margin-right:8px;
    }
    .btn-menu-close{
        display:block;
        background-image: url(./close.svg);
        width:32px;
        height:32px;
        background-size:32px;
        margin:8px;
        position:fixed;
        top:0;
        right:0;
    }
    .ui{
    background-color:rgba(0,0,0,0.8);
    width:100%;
    height:120vh;
    z-index:999;
    display:none;
    position: absolute;
    top:0px;
    right:0;
    text-align:right;
    }
    .menu{
        display: block;
        width: 90%;
        margin:auto;
        overflow: hidden;
        top: 48px;
        position:relative;
        height: 90vh;
        background-color: var(--color0);
        right: 0px;
        margin:auto;
        transition: 0.4s ease-in-out;
        border-radius:2px;
    }
    .menu a{
        width:90%;
        height:48px;
        margin:auto;
        margin-top:8px;
        margin-bottom:8px;
        color:var(--color1);
        background-color:var(--color0);
    }

}
@media screen and (min-width:400px){
    .order div p{
    font-size:10px;
    }
}
@media screen and (min-width:600px){
    .order div p{
    font-size:12px;
    }
    .order{
    height:480px;
    }
}
@media screen and (min-width:800px){
    .order div p{
    font-size:14px;
    }
    .order{
    width:300px;
    height:520px;
    }
    .buy-now{
    height:10%!important;
    }
}
@media screen and (min-width:1200px){
    .order div p{
    font-size:16px;
    }
    .order{
    width:300px;
    height:560px;
    }
}