body{
    width: 100%;
    float: left;
    padding: 0px;
    margin: 0px;
}

.active-btn{
    background:rgba(250, 250, 250, .3);
    color: #fff !important;
}
#modal-loader,
#modal-loader-assign{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: rgba(250, 250, 250, .9);
    z-index: 1000000;
    display: none;
}

.link-active:hover{
    background-color: white;
    color: black !important;
}

.br-0{
    border-radius: 0px;
}

.animated-moving-truck{
    animation: animate_truck_moving 1000ms ease-in-out infinite;
}


@keyframes animate_truck_moving {
    from{
        transform: translateY(0px);
    }
    
    50%{
	background-image: url(images/20220121_155136.jpg);
        transform: translateY(-10px);
    }
    to{
        transform: translateY(0px);
    }
}

/**
*CSS
---AUTHOR   : WAKISA MWABULAMBO
---date     : 30th November 2023
*/

:root {
    --imageSize: 150px;
    --primaryColor: #32cd32;
    --secondaryColor: #FFC300;
    --backgroundColor: white;
}

body {
    margin: 0px;
    padding: 0px;
    width:100%;
    float:left;
}

#header-1 {
    border-bottom: 1px solid rgb(161, 247, 158);
    margin: 0px !important;
    /* padding: 0px !important; */
}

#header-2 a {
    color: rgb(71, 71, 71);
}

#header-2 {
    margin: 0px !important;
    /* padding: 0px !important; */
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: var(--primaryColor);
}

#header-3 {
    margin: 0px !important;
    /* padding: 0px !important; */
    /* background: linear-gradient(to right, #21a2fd, #7967fe 52%, #2b9bfd); */
    background-color: var(--secondaryColor);
    padding-top:0px;
    padding-bottom: 0px;
}

#header-4 {
    margin: 0px !important;
    /* padding: 0px !important; */
}

.header-search-form {
    background-color: white;
    padding: 10px;
    border-radius: 20px;
}

.header-search-form #search-field {
    border: 0px;
    width: 100%;
    padding: 2px;
    float: left;
}

.header-search-form #search-field:active {
    border: 0px;
}

#logo-image {
    width: 100%;
    float: left;
    /* background-color: greenyellow; */
    height: 60px;
    object-fit: contain;
}

#menu-links {
    padding-top: 16px;
    float: left;
    color: white !important;
}

.br-0 {
    border-radius: 0px !important;
}

.br-1 {
    border-right: 1px solid #ccc;
    padding-right: 20px;
}

.br-2 {
    border-radius: 10px;
}

.br-3 {
    border-radius: 40px;
}

* {
    font-size: small;
}

.body-title {
    color: #ccc;
    padding: 10px;
    float: left;
    width: 100%;
}

.shadow-hover:hover {
    cursor: pointer;
    transition: 300ms;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    border-color: rgb(248, 208, 193);
}

#progress {
    width: 100%;
    position: fixed;
    float: left;
    height: 100%;
    z-index: 100000;
    background-color: rgba(250, 250, 250, 0.85);
}

#image-holder {
    height: 100%;
    width: 100%;
    background-image: url("images/concept-image.png");
    background-size: var(--imageSize);
    background-position: center;
    background-repeat: no-repeat;
}

#progress-bar {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    text-align: center;
    width: 100%;
    margin-top: calc(var(--imageSize)/2);
    font-size: xx-large;
    color: orangered;
    /*according to the size of the image,*/
}

#menu {
    width: 0px;
    float: left;
    background-color: white;
    overflow: hidden;
    transition: 300ms ease-in-out;
    border-bottom-right-radius: 20px;
    border: 1px solid #ccc;
    /* border-right: 1px solid #ccc; */
    /* height: 100%; */
    padding-bottom: 200px;
}

#menu button {
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
}

.product-image {
    width: 100%;
    object-fit: cover;
    height: 150px;
    border-radius: 20px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    cursor: pointer;
}

.image-scale {
    width: 100%;
    z-index: 100000;
    height: 100%;
    position: fixed;
    margin: 0px;
    background-color: rgba(250, 250, 250, 0.55);
    display: none;
    float: left;
    opacity: 0;
}

#product-image-scale {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    height: 500px;
    object-fit: scale-down;
    width: 80%;
    margin-left: 10%;
}

.image-scale button {
    margin-top: 20px;
}

#order-items {
    float: left;
    width: 100%;
    overflow-y: scroll;
}

.mobile{
    display: none;
}

.desktop{
    display: flex;
}

.tablet{
    display:none;
}

.tablet-desktop{
    display:block;
}

@media (max-width:480px){
    .mobile{display: flex;}
    .desktop{display: none;}
    .tablet{display: none;}
    .tablet-desktop{display: none;}
}

@media(max-width:701px) and (min-width:481px){
    .mobile{display: none;}
    .desktop{display:none;}
    .tablet{display: block;}
}

.floating-action-button{
    position: fixed;
    bottom:0;
    right:0;
    padding:10px;
    width: 60px;
    height: 60px;
    background: var(--primaryColor);
    z-index: 1000000000000000000000;
    margin: 10px;
    border-radius: 50%;
}

.floating-action-button-normal{
    background: #32CD32;
}

.mobile-menu{
    width:0%;
    height: 100%;
    float: left;
    position: fixed;
    z-index: 1000000000000;
    overflow: hidden;
    overflow-y: scroll;
    transition: 300ms ease-in-out;
    background: rgba(250, 250, 250, 0.9);
    /* background: linear-gradient(167deg, rgba(0,22,36,1) 0%, rgba(16,136,51,1) 0%, rgba(19,121,9,1) 35%, rgba(0,212,255,1) 100%); */
    top: 0;
}

#mobile-scroll-panel{
    width: 80%;
    overflow-y: scroll;
    background-color: rgba(0, 0, 0, 0.8);
}

.mobile-menu input{
    padding:5px;
    border:1px solid white;
    background-color: transparent;
}



.border-bottom-1{
    border-bottom: 1px solid #ccc;
}

.light-bg{
    background:rgba(0,0,0,0.1);
}

.height-400{
    height:400px;
}

.oject-fit{
    object-fit:cover;
}

.center-hr{
    width:20%;
    float:left;
    margin-left:40%;
    margin-right:40%;
    height:1px;
    background:red;
}

.transition-300{
    transition:300ms ease-in-out

}

select {
    font-family: 'Fontwesome', 'Ariel'
	font-size: 12px;
  }

  #notes,b{
    font-family: 'poppins', sans-serif;
    
  }

  #details-text{
    font-size: 1.5rem;
  }

  

#product-origin-flag{
    position:absolute;
    top: 0;
    right:0;
    margin: 0px;
    padding:0px;
    width:40px !important;
    height:40px !important;
    margin: 10px;
    border-radius: 50%;
    border:2px solid rgb(217, 166, 12);
    /* height:100%; */
    /* object-fit: scale-down; */
}

#top-bar-header{
    width:150px !important;
}

.active-button{
    border-bottom: 2px solid white;
}

#navigation-menu a{
    color:white;
    transition: 300ms;
}

#navigation-menu a:hover{
    background:rgba(0, 0, 0, 0.15);
    color:yellow;
}

.fab{
    width:50px;
    height:50px;
    position:fixed;
    background:#32CD32;
    display:block;
    bottom: 0;
    right:0;
    margin:10px;
    text-align:center;
    z-index:100000;
    border-radius: 50px;
    font-weight: bolder;
    font-size: large;    
    transition: 300ms ease-in-out;
}

.fab:hover{
    background:#FFC300 !important;
    transform: scale(1.2) !important;
    color:black !important;
}

#sliding-menu{
    z-index: 1000000;
    /* background:rgba(250, 250, 250, 0.9); */
    /* margin-right: auto; */
    margin-left: auto;
    /* box-shadow: 0 15px 25px rgba(129, 124, 124, 0.2); */
    height: 100%;
    backdrop-filter: blur(7px);
    background-color: rgba(255, 255, 255, 0.5);
    padding: 10px;
    /* display: none; */
    transform: scale(0);
    transition:300ms ease-out-out;
    height: 100%;
    z-index: 100000;
    top: 0;
}   

#search-input{
    padding:030px;
    border:0px;
    border: 2px solid #32CD32 !important;
    background-color:transparent;
}

.blur-1{
    box-shadow: 0 15px 25px rgba(129, 124, 124, 0.2);
    backdrop-filter: blur(7px);
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-menu-closer{
    font-weight: bolder;
    font-size: 30px;
    position:absolute;
    right:0;
    z-index: 10000;
}

.list-group-item{
    /* background-color:rgba(0, 0, 0, 0.1) !important; */
    border-right:0px;
    border-left:0px;
    margin-bottom: 2px;
}

#profile-photo{
    width:20px;
    height:2    0px;
    border-radius: 20px;
    background-color:#ccc;
}

.cookies-agreement-form{
    position:fixed;
    bottom: 0;
    width:100%;
    z-index: 999999999999999999999;
    border-top:2px solid #FFC300;
}

.product-card-1-image{
    height:200px;
    object-fit:cover;
    border-radius:5px 5px 0px 0px;
    transition: 300ms ease-in;
}

.product-card-1-image:hover{
    object-fit: contain;
    /* transform: scale(1.4); */
}

.property-card-scale-hover{
    transition: 300ms ease-in;
}

.property-card-scale-hover:hover{
    /* transform: scale(1.3); */
}