/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.border-secondary {
    transition: 0.5s;
}

.btn.border-secondary:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

/*** Navbar Start ***/
.fixed-top {
    background: var(--bs-white);
    border: 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    transition: .5s;
}

.navbar {
    height: 107px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .8);
}

/*** Navbar End ***/

/*** Header hero ***/
.header-hero {
    background: linear-gradient(rgba(248, 223, 173, 0.1), rgba(248, 223, 173, 0.1)), url(../img/hero-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*** Header hero end ***/

/*** vegetable Start ***/
.vegetable .tab-class .nav-item a.active {
    background: var(--bs-secondary) !important;
}

.vegetable .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.vegetable .vegetable-categorie .vegetable-name {
    line-height: 40px;
}

.vegetable .vegetable-categorie .vegetable-name a {
    transition: 0.5s;
}

.vegetable .vegetable-categorie .vegetable-name a:hover {
    color: var(--bs-secondary);
}

.vegetable .vegetable-item {
    height: 100%;
    transition: 0.5s;
}

.vegetable .vegetable-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.vegetable .vegetable-item .vegetable-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.vegetable .vegetable-item .vegetable-img img {
    transition: 0.5s;
}

.vegetable .vegetable-item .vegetable-img img:hover {
    transform: scale(1.3);
}

/*** vegetable End ***/


/*** Banner Section Start ***/
.banner .banner-btn:hover {
    background: var(--bs-primary);
}

/*** Banner Section End ***/


/*** Single Page Start ***/
.pagination {
    display: inline-block;
}

.pagination a {
    color: var(--bs-dark);
    padding: 10px 16px;
    text-decoration: none;
    transition: 0.5s;
    border: 1px solid var(--bs-secondary);
    margin: 0 4px;
}

.pagination a.active {
    background-color: var(--bs-primary);
    color: var(--bs-light);
    border: 1px solid var(--bs-secondary);
}

.pagination a:hover:not(.active) {
    background-color: var(--bs-primary)
}

.nav.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--bs-secondary) !important;
}

/*** Single Page End ***/


/*** Footer Start ***/
.footer .footer-item .btn-link {
    line-height: 35px;
    color: rgba(255, 255, 255, .5);
    transition: 0.5s;
}

.footer .footer-item .btn-link:hover {
    color: var(--bs-secondary) !important;
}

.footer .footer-item p.mb-4 {
    line-height: 35px;
}

/*** Footer End ***/

/*** remove arrow from input type number ***/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/*** Header shop ***/
.header-shop {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/header-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {

    .header-hero,
    .header-shop,
    .header-manage {
        margin-top: 152px !important;
    }
}

@media (max-width: 992px) {

    .header-hero,
    .header-shop,
    .header-manage {
        margin-top: 97px !important;
    }
}


/***  order page ***/
.minimum-price {
    color: red;
    font-weight: bold;
}

.captcha-error {
    color: red;
    font-weight: bold;
}

.nav-item-custom {
    padding: 10px 15px;
}

/***  generic ***/
.generic-error {
    color: red;
    font-weight: bold;
}

/*** catalog ***/
.form-control.item-number {
    background-color: white;
}

.variety-label {
    left: 0;
    line-height: 1.1;
}

/*** others ***/
.price-on-button {
    margin-left: auto
}