﻿*,
body,
html {
    font-family: "Quicksand", sans-serif !important;
    font-weight: 500;
}
.kart {
	background-image: url("../images/background.jpg");
	//opacity: 0.5;
	box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.1);
	background-repeat:no-repeat;
  	background-size:cover;
	padding-bottom: 0px !important;
}
	.kart img {
		padding: 5px;
		border-radius: 10px !important;
	}

.relative {
    position: relative;
}

.bg-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: brightness(0.9);
}

.menu-button {
    text-decoration: none !important;
    width: 100px;
    height: 65px;
    border-radius: 30px;
    
}

.restroid-text {
    color: white;
    width: 100%;
    text-align: center;
    font-weight: 500;
    padding-bottom: 10px;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    left: 0;
}

.back-button {
    padding: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.categories {
    margin-top: 20px;
}

    .categories .title {
        margin-bottom: 10px;
        font-weight: 600;
        font-size: 12px;
        opacity: 0.6;
    }

    .categories .items {
        max-width: 100%;
        white-space: nowrap;
        overflow: auto;
        padding-bottom: 10px;
        display: flex;
    }

    .categories .item {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        width: 100px;
        margin-right: 5px;
        user-select: none;
        cursor: pointer;
    }

        .categories .item.active {
            color: #e00000;
        }

            .categories .item.active::after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                height: 2px;
                width: 70%;
                background-color: #e00000;
            }

        .categories .item img {
            min-width: 100px;
            max-width: 100px;
            width: 100px;
            min-height: 80px;
            max-height: 80px;
            height: 80px;
            border-radius: 5px;
            object-fit: cover;
            transition: 0.2s;
        }

        .categories .item .name {
            margin: 10px 0;
            font-weight: 600;
            font-size: 13px;
            width: 100%;
            text-align: center;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
        }

.category-name-title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    position: relative;
}

    .category-name-title:before {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        height: 1px;
        width: 60px;
        background: #e2e2e2;
    }

.products {
    height: 20%;
    overflow: auto;
}

    .products a .title {
        margin-bottom: 10px;
        font-weight: 600;
        font-size: 12px;
        opacity: 0.6;
    }

    .products a .items {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .products a .item {
        flex: 0 0 49%;
        margin: 5px 5px 0 0;
        margin-bottom: 10px;
        display: flex;
        border-bottom: 1px solid lightgray;
        /*border-bottom: 1px solid #f2f2f2;*/
        height: 85px;
        align-items: center;
		padding-bottom: 10px;
    }

        .products a .item img {
            min-width: 100px;
            max-width: 100px;
            width: 100px;
            min-height: 80px;
            max-height: 80px;
            height: 80px;
            border-radius: 5px;
            margin-right: 10px;
            object-fit: cover;
        }

        .products a .item .content {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding-bottom: 5px;
            height: 100%;
        }

            .products a .item .content .name {
                font-weight: 600;
                margin-bottom: 0;
                font-size: 13px;
            }

            .products a .item .content .description {
                font-size: 11px;
                color: #909090;
            }

            .products a .item .content .price {
                color: #e00000;
                font-size: 13px;
                font-weight: 600 !important;
            }

            .products a .item .content .content-top {
                display: flex;
                flex-direction: column;
                height: 50px;
                overflow: hidden;
            }

            .products a .item .content .content-bottom {
                display: flex;
                flex-direction: row;
                align-items: center;
            }

            .products a .item .content .unit {
                color: #333;
                margin-left: 4px;
                font-size: 11px;
                font-weight: 400 !important;
                font-style: italic;
            }

iframe {
    border: none;
    width: 100%;
    display: block;
    height: calc(100vh - 280px);
}

@media (max-width: 500px) {
    .products .item {
        margin: 0;
        margin-bottom: 10px;
        flex: 0 0 100%;
    }
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none !important;
	color: #000000;
}


			/* Hamburger menü */
			.overlay {
			  height: 0%;
			  width: 100%;
			  position: fixed;
			  z-index: 10000;
			  top: 0;
			  left: 0;
			  background-color: rgb(0,0,0);
			  background-color: rgba(0,0,0, 0.9);
			  overflow-y: hidden;
			  transition: 0.5s;
			}

			.overlay-content {
			  position: relative;
			  top: 25%;
			  width: 100%;
			  text-align: center;
			  margin-top: 30px;
			}

			.overlay a {
			  padding: 8px;
			  text-decoration: none;
			  font-size: 36px;
			  color: navajowhite;
			  display: block;
			  transition: 0.3s;
			}

			.overlay a:hover, .overlay a:focus {
			  color: #f1f1f1;
			}

			.overlay .closebtn {
			  position: absolute;
			  top: 20px;
			  right: 45px;
			  font-size: 60px;
			}

			@media screen and (max-height: 450px) {
			  .overlay {overflow-y: auto;}
			  .overlay a {font-size: 20px}
			  .overlay .closebtn {
			  font-size: 40px;
			  top: 15px;
			  right: 35px;
			  }
	}