@import url('https://fonts.googleapis.com/css2?family=Madimi+One&display=swap');

body {
    background: url(../images/gradient-bg.png) fixed;
    font-family: "Madimi One", sans-serif;
    padding-bottom: 40px;
}

/*LOADER*/
#nprogress {
    pointer-events: none;
}

#nprogress .bar {
    background: #29d;

    position: fixed;
    z-index: 1031;
    top: 0;
    left: 0;

    width: 100%;
    height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
    display: block;
    position: absolute;
    right: 0px;
    width: 100px;
    height: 100%;
    box-shadow: 0 0 10px #29d, 0 0 5px #29d;
    opacity: 1.0;

    -webkit-transform: rotate(3deg) translate(0px, -4px);
    -ms-transform: rotate(3deg) translate(0px, -4px);
    transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
    display: block;
    position: fixed;
    z-index: 1031;
    top: 15px;
    right: 15px;
}

#nprogress .spinner-icon {
    width: 18px;
    height: 18px;
    box-sizing: border-box;

    border: solid 2px transparent;
    border-top-color: #29d;
    border-left-color: #29d;
    border-radius: 50%;

    -webkit-animation: nprogress-spinner 400ms linear infinite;
    animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
    overflow: hidden;
    position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
    position: absolute;
}

@-webkit-keyframes nprogress-spinner {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes nprogress-spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.header {
    width: 100%;
    background: #000; /*url(../images/cover.png) no-repeat center center;*/
    background-size: cover;
    padding: 15px 20px 35px 20px;
}

.logo {
    font-size: 40px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
    background: #000;
    text-align: center;
}

.search-input {
    width: 100%;
    height: 50px;
    padding: 10px 15px;
    line-height: 30px;
    color: #000;
    font-weight: 400;
    border-radius: 5px;
    border: 0;
}

.search-input:hover,
.search-input:active,
.search-input:focus {
    outline: none;
}

.cafe-info {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin: 15px 0;
}

.categories .item {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.categories .item h3 {
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    font-size: 17px;
    width: 100%;
    text-align: center;
}

.categories .item figure {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    padding-top: 66%;
    overflow: hidden;
    position: relative;
}
.categories .item figure img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-categories select {
    height: 50px;
    padding: 5px 15px;
    line-height: 40px;
    font-size: 18px;
    color: #000;
    width: 100%;
    border: 0;
    border-radius: 5px;
    background: #e8651e;
    color: #fff;
    margin-bottom: 20px;
}

.other-categories select:active,
.other-categories select:focus {
    outline: none;
}


.items .item {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.items .item .detail {
    display: flex;
    justify-content: space-between;
}

.items .item h3 {
    background: #fff;
    border-radius: 10px;
    font-size: 18px;
    padding-right: 10px;
    padding-top: 5px;
    line-height: 1.1;
}

.items .item h4 {
    z-index: 1;
    background: #fff;
    border-radius: 10px;
    font-size: 24px;
    white-space: nowrap;
}

.items .item figure {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    padding-top: 66%;
    overflow: hidden;
    position: relative;
}
.items .item figure img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.items .item p {
    font-size: 15px;
    font-weight: 300;
    color: #999;
    margin-bottom: 10px;
}

.close {
    position: absolute;
    right: 10px;
    top: 7px;
    font-size: 25px;
    color: #000;
    z-index: 1;
}