/*
*
* Author: Rashiqul Rony
* Version: 1.0
* Author URI    : https://github.com/RashiqulRony/
-------------------------------------------------------------------*/

.btn-order {
    background-color: red;
    color: #fff;
    font-weight: bold;
    margin: 0!important;
    padding: 2px 15px!important;
}
.btn-order:hover {
    color: #ccc;
}
.btn-cart {
    background-color: #0c0c0c;
    color: #fff;
    font-weight: bold;
    padding: 2px 15px!important;
    margin: 0!important;
}
.btn-cart:hover {
    color: #ccc;
}
.btn-detail {
    background-color: green;
    color: #fff;
    font-weight: bold;
    margin: 0!important;
    padding: 2px 15px!important;
}
.btn-detail:hover {
    color: #ccc;
}
.loader {
    width: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 999999;
    background-color: #333333eb;
}
.loader--dot {
    animation-name: loader;
    animation-timing-function: ease-in-out;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    background-color: black;
    position: absolute;
    left: 40%;
    border: 2px solid white;
    top: 50%;
}
.loader--dot:first-child {
    background-color: #8cc759;
    animation-delay: 0.5s;
}
.loader--dot:nth-child(2) {
    background-color: #8c6daf;
    animation-delay: 0.4s;
}
.loader--dot:nth-child(3) {
    background-color: #ef5d74;
    animation-delay: 0.3s;
}
.loader--dot:nth-child(4) {
    background-color: #f9a74b;
    animation-delay: 0.2s;
}
.loader--dot:nth-child(5) {
    background-color: #60beeb;
    animation-delay: 0.1s;
}
.loader--dot:nth-child(6) {
    background-color: #fbef5a;
    animation-delay: 0s;
}
.loader--text {
    position: absolute;
    left: 0;
    right: 0;
    width: 4rem;
    margin: auto;
    top: 53%;
    color: #fff;
}
.loader--text:after {
    content: "Loading";
    font-weight: bold;
    animation-name: loading-text;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

@keyframes loader {
    15% {
        transform: translateX(0);
    }
    45% {
        transform: translateX(230px);
    }
    65% {
        transform: translateX(230px);
    }
    95% {
        transform: translateX(0);
    }
}
@keyframes loading-text {
    0% {
        content: "Loading";
    }
    25% {
        content: "Loading.";
    }
    50% {
        content: "Loading..";
    }
    75% {
        content: "Loading...";
    }
}

.footer-nav {
    font-size: 12px;
    background: #000000a6;
    margin: 0 auto;
    flex-flow: row nowrap;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    display: none;
}

.mb-nav-item {
    flex: 1 1 25%;
    white-space: nowrap;
    transition: all 500ms ease-in-out;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    color: #fff;
    padding: 4px;
}
.mb-nav-item span {
    font-size: 25px;
}
.mb-nav-item .title {
    color: #fff;
    font-weight: 600;
}
.mb-nav-item sup {
    position: absolute;
    margin: 10px 0;
}
.mb-nav-item.active {
    background-color: #eaa451;
}
.head-slider {
    height: calc(100vh - 300px);
}

.content-inner-1 {
    padding-top: 20px!important;
    padding-bottom: 20px!important;
}

@media only screen and (max-width: 991px) {
    .footer-nav {
        display: flex;
        z-index: 100;
    }
}

.f-service {
    background-color: #fff;
}
.qty-input {
    border: 1px solid #ccc;
    font-weight: bold;
    padding: 15px;
    width: 50px;
    text-align: center;
}
.qty-input-btn {
    cursor: pointer;
    background-color: #ccc;
    padding: 15px;
    font-weight: bold;
}
