/*
  contents effects scrollup and down start
*/




.item-box-cats img
{
height: 70px;
max-height: 70px;
width: 100%;
object-fit: fill;
}



.item-box img
{
height: 240px;
max-height: 240px;
}

#advancedsearchsection-x
{

position: absolute;
  top: 5%;
  left: 0;
  width: 100%;
  display: inline-block;
  z-index: 4000;
  background: linear-gradient(180deg,green,white,black);
  margin: 0;
  padding: 0;

}



.contact-form-style
{

margin: 15px 0 10px 0;
    padding: 5px 0 10px 0;
    border: 1px solid silver;
    display: inline-block;
    border-radius: 10px;
    background: linear-gradient(145deg, silver, white, silver);
width:100%;

}

.wrappingbox
{

margin: 15px 0 10px 0;
    padding: 5px 0 10px 0;
    border: 1px solid silver;
    display: inline-block;
    border-radius: 10px;
    background: linear-gradient(145deg, white, white, white);
width:100%;

}

.moreoptions
{

height: 50px;
  float: left;
  width: 100%;
  background: orange;
  display: inline-block;
  position: relative;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
  color: mediumblue;
  font-weight: bold;

}
.searchboxicon {
    float: none;
    height: 25px;
    
    outline:none;
    -webkit-border-radius:30px;
    border-radius:20px;
    background-position:16px center;
    border:none;
    background:green;
    text-align: center;
  }
.mainimageclass
{
width:100%;
height:200px;
object-fit: cover;
}
.mainimageclass img
{
width:100%;
height:100%;
object-fit: cover;
}
.mainimagetitleheaderclass
{
text-align:center;
margin:20px 0 0 0 ;
position:relative;

}
.loginposition img
{
scale:0.7;

}
.animate-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }

.animate-on-scroll.visible { opacity: 1; transform: translateY(0);

 } 

/* end animation on scroll there is a java code in master page */


.text {
  
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transform: translateY(50px);
  animation: fadeInUp 2s forwards;
  animation-delay: 0.5s;
  text-align: center;
}

/* Keyframes for fade-in and move-up animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Using sticky to simulate scroll behavior */
.sticky {
  position: sticky;
  top: 50%;
}

/*
  contents effects scrollup and down ends
*/


#ar .textarea
{

text-align:right;

}

.continue
{
   float: none;
    outline: none;
    margin: 5px 15px;
    padding :10px;
    -webkit-border-radius: 30px;
    border-radius: 20px;
    background-position: 16px center;
    
    text-align: center;
    cursor: pointer;
    background:orange;
}


.honk-LogoEn {
  font-family: "Honk", system-ui;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "MORF" 15,
    "SHLN" 50;
}

.reem-kufi-ink-regular {
  font-family: "Reem Kufi Ink", sans-serif;
  font-weight: 600;
  font-style: normal;
}

#ar .contact-form
{
direction :rtl;
text-align :right;
}

.scrolling-text-page {
    
    overflow: hidden;
    box-sizing: border-box;
  }

  .scrolling-text-page-content {
    
    animation: scroll-page-content 5s linear 1;
  }

  @keyframes scroll-page-content {
      0% {
                transform: translateY(0);
                opacity: 0;
            }
            50% {
                transform: translateY(-50px);
                opacity: 1;
            }
            100% {
                transform: translateY(0);
                opacity: 0;
            }
  }



.gradient-text {
  font-size: 16px;
  font-weight: bold;
/*
  background: linear-gradient(45deg, #000, #000, #000, #000, #000);
*/
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: orange;
color:orange;
  animation: gradient-shift 8s ease-out infinite;
}

/* Keyframes for Gradient Animation */
@keyframes gradient-shift {
   0% {
        transform: translateY(420%);

    }

  25%
    {
     transform: translateY(200%);
     
    }
   40%
    {
     transform: translateY(200%);
     transform: rotateZ(25deg);

    }
  70%
    {
     transform: translateY(100%);
     transform: rotateZ(0deg);

    }
    100% {
        transform: translateY(0);
        display:none;
    }
}



.split-text-container {
    display: flex;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    overflow: hidden;
}

.text-part {
    display: inline-block;
    position: relative;
    transform: translateX(0);
    animation:slide-in-left 10s infinite;
    animation-timing-function: ease-out;
    animation-fill-mode: both;
}

.text-part.left {
    transform: translateX(-200%);
    animation-name: slide-in-left;
}

.text-part.right {
    transform: translateX(150%);
    animation-name: slide-in-right;


}

@keyframes slide-in-left {
    0% {
        transform: translateX(-200%);
scale: 0.9;
    }
    100% {
        transform: translateX(0);
    scale: 1.1;
    }
}

@keyframes slide-in-right {
    0% {
        transform: translateX(150%);
animation-timing-function:cubic-bezier(0.25,0.1,0.25,1);
 scale: 0.8;
    }
    100% {
        transform: translateX(0);
 scale: 1.2;
    }
}

.imagezooming {
    
    animation-name: zoom-in-zoom-out;
transition: transform 10.002s;

}


@keyframes zoom-in-zoom-out {
    0% {
      transform: translateZ(0);
  -ms-transform: scale(0.9); /* IE 9 */
  -webkit-transform: scale(0.9); /* Safari 3-8 */
  transform: scale(0.9);
    }
    100% {
transform: translateX(120%);
     -ms-transform: scale(1.5); /* IE 9 */
  -webkit-transform: scale(1.5); /* Safari 3-8 */
  transform: scale(1.5);
    }
}



.summaryright
{

width:50%;
text-align:right ;
display: inline-grid;
}
.summaryleft
{
float:left;
width:50%;
text-align:left ;
}
.priceimage
{
width:300px;
height:300px;
}
.priceimage img
{
width:100%;
height:100%;
}
.itemcartimage
{
  width: 100px;
  height: 100px;
  margin:5px 0;
  padding:5px 0;
 
  position: relative;
}
.itemcartimage img
{
width:100%;
height:100%;
border-radius: 1px;
object-fit: fill;
margin: 0 0 15px 0;
}
.deptbg
{
background: slategray;

}

.shortdesc
{
font-weight: 700;
text-align: justify;
}
.maindesc
{
padding:20px;

}
.imagediv img
{
border-radius: 20px;
}
.headertitledepatcats
{
font-size: 12px;
font-weight: 600;
margin: 10px 20px;
padding: 10px 20px 10px 20px;
text-align: left;
}
a.headertitledepatcats,a.headertitledepat
{
color:gray;
}
.ml2 {
  font-weight: 900;
  font-size: 3.5em;
}

.ml2 .letter {
  display: inline-block;
  line-height: 1em;
}
.imagediv
{
object-fit: cover;
}
.catswrapper
{
width :98px;
height:60px;
position:relative ;
display:inline-block ;
margin:5px 3px;
z-index:3000;
}
.deptswrapper
{
display:inline-block ;
width :100px;
height:60px;
position:relative ;
margin:5px;
z-index:3000;
}
.catswrapper img
{
width :95px;
height:60px;
position:relative ;
z-index:100;
}
.deptswrapper img
{
display:inline-block ;
width :100px;
height:60px;
position:relative ;
z-index:100;
}
.imageholder
{
width:100%;
z-index:99;
height:100%;
position:relative ;
}
.imageholder img
{
width:100%;
z-index:99;
height:100%;
position:relative ;
}
.itemsholder
{
width:100%;

height:100%;
position:relative ;
}
.deptbt
{
width:100%;
z-index:999;
height:100%;
position:relative ;
background :transparent;
color :White ;
margin-top :-60px;
float:left ;
border :none;
opacity: 0.6;
text-align :center ;
vertical-align :middle ;

}
.catsbt
{
width:100%;
z-index:999;
height:100%;
position:relative ;
background :transparent;
color :White ;
margin-top :-60px;
float:left ;
border :none;
opacity: 0.6;
text-align :center ;
vertical-align :middle ;
}
.red
{
background :red!imprtant;
}
.danger
{
background :purpale!imprtant;

}
.primary
{
background :green!imprtant;
}
.statusmessage
{
width: 25vw;
height: 30vh;
position: absolute;
background: silver;
left: 35%;
margin: 10px;
padding: 15px;
background: maroon;
z-index:2000;
}
.status
{

width:100%;
height:100%;

}
.color
{
}
.main tr
{
font-size :5px;
}
.main
{
font-size :5px;
}
.fullarea
{
display:block !important;
font-size :12px;
font-weight :600;
}
.textalignleft
{
text-align :left ;
}
.textalignright
{
text-align :right  ;
}
.table-responsive
{
position: relative;
overflow-x: auto;
width: 100%;

}
.logoheaderstyleleft
{
position:relative;color:white;float:left;margin: 30px 0 0 0;font-weight: 700;text-transform: capitalize;color:blue;
}
.logoheaderstyleright
{
position:relative;color:white;float:left;margin: 0px 0 0 5px;font-weight: 700;text-transform: capitalize;color:red;
}
h2
{
margin:0 0 0 25px;
font-size:18px;
}
.all-holder
{
height:30px;
position: absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
}
.all-holder .paths
{
width:30px;
height:30px;
border:5px solid #bbb;
border-radius:50%;
position:absolute;
}
.all-holder .right-paths
{
transform:translateX(100%);
left:-5px;
}
.semi-circle-holder > div {
position:absolute;
clip:rect(0, 40px,20px,0);
}
.semi-circle-holder > div > div {
width:30px;
height:30px;
border:5px;
border-style:solid;
border-color:blue blue red red;
border-radius:50%;
transform:rotate(135deg);
animation:animateme 3s infinite linear;

}
@keyframes animateme
{
   50%, 100%{
transform: rotate(calc(360deg + 135deg));
	}
}

.semi-circle-holder .bottomRight-semiCircle
{
transform:translateX(100%) scale(1, -1);
left:-5px;
}
.semi-circle-holder .bottomRight-semiCircle > div
{
animation-delay:0.75s;
}

.semi-circle-holder .topRight-semiCircle
{
transform:translateX(100%) scale(-1, 1);
left:-5px;
}
.semi-circle-holder .topRight-semiCircle > div
{
animation-delay:1.5s;
}
.semi-circle-holder .bottomLeft-semiCircle
{
transform:scale(-1);

}
.semi-circle-holder .bottomLeft-semiCircle > div{
animation-delay:2.25s;

}
.semi-circle-holder
{
/*
filter:drop-shadow(0px 0px 10px) blur(3px);
*/
}



.menuicon
{
width:40px;
position:relative   ;
background: linear-gradient(to right, white , white,white);
box-shadow: 0 0px 4px rgba(0,0,0,0.15);
font-size: 12px;
font-weight:700;
transition: 1.25s;
margin-right: 30px;
margin-left: 10px;
border-radius: 10%;
text-align :center ;
padding :5px 10px;
border-radius: 0px 0px 10px 10px;
transform:rotate(180deg) ;
transition-delay:2s;
}
a.activemenulist
{
transform:rotate(30deg) ;
transition-delay:2s;
animation:animatemenudept 5s infinite linear;
}
@keyframes animatemenudept
{
0%
{
color:#484848;
text-shadow:none;
}

20%
{
color:red;
text-shadow:none;
}

100%
{
color:blue;
text-shadow:0 0 7px #fff900,# 0 0 20px #ff6c00;
}

}

#menuslist
{
display:none ;
width :100%;
background :white;
position:relative ;
cursor :pointer ;
width: 100%;
float: left;
padding: 10px;
border-radius: 10px;
text-transform:capitalize ;
}

.pageul ul li a.pagelink,a.pagelink
{
padding:5px;
margin: 5px;
color: green;
}

.deptsul ul li a.deptslink,a.deptslink
{
padding: 0 0 5px 10px;
margin: 0 0 5px 10px;
color: blue;
display: inline-block;
}
.catsul ul li a.catslink,a.catslink
{
padding: 0 0 5px 20px;
margin: 0 0 5px 20px;
color: black ;
display: inline-block;
}
.labelpricevalue
{
color: #d13530;
font-size: 18px;
line-height: 31px;
font-weight: 700;
}
.labelprice,.pricediscount
{
font-size: 18px;
color: brown;
font-weight: 700;
margin:5px 0;
padding:5px 0;
}
#cartitems
{

background-image:url(images/shopping-cart.png);

 width: 30px;
  float: right;
  border-radius: 50%;
  height: 30px;
  color: red;
  font-size: 12px;
  margin: 0;
  border: 0.5px solid white;
  

}
#cartitems a
{
color: transparent;
text-transform :none;
height:25px;
line-height:1;
margin: 5px 0 0 7px;
display: contents;
z-index: 3000;
position: absolute;
width: 25px;

}
#cartitems img
{

 height: 30px; /* You must set a specified height */
  width :30px;
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  padding :10px;
}
#ar .header-action-num
{
font-size: 16px;
  font-weight: 700;
  margin: 4px 5px -3px -9px;
  display: inline-block;
position: relative;
  z-index: 100;

}
#en .header-action-num
{
font-size: 16px;
  font-weight: 700;
  margin: -9px 5px -3px 9px;
  display: inline-block;
position: relative;
  z-index: 100;

}
.swiperclass
{
width: 150px;
height: 150px;
position: relative;

}
.swiperclass img
{
width: 120px;
height: 110px;
z-index: 99;
position: relative;
margin: 0px;
padding: 5px;
border-radius: 10px;
background :lightgray;

}

.slider-height {
  height: 748px;
}
.loginlogout
{

float: left;
width: 30px;
height: 30px;
}
.btlogouticon
{
width:40px;
background: transparent;
color:black;
border-radius: 50%;
border :none;
cursor: pointer;
font-size :9px;
}
.btlogoutimg
{
border-radius: 50%!important;

}
.hero-slide-content
{
padding:20px 0;
}
#scrollUp {
  width: 50px;
  height: 50px;
  background: #266bf9;
  color: #fff;
  right: 20px;
  bottom: 60px;
  text-align: center;
  overflow: hidden;
  border-radius: 50px;
  z-index: 9811 !important;
  font-size: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#scrollUp:hover {
  background: #266bf9;
  color: #fff;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.slider-animated-1 > * {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeOutUp;
          animation-name: fadeOutUp;
}

.swiper-slide-active .slider-animated-1 > * {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
           -webkit-animation-duration: 1s;
          animation-duration: 1s;
}
.swiper-slide-active .slider-animated-1 > * {
  -webkit-animation-name: lightSpeedInLeft;
          animation-name: lightSpeedInLeft;
}
.swiper-slide-active .hero-slide-image img {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.hero-slide-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.hero-slide-image img {
  max-width: 100%;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeOutUp;
          animation-name: fadeOutUp;
}
.hero-slide-content.hero-slide-content-2 .price {
  font-weight: 500;
  display: block;
}
.hero-slide-content.hero-slide-content-2 .price .mini-title {
  font-size: 18px;
  color: #000000;
  text-transform: uppercase;
  display: block;
}
.hero-slide-content.hero-slide-content-2 .price .amount {
  font-size: 28px;
  color: #266bf9;
  display: block;
  margin: 15px 0 60px;
}
.swiper-wrapper.
{
-webkit-animation-delay: 10s;
          animation-delay: 10s;
}
.section-title {
  line-height: 1;
  margin-bottom: 50px;
}
.section-title .title {
  font-size: 48px;
 
  font-weight: 600;
  display: inline-block;
  color: #000000;
  margin: 0 0 28px;
  line-height: 34px;
}
.hero-slide-content.hero-slide-content-2 .price .mini-title {
    font-size: 16px;
  
}
.hero-slide-content.hero-slide-content-2 .price .amount {
  font-size: 48px;
  color: #266bf9;
  display: block;
  margin: 15px 0 60px;
}
.breadcrumb-item
{
display:inline ;
padding :5px;
margin :5px;
}
.smallimage
{
width:300px;
padding:10px;
}
.label2
{
font-style: normal;

margin: 5px;
padding: 5px;
display: inline-block


}

.addnew
{
background :green!important;
color:White !important;
}
.update
{
background :rgba(45deg,#000,22b,2eb)!important;
}
.delete
{
background :red!important;
color:White !important;

}
.search
{
background :brown!important;
color:White !important;

}
.itemwrapper,.wraperbuttons
{
width:145px;

position:relative ;
display:inline-block ;
margin:5px;
z-index:3000;
border: 1px solid silver;

}
.itemsholder
{
display:flex;
position:relative ;
}
.buttonswrapper
{
position:relative ;
float:left ;
margin:5px;
display:inline-block ;
z-index:3000;
}
.prices
{
display: inline-block;
position: relative;
padding: 10px 0;

}
.saveprice,.itemtype
{
color:green;
text-decoration :blink;
font-size:12px;
}
.groupdesc
{
margin: 0px 0 0 0px;
background: whitesmoke;
color: #0f0e0e;

width: 100%;
position: relative;
display:inline-block;
padding: 10px;
height: 220px;

}
.itemprice
{
height: 50px;
float: left;
width: 100%;
background:orange;
display: inline-block;
position: relative;
padding: 10px 0;
text-align: center;
text-transform :uppercase ;
color: mediumblue;
font-weight: bold;
}
.groupprices
{
height: 50px;
float: left;
width: 100%;
background: transparent;
display: inline-block;
position: relative;
padding: 10px 0;
text-align: center;
text-transform :uppercase ;
}

.btnstandard {
    float: none;
    width: 100px;
    outline: none;
    margin: 5px 15px;
    padding :10px;
    -webkit-border-radius: 30px;
    border-radius: 20px;
    background-position: 16px center;
    border: none;
    background: #8cc751;
    text-align: center;
    cursor: pointer;
}

.langlink a
{
color:black;
}

ul .langlink

{
border-radius:50%;
width:100%;
   background:orange;
}

.contact-area
{
display: flex;
    width: 100%;

}
.footer-area {
    color: #3a3a3a;
    background: #f2f8fd;
    width:100%;
    float:left ;
}
.footer-bottom {
    background: #e2f2ff none repeat scroll 0 0;
    padding: 25px 0 20px 0;
    width: 100%;
float: left;
}
.contact-form .title
{
font-size: 48px;
color: #000;
font-weight: 500;
margin: 0;
line-height: 1;
text-align :center ;
display:block ;
margin :20px 0;
}
.contact-wrapper
 {
    background-color: #f5f5f5;
    padding: 10px 10px 10px 10px;
}
.textarea
{
border :1px solid silver;
float: none;
height: 40px;
font-size: 12px;
padding: 10px 15px;
line-height: 16px;
font-weight: 400;
/*
background: linear-gradient(45deg,#fff, #fff);
*/
width: 100%;
-webkit-border-radius: 150px 15px;
border-radius: 15px 15px;

display: inline-block;
margin: 5px;
}
.smalltextarea
{
width:70px !important;
border :1px solid silver;
margin :5px;
background :white ;
color:black;
display: inline-block;
font-size: 18px;
}
.securitycode
{
margin :5px;
border :1px solid silver;
width: 60px;
  display: inline-block;
  padding: 3px;
  border-radius: 50px;
background :white ;
color:black;

}
.textareamulti
{
height:200px;
border :1px solid silver;
}
.multiline
{
height:120px;
border :1px solid silver;
}
.menu
{

float:left ;
top:10px;
margin: 0px 0px 0 0px;

}

.menu li
{
position:relative;
list-style:none;
transform-origin:100px;
transition:0.5s;
transition-delay:1s;
}
.menu li a
{
justify-content:center;

transform:rotate(360deg);

color:white;
text-transform: capitalize;
float: left;
text-align: left;
padding: 5px;
margin: 5px;
font-size :14px;
font-weight:700;
transition:0.5s;
transition-delay:1s;
}
#ar .menu li a
{
justify-content:center;

transform:rotate(360deg);

color:white;
float: right;
text-align: right;
padding: 5px;
margin: 5px;
font-size :14px;
font-weight:700;
transition:0.5s;
transition-delay:1s;
}

.toggle
{
position:relative;
/*
background :linear-gradient(to right, #00ff34 , #0010ff,#ce5a3f);
box-shadow:0 0px 4px rgba(0,0,0,0.15);
*/
z-index:10000;
border-radius:0;
cursor:pointer;

font-size:2em;
transition: 1.25s;
width:auto;
height:auto;
float:left ;
text-align :center ;
vertical-align :middle ;
margin-right:30px;
margin-left:10%;
border :0px solid #007bff;
display: initial;
}
.toggle ul
{
display :none ;
}
.menu ul
{
width:100%;
float:left ;
position:relative ;
background:linear-gradient(30deg, black, black,black,black,black);
}
.menu.active ul
{
display:inline-block ;
}
.menu.active li
{
width:100%;
float:left ;
position:relative ;
}
.menu.active .toggle
{
display:inline-block;
width:70vw;
/*
height:100vh;

transform:rotate(360deg) ;
*/

transition-delay:0.2s;
background :white;
}
.menu.active .iconbar
{
transform:rotate(180deg) ;
}
.iconbar
{
display:inline-block;
width:100%;
transform:rotate(90deg) ;
transition-delay:.5s;
animation:animatex 8s infinite linear;
}

@keyframes animatex
{
0%
{
color:green;
text-shadow:none;
}

35%
{
color:white;
text-shadow:none;
}

75%
{
color:black;
text-shadow:0 0 7px #fff900,# 0 0 20px #ff6c00;
}
100%
{
color:green;
text-shadow:none;
}

}

h2.Mobile,h2.food
{
margin: 30px 0 -50px 30px;
display: inline-block;
position: relative;
z-index: 999;
}
.warningtime
{
background :yellow!important;
color:Red!important;
}
.fixedheight
{
/**
height:100vh;
overflow:hidden ;
position:relative ;

**/

}
.fixedlistimage
{
    width: 100%;
    height: 160px;
    margin: 5px 0px;
    padding: 10px;
    float: left;
   object-fit: contain;
}

.btn
{
padding: 2px 5px;
margin : 5px;
border-style:solid;
cursor: pointer;
-webkit-appearance: button;
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
user-select: none;
border: 1px solid silver;
font-size: 1rem;
line-height: 1.5;
border-radius: .25rem;

}
.itemselectiondiv
{
float:left ;
position:relative ;
margin :0;
padding :0;
width:100%;

}
.innerdivtop
{
float:left ;
position:relative ;
margin :0;
padding :0;

}
div.scrollmenu {
  background-color: transparent;
  overflow: auto;
  white-space: nowrap;
scrollbar-width: thin;

}

div.scrollmenu li {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px;
  text-decoration: none;
}

div.scrollmenu a:hover {
  background-color: #777;
}

.inputtext::after
{
clear:both;
}
* img
{
border-radius: 0px;

}
* div
{


}

.itemcounts
{
display:none;
}
.pageheadertitle,.deptnametitle
{

margin: 0 20px;
padding: 0 20px;
display: inline-block;
}
.headertitledepat
{
font-size: 12px;
font-weight: 600;
margin: 0 20px;
padding: 10px 20px;
text-align: left;
}
.imagesholderinfo img
{
width:100px;
height:100px;

}
.datainputstable
{
width:100%;
float:left ;
display:inline-block ;

}
.datainputstable tr
{
width:100%;
float:left ;


}
.datainputstable tr td
{
width:100%;
float:left ;

}
.stepnext
{
position:absolute ;
right:0;
margin :0 10px;
padding : 0 10px;
bottom:0;
float:left;
clear:both;
}
.stepback
{
position:absolute ;
left:0;
margin :0 10px;
padding : 0 10px;
bottom:0;
float:left;
clear:both;
}
.headerdivwrapper
{
float:left ;

}
#en .aralang
{
display:none;
}

#ar .englang
{
display:none;
}
.bottomlink
{
float:left;
}
.fixedsize
{
height:400px;
overflow-y: scroll;
overflow-x: hidden;
}
ul.langli li
{
float:left;
padding:0 10px;
}
.logoimage img
{
width:40px;
height:40px;
}
.img-fuid
{
width:400px;
height:400px;
margin:10px;
padding:10px;
}
.img-fuid img
{
width:100%;
height:100%;

}
.imagewrapper 
{
width: 100%;
height: 100%;
border-radius: 0!important;
}
.social_nav ul
{
list-style: none;
padding: 0;
margin: 0;
float:left;
}
.social_nav li
{
width: 90px;
text-align: center;
margin:5px;
float: left;
border:1px solid white;
}
.social_nav li a
{
padding: 15px 16px;

}
.social_nav a
{
display: block;
color: white;
}

.fixedsizebox
{
position:relative ;
position:relative ;
height: 145px;
margin: 5px 10px;
padding: 5px 10px;
float: left;
width:100%;
}
.fixedsizebox img
{
width: 100%;
height: 100%;
}
.imagewrapper img
{
width: 100%;
height: 100%;
border-radius: 0px;
}
.pageheader
{
text-transform: uppercase;
}
.headertitlemainpage
{

float:left;
margin: 0 0 0 20px;
text-transform: uppercase;

}
.mainpagelinks
{

float: left;
text-transform: uppercase;

padding: 0;
margin: -10px 0;
}
.mainpagelinks ul
{
list-style: none;
display: flex;
}
.mainpagelinks li
{
padding:5px;
margin:5px;
display:flex;
}
a.pageslinks
{
margin: 0 0 15px 0;
padding: 0 5px;
color: #000000;
font-weight: 400;
font-size: 14px;
background: white;
opacity: 0.6;
}
.halfpage
{
width:49%;
}
.halfpage img
{
width:100%;
height:100%;
}
.halfpage .left
{
float:left;
}
.halfpage .right
{
float:right;
}

#pagename2
{
width:49%;
padding:10px;
margin:10px;
background:green;
}
#hdiv
{
position: relative;
z-index: 999;
background: transparent;
}
.bg-dark
{
background:transparent !important;
}

.nav-bar, .nav-bar .navbar {
    background: black !important;
opacity:1;
}

.catslink
{
padding: 5px 5px;
text-transform: capitalize;
margin: 0 5px;
}
.ent a,.food a,.sports a,.order a
{
color: black;

}

.sports
{
color: black;
padding: 5px 20px;
border-radius: 15px;
text-align: center;
}
.order
{
color: black;
padding: 5px 20px;
border-radius: 15px;
text-align: center;
}
.ent
{
color: black;
padding: 5px 20px;
border-radius: 15px;
text-align: center;
}
.grid-container {
  
}
.grid-item {
  
  font-size: 30px;
  text-align: center;
  float:left;
}
.grid-item img
{
overflow:hidden ;
width:100%;
max-height: 200px;
min-height: 200px;

}
.innerboxfull
{

border :0px solid green;
width:90%;


}

.itemlabelsize
{
float:left;
min-width:35%;
max-width :65%;
margin:5px 10px;
color:green;
}
.salepricecross
{
color:red ;
text-decoration:line-through;
}
.itemmainimage
{
margin:5px;

}
.dropdown
{
margin :5px;
padding :5px;
float:left;
}
.linkurl
{
margin :5px;
padding :5px;
float:left ;

}
.itemchklist
{
margin :5px;
padding :5px;
float:left ;

}
.itemtextsize
{
float:left;
width:100%;
margin:5px 10px;
border-style:none ;
min-width :60px;
max-width :180px;
background :silver;
outline-style :none ;
}
.checkbox
{
padding:5px;
margin:5px;

}
#ar .leftside
{
margin:5px;
float:right;
display:inline-block ;
}

.leftside
{
margin:5px;
float:left;
display:inline-block ;
}
.hhh
{
border-radius:10px;
margin:10px;

}
#timerdiv
{
width:100px;
padding:10px;
margin:10px;
border-radius:10px;
background :black;
opacity:0.7;
float:left;
position:absolute ;
color:Gray;
z-index:999;
}
.delivery
{
color:Green ;
}
.email
{
color:Blue !important;
}
.fees
{
color:yellow !important;

}
.shippingtime
{
color:Aqua !important;
}
.address
{
color:Fuchsia !important;
}
.creator
{
color:white !important;
}
.shippeddate
{
color :Lime !important;
}
.amountpaid
{
color :yellow !important;

}
.amountleft
{
color :red !important;

}
.table td
{
padding :5px;
font-size :100%;
}

ul.usercontrol_nav
{
padding: 0;
margin: 0;
list-style: none;
clear:both;
display:block ;
background-color: transparent;
  overflow: auto;
  white-space: nowrap;
  scrollbar-width: thin;
}
.usercontrol_nav li 
{
list-style: none;
float: left;
padding:5px;
overflow: hidden;
border: 1px solid orange;
margin:2px;
text-align: center;
}
.usercontrol_nav li a:hover 
{
color:White;
}
.usercontrol_nav li a:active
{
color:green;
}
li
{
list-style: none;
}
.form-check-input img
{
width:60px;
height:60px;
}
.itemtextbox
{
width:45px;
margin:5px;
float:left ;
}

.itemnotebox
{
width: 90%;
margin: 2px;
float: left;
padding:2px 10px;
color:black;
background-color:transparent;
border: 0.5px solid gray;
border-radius: 5px;

}
.label img .ckimage 
{
width: 50px;
height: 50px;
margin: 10px;
padding: 5px;
}
.itemimage 
{
width: 150px;
height: 110px;
margin: 10px;
padding: 5px;
border-radius: 10%;
}
.divwrapperdynamicstartwalkbusy
{
background :red;
}
.divwrapperdynamicstartwalknotbusy
{
background :green;
}
.itempriceimage
{
width: 100px;
height: 100px;
margin: 10px;
padding: 5px;
}
.datarow
{
border-bottom :1px solid silver;
}

.colzero,.hcolzero
{

width:40%;
margin :0;
padding :0;
float:none ;
font-size :100%;
position:relative ;
}
.colone,.hcolone
{
width:54%;
margin :0;
padding :0;
float:none ;
font-size :100%;
position:relative ;
vertical-align: top;
}
.coltwo,.hcoltwo
{
width:6%;
margin :0;
padding :0;
float:none ;
font-size :100%;
position:relative ;
}
.colthree,.hcolthree
{
width:8%;
margin :0;
padding :0;
float:none ;
font-size :100%;
position:relative ;
}
.colfour,.hcolfour
{
width:5%;
margin :0;
padding :0;
float:none ;
font-size :100%;
position:relative ;
}
.colfive,.hcolfive
{
width:4%;
margin :0;
padding :0;
float:none ;
font-size :100%;
position:relative ;
}
.table .coltwo ,.table .colthree,.table .colfour,.table .colfive
{
padding:10px 5px 5px 5px!important;
}
.htitle
{
color:White;
font-size :18px;
padding:5px 5px 5px 10px;
display:block ;
}
.labelarea
{
padding:5px 5px 5px 10px;
display:block ;
height:60px;

}
.itemsubtotal
{
width: 99%;
float: left;
margin: 0px;
padding: 0px;
text-align: center;
}
.btremoveitem
{
  min-width: 25px;
  width:96%;
  margin: 2px 0 2px 0;
  padding: 0px 0px;
  background: red;
  color: White;
  outline: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  position:relative;
  display: inline-block;

}
.btupdateitem
{
  width:35%;
  float: left;
  margin: 0px;
  padding: 5px;
  background: orange;
  outline: none;
  border: none;
  border-radius: 20px;
  color: beige;
  font-size: 12px;
  cursor: pointer;
  text-align: center;
}

.itemcartprice {
  width: 10%;
  float: left;
  margin: 5px;
  padding: 0 5px;
  outline: none;
  border: none;
  border-radius: 20px;
  color: brown;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  font-weight: 600;

}

#cartholder .btupdateitem,#cartholder .itemqtytextbox
{
color :Black ;
}
.headerrow
{
font-size :80%;
font-weight :bolder;
}
.itemqtytextbox
{
  width: 35%;
  float: left;
  outline: none;
  margin: 0px;
  padding: 0px;
  border-radius: 20px;
  text-align: center;
  background-position: 16px center;
min-width: 40px;
}

.testone
{
width:100%;
float:left ;
list-style :none;
margin:5px;
padding:5px;
background :wheat;
height:400px;
overflow-y: scroll;
}
.itemname
{

margin:10px 5px;
overflow:hidden ;
display:inline-block;
}
.priceclass
{
color: blue;
font-size :large ;
width :100px;
height :30px;
overflow:hidden ;
display:inline-block;
}
.moreinfo
{
float: none;
    width: 60px;
    outline: none;
    margin: 5px 5px;
    padding :10px;
    -webkit-border-radius: 30px;
    border-radius: 20px;
    background-position: 16px center;
    border: none;
    background: #eebe00 url(images/search-button-desktop.png) center no-repeat;
    text-align: center;
    cursor: pointer;
}

.addtocart
{
float: none;
    width: 60px;
    outline: none;
    margin: 5px 5px;
    padding :10px;
    -webkit-border-radius: 30px;
    border-radius: 20px;
    background-position: 16px center;
    border: none;
    background: #eebe11 ;
    text-align: center;
    cursor: pointer;

}
.image-responsive
{
width:100%;
height:100%;
border:1px solid silver;
border-radius:10px;
margin: 0px 0 0 0;
padding:0px;
box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;

}
.image-responsive img
{
object-fit:cover;

}
img.ckimage
{
width:60px;
height:60px;
margin:5px;
padding:5px;
border-radius: 10%;
}
.singletextarea
{
outline :none;
padding: 3px;
min-width :100px;
width :250px;
max-width :99%;
border-width:1px;
}

.total
{
padding:10px;
font-size :24px;
font-weight :bolder ;
background :gray;
color:White ;
width:45%;
float:left;
margin:5px;
padding :5px;
}
.right
{
float:right;
margin-right:25px;
}
.wraperbuttons
{
width: 100%;
display: inline-block;
margin: -50px 5px 10px 20px;
float:left;
}
.printme
{
width:30px;
height:30px;
float:right ;
}
.divwrapperdynamic
{
height:550px;
float:left ;
background :black;
opacity:0.9;
position:relative ;
margin-top :10px;
margin-bottom:10px;
padding-top:10px;
padding-bottom:10px;

border :1px dashed silver;
}
.divwrapperdynamicnoheight
{
height:auto;
float:left ;
background :black;
color:white ;
position:relative ;
margin-top :10px;
margin-bottom:10px;
padding-top:10px;
padding-bottom:10px;
border :1px dashed silver;
opacity:0.9;

}

.orderidfield
{
width: 100%;
margin: -25px auto 0 auto;
background: orange;
height: 30px;
color: White;
font-size: 20px;
display: inline-block;
text-align: center;
float: left;
font-weight: bold;
text-transform: uppercase;

}
.orderidfieldred
{
width: 100%;
margin: -25px auto 0 auto;
background: red;
height: 30px;
color: White;
font-size: 20px;
display: inline-block;
text-align: center;
float: left;
font-weight: bold;
text-transform: uppercase;

}
.orderlabel
{
width: 100%;
margin: 1px ;
padding :5px;
background: black;
border:1px solid silver;
color: orange;
font-size: 16px;
display: inline-block;
float: left;
text-transform: capitalize ;

}
.cust
{
background :transparent;
color :Maroon;
width:90%;
}
.headertitle
{

}


.tablename
{
width :100%;
margin:auto;
color:White ;
text-align:center ;
display:block ;
}
.innerdivtable
{
width :100%;
margin:auto;
color:White ;
text-align:center ;
display:block ;
}

.ordername
{
background :black;
color:White ;

}



.userimage
{
width:30px;
height:30px;
margin:5px;
padding:5px;
}

.agentuserimage
{
width:60px;
height:60px;
margin:5px;
padding:5px;
display:inline-block;
border-radius: 50%;
float: left;
}
.usernametitle,.usernamecompany
{
  float: left;
  display: inline-block;
  margin: 20px
}

.userimageemail,.userimagephone,.userimagewhats
{
width:50px;
height:50px;
margin:5px;
padding:5px;
}

.imagecard img
{
width:120px;
height:70px;
}
.mytitle
{
color :White;
text-align :center ;
display :inline-block ;
width :100%;

}


.maincont
{
/*
background-image: url("images/digitalbg.jpg");
  background-repeat: repeat;
 */
   background-color: #fff;
  
   margin:0;
padding:0;
   width :100%;
   float:left ;
   
   
}


.printme
{
background-image: url("images/printme.png");
  background-repeat: no-repeat;
  background-position:center;
  background-color :White ;
}
.mainscreen
{
 
 margin: 0px;
  padding: 5px;
   float: left;
    border: 0px solid silver;
}
.gridbox
{

}
.gridheader
{

}
.gridrow
{

}
.gridalt
{

}
.innerbox
{

}
.outerbox
{

}

.inputtextbox
{
padding:0 5px;
margin : 5px;
border-style:solid;
display: inline-block;
font-weight: 400;
white-space: nowrap;
vertical-align: middle;
border: 1px solid silver;
font-size: 1rem;
line-height: 1.5;
border-radius: .25rem;
min-width :100px;
width :250px;
max-width :99%;
background :white;
color:Black ;
}
.sizeone
{
width:auto;
max-width:130px;

}
.sizetow
{
width:140px;


}
.sizethree
{
width:240px;

}
.sizefour
{
width:320px;

}
.sizefive
{
width:400px;

}
.fullsize
{
width:95%;


}
.inputtextareabox
{
padding:0 5px;
margin : 5px;
border-style:solid;
display: inline-block;
font-weight: 400;
white-space: nowrap;
vertical-align: middle;
border: 1px solid silver;
font-size: 1rem;
line-height: 1.5;
border-radius: .25rem;
height:auto ;
min-width :100px;
width :250px;
max-width :99%;
background :white;
color:Black ;
border-width:1px;
}
.lablebox
{
padding:5px;
margin : 5px;
display: inline-block;
font-weight: 400;
white-space: nowrap;
vertical-align: middle;
font-size: 1rem;
line-height: 1.5;
border-radius: .25rem;
height:auto ;
background :transparent;
color:White ;
}
.btnaction
{
padding: 2px 5px;
margin : 5px;
border-style:solid;
cursor: pointer;
-webkit-appearance: button;
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
user-select: none;
border: 1px solid silver;
font-size: 1rem;
line-height: 1.5;
border-radius: .25rem;

}
.transcolor
{
background :transparent;
color:White;
text-align :center ;
text-transform :capitalize ;
}
.maincolor
{
background :orange;
color:White;
text-align :center ;
text-transform :capitalize ;
}
.secondcolor
{
background :blue;
color:White;
text-align :center ;
text-transform :capitalize ;
}
.primcolor
{
background :green;
color:White;
text-align :center ;
text-transform :capitalize ;

}
.link
{
text-decoration :none;

}
.headertitle
{
padding:5px 0px ;
margin:5px 0px;
text-align:center ;
display:inline-block;
width:100%;
opacity:0.8;
border-radius:5%;

}
.headertitlecolor
{
color:orange;
text-transform :capitalize ;
font-weight :700;
font-size : 12px;
}
.bkgroundcolor
{

}
.textcolor
{

}
.labelcolor
{

}
.lilist
{

}
.lilistheader
{

}
.imageresponsive
{

}
.dynpanel
{

margin:0;
padding:0;
background:transparent;
float:left;
width:100%;
}




@media screen and (min-device-width: 280px), (max-width: 480px) {

.item-box-cats
{
position: relative;
    border: 1px solid silver;
    background: transparent;
    margin: 5px 0px 5px 11px;
    float: left;
    box-sizing: border-box;
    width: 100px;
    height: 110px;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    overflow: hidden;
    border-radius: 5px;
}
.item-box
{
 position:relative;border:1px solid silver;background:transparent;margin:10px 10px 10px 0;float:left;box-sizing: border-box;width:99%;height:100%;border-radius: 0px;box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;overflow: hidden;
border-radius: 15px;
}



.itemdetailsimages img
{
width:100%;
height:200px;
object-fit:cover;
}


.fullsliderhome
{
width:100%;
}
.rowitems
{
position:relative;
border:0px solid silver;
background:transparent;
margin:0 0 5px 0;float:left;
box-sizing: border-box;
display: inline-block;
border-radius: 15px;
}

.rowitemoutboxheader
{
overflow:hidden;margin:5px 0 0 0px;text-transform: capitalize;color:black;font-weight:700;background:transparent;opacity:0.7;position:relative;text-align:center;z-index:20;width:100%;
float:left;height:25px;
}
.rowitemoutboximagewrapper
{
position:relative;border:0px solid silver;background:transparent;margin:0px;z-index:9;float:left;
}

.swiperclassfullimages img
{
width:100%;
height:260px;
margin:0 0px;
border-radius: 0;
object-fit: cover;
}
.all-holder
{
left:30%;
}
.menu
{

float:left ;
top:0;
margin-top :0px;
max-width :50%;
margin:0px 0px 0 0px;
z-index:9999;
}
.secondnav
{
float:left;
display:block ;
margin :55px 0 0 0;
}
#langlinkholder
{
padding: 5px;
position: absolute;
right: 4%;
top:45px;
z-index: 1000;
margin: 5px 10px 0px 0px;
height: 40px;
color: black;
background: white;
text-align: center;
border-radius: 50%;
}
.hero-slide-content
{
padding:20px 0;
position:absolute ;
z-index:233300;
margin-top :-160px;

}
.swiper-wrapper
{
height:auto;
}
.table .coltwo ,.table .colthree,.table .colfour,.table .colfive,.headerrow,.itemsubtotal
{
font-size :120%;
font-weight :600;
}
.search-element {
    height: 43.5px;
    margin :5px 0 0 0;
    padding :0;
overflow: hidden;
width:100%;
position: absolute;
    
}

.btnsearchbox {
   float: none;
height: 25px;
width: 100px;
outline: none;
margin: -9px -10px 10px -29px;
-webkit-border-radius: 30px;
border-radius: 20px;
background-position: 16px center;
border: none;
background: #eebe00;
    text-align: center;
}
.searchbtn {
    color: #000;
    z-index: 999;
    font-size: 12px;
    text-align: left;
    padding: 0 10px 0 15px;
    cursor: pointer;
}
.searchbox {
    border: 0;
float: none;
height: 24.5px;
color: #000;
font-size: 12px;

line-height: 16px;
font-weight: 400;
background: #fff;
padding: 0 5px 0 5px;
border-radius: 15px;
}

.imagetable
{
width:100%;
height:100%;
}
.imagetable img
{
width: 100%;
height: 210px;
margin: 0px;
padding: 10px;
border-radius: 10%;
}
.divwrapperdynamicstart
{
width: 100%;
height: 100%;
margin: 5px;
padding: 5px;
float:left ;
border:1px solid silver;

}

.contactform
{
width:100%;float:left;margin: 5px 20px;position: relative;z-index:99;padding:10px 0 0 0;overflow:hidden;background:#F5F5F5;
}
.fixedsizebox
{
position:relative ;
height: 110px;
width:100%;
margin: 5px 0px;
padding: 0px;
float: left;
}
.fourimages 
{
margin: 0px 0px 1% 3%;
padding: 0 0px 0px 0px;
display: inline-table;
width: 22%;
height: 100%;

}
.fourimages img
{
width: 100%;
height: 80px;
object-fit: cover;
border-radius: 50%;
}

.threecolumns
{
width: 99%;
float:left;
}
.threecolumns img
{
width:100%;
height:100%;
}


.threeimagesdisplay
{

height: 120px;
margin:5px 10px;
padding:10px;
float: left;
}
.threeimagesdisplay img
{
width: 100%;
height: 100%;

}
.halfpage
{
width: 99%;
float: left;
overflow:hidden;
}
.pageconts
{

Padding:10px;
margin:10px;

}


.swiperclasstwoimages img
{
width: 100%;
height:100%;
margin:0 5px;
}

.textonlydept
{
height:110px !important;
}


  .innerboxwrapper
  {
float: left;
 background-color: black;
 opacity:0.8;
  border: 1px dashed white;
   color: White;
   
     margin: 10px 0px;
      padding: 0 5px;
       height: auto;
        overflow-y: auto;
         overflow-x: hidden;
         
        
}
.itemslistholderdiv
{
float: left;
background-color: black;
border: 1px dashed white;
color: White;
margin: 0px 0px;
padding: 5px;
height: auto;
overflow-y: scroll;
overflow-x: hidden; 
min-height: 600px;
}
.label,.labelss
{
font-style: italic;
color: #999;
}
.labelvalue
{
margin: 5px;
padding: 5px 5px;
z-index: 2;


}
.labelmenu
{

display: inline-block;
background: #17a2b8;
color: white;
padding: 6px 5px;
text-transform: uppercase;
max-width :200px;

}
.inputtextarea
{
margin: 5px;
display: inline-block;
padding: 2px 2px;
z-index: 2;

min-width :180px;
background :white;
color:Black ;
border-width:1px;
}

}

@media screen and (min-device-width: 481px) and (max-device-width: 768px){

.item-box-cats
{
position: relative;
    border: 1px solid silver;
    background: transparent;

    margin: 5px 0px 5px 15px;
    float: left;
    box-sizing: border-box;
    width: 110px;
    height: 110px;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    overflow: hidden;
    border-radius: 5px;
}
.item-box
{
 position:relative;border:1px solid silver;background:transparent;margin:10px 10px 10px 0;float:left;box-sizing: border-box;width:48%;height:100%;border-radius: 0px;box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;overflow: hidden;
border-radius: 15px;
}

.itemdetailsimages img
{
width:100%;
height:300px;
object-fit:cover;
}


.fullsliderhome
{
width:100%;
}

.rowitems
{
position:relative;
border:0px solid silver;
background:transparent;
margin:0 0 5px 0;
display: inline-block;
box-sizing: border-box;

border-radius: 15px;
}

.rowitemoutboxheader
{
overflow:hidden;margin:5px 0 0 0px;text-transform: capitalize;color:black;font-weight:700;background:transparent;opacity:0.7;position:relative;text-align:center;z-index:20;width:100%;
float:left;height:25px;
}
.rowitemoutboximagewrapper
{
position:relative;border:0px solid silver;background:transparent;margin:0px;z-index:9;float:left;
}

.swiperclassfullimages img
{
width:100%;
height:360px;
margin:0 0px;
border-radius: 0;
object-fit: cover;
}
.secondnav
{
float:left;
display:block ;
margin :55px 0 0 0;
}

#langlinkholder
{
padding: 5px;
position: absolute;
right: 4%;
top:5px;
z-index: 1000;
margin: 5px 10px 0px 0px;
height: 40px;
color: black;
background: white;
text-align: center;
border-radius: 50%;
}
.swiper-wrapper
{
height:auto;
}

.table .coltwo ,.table .colthree,.table .colfour,.table .colfive,.headerrow,.itemsubtotal
{
font-size :140%;
font-weight :600;
}
.search-element {
   height: 43.5px;
    margin :5px 0 0 0;
    padding :0;
overflow: hidden;
width:100%;
position: absolute;
    
}
.btnsearchbox {
    float: none;
height: 25px;
width: 100px;
outline: none;
margin: -9px -10px 10px -29px;
-webkit-border-radius: 30px;
border-radius: 20px;
background-position: 16px center;
border: none;
background: #eebe00;
    text-align: center;
}
.searchbtn {
    color: #000;
    z-index: 999;
    font-size: 12px;
    text-align: left;
    padding: 0 10px 0 15px;
    cursor: pointer;
}
.searchbox {
   border: 0;
float: none;
height: 24.5px;
color: #000;
font-size: 12px;
padding: 0 ;
line-height: 16px;
font-weight: 400;
background: #fff;

border-radius: 15px;
}

.imagetable
{
width:100%;
height:100%;
}
.imagetable img
{
width: 100%;
height: 210px;
margin: 0px;
padding: 10px;
border-radius: 10%;
}
.divwrapperdynamicstart
{
width: 48%;
height: 100%;
margin: 5px;
padding: 0px;
float:left ;
border:1px solid silver;

}


.contactform
{
width:100%;float:left;margin: 5px 20px;position: relative;z-index:99;padding:10px 0 0 0;overflow:hidden;background:#F5F5F5;
}

.fixedsizebox
{
position:relative ;
height: 110px;
width:100%;
margin: 5px 10px;
padding: 5px;
float: left;
}
.fourimages 
{
margin: 0px 0px 1% 3%;
padding: 0 0px 0px 0px;
display: inline-table;
width: 22%;
height: 100%;

}
.fourimages img
{
width: 100%;
height: 80px;
object-fit: cover;
border-radius: 50%;
}
.threecolumns
{
width: 99%;
float:left;
}
.threecolumns img
{
width:100%;
height:100%;
}


.threeimagesdisplay
{

height: 120px;
margin:5px 10px;
padding:10px;
float: left;
}
.threeimagesdisplay img
{
width: 100%;
height: 100%;

}
.halfpage
{
width: 99%;
float: left;
overflow:hidden;
}

.pageconts
{

Padding:10px;
margin:10px;

}


.swiperclassfullimages img
{
width:100%;
height:100%;
margin:0 0px;
border-radius: 0;
}



.swiperclasstwoimages img
{
width: 100%;
height:100%;
margin:0 5px;
}

.textonlydept
{
height:110px !important;
}


  .innerboxwrapper
{
float: left;
 background-color: black;
 opacity:0.8;
  border: 1px dashed white;
   color: White;
   
     margin: 10px 0px;
      padding: 0 5px;
       height: auto;
        overflow-y: auto;
         overflow-x: hidden;
         
        
}
.itemslistholderdiv
{
float: left;
background-color: black;
border: 1px dashed white;
color: White;
margin: 0px 0px;
padding: 5px;
height: auto;
overflow-y: scroll;
overflow-x: hidden; 
min-height: 600px;
}
.label,.labelss
{
font-style: italic;
color: #999;
}
.labelvalue
{
margin: 5px;
padding: 5px 5px;
z-index: 2;


}
.labelmenu
{

display: inline-block;
background: #17a2b8;
color: white;
padding: 6px 5px;
margin:5px;
text-transform: uppercase;
float:left ;
max-width :200px;

}
.inputtextarea
{
margin: 5px;
display: inline-block;
padding: 2px 2px;
z-index: 2;
float:left ;
min-width :180px;
background :white;
color:Black ;
border-width:1px;
}

}

@media screen and (min-device-width: 769px) and (max-device-width: 991px) {

.item-box-cats
{
position: relative;
    border: 1px solid silver;
    background: transparent;
    margin: 5px 0px 5px 15px;
    float: left;
    box-sizing: border-box;
    width: 115px;
    height: 110px;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    overflow: hidden;
    border-radius: 5px;
}
.item-box
{
 position:relative;border:1px solid silver;background:transparent;margin:10px 10px 10px 0;float:left;box-sizing: border-box;width:48%;height:100%;border-radius: 0px;box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;overflow: hidden;
border-radius: 15px;
}

.itemdetailsimages img
{
width:100%;
height:400px;
object-fit:cover;
}

.fullsliderhome
{
width:100%;
}

.rowitems
{
position:relative;
border:0px solid silver;
background:transparent;
margin:0 0 5px 0;
display: inline-block;
box-sizing: border-box;

border-radius: 15px;
}

.rowitemoutboxheader
{
overflow:hidden;margin:5px 0 0 0px;text-transform: capitalize;color:black;font-weight:700;background:transparent;opacity:0.7;position:relative;text-align:center;z-index:20;width:100%;
float:left;height:25px;
}
.rowitemoutboximagewrapper
{
position:relative;border:0px solid silver;background:transparent;margin:0px;z-index:9;float:left;
}
.swiperclassfullimages img
{
width:100%;
height:420px;
margin:0 0px;
border-radius: 0;
object-fit: cover;
}

.fullsliderhome img
{

width: 100%;
border-radius: 0;


}
#searchboxdiv
{
margin:-10px 0 0 0;
}
.secondnav
{
float:right;
display:inline-block  ;
margin :0px 0 0 15px;
}

#langlinkholder
{
padding: 5px;
position: absolute;
right: 7%;
top: 5px;
z-index: 1000;
margin: 5px 10px 0px 0px;
height: 40px;
color: black;
background: white;
text-align: center;
border-radius: 50%;
}
.swiper-wrapper
{
height:auto;
}

.table .coltwo ,.table .colthree,.table .colfour,.table .colfive,.headerrow,.itemsubtotal
{
font-size :140%;
font-weight :600;
}
.search-element {
   height: 43.5px;
    margin :5px 0 0 0;
    padding :0;
overflow: hidden;
width:100%;
position: absolute;
    
}

.btnsearchbox {
    float: none;
height: 25px;
width: 100px;
outline: none;
margin: -9px -10px 10px -29px;
-webkit-border-radius: 30px;
border-radius: 20px;
background-position: 16px center;
border: none;
background: #eebe00;
    text-align: center;
}
.searchbtn {
    color: #000;
    z-index: 999;
    font-size: 12px;
    text-align: left;
    padding: 0 10px 0 15px;
    cursor: pointer;
}
.searchbox {
   border: 0;
float: none;
height: 24.5px;
color: #000;
font-size: 12px;
padding: 0 ;
line-height: 16px;
font-weight: 400;
background: #fff;

border-radius: 15px;
}



.fixedsizebox
{
position:relative ;
position:relative ;
height: 145px;
margin: 5px 10px;
padding: 5px 10px;
float: left;
width:100%;
}
.fixedsizebox img
{
width: 100%;
height: 100%;
}


.imagetable
{
width:100%;
height:100%;
}
.imagetable img
{
width: 100%;
height: 210px;
margin: 0px;
padding: 10px;
border-radius: 10%;
}
.divwrapperdynamicstart
{
width: 45%;
height: 100%;
margin: 5px;
padding: 5px;
float:left ;
border:1px solid silver;

}


.contactform
{
width:49%;float:left;margin: 5px 20px;position: relative;z-index:99;padding:10px 0 0 0;overflow:hidden;background:#F5F5F5;
}

.threecolumns
{
width: 31%;
float:left;
}
.fourimages 
{
margin: 0px 0px 1% 3%;
padding: 0 0px 0px 0px;
display: inline-table;
width: 16%;
height: 100%;

}
.fourimages img
{
width: 100%;
height: 100px;
object-fit: cover;
border-radius: 50%;
}
.threecolumns img
{
width:100%;
height:100%;
}


.threeimagesdisplay
{

height: 120px;
margin:5px 10px;
padding:10px;
float: left;
}
.threeimagesdisplay img
{
width: 100%;
height: 100%;

}
.halfpage
{
width: 49%;
float: left;
overflow:hidden;
}

.pageconts
{

Padding:10px;
margin:10px;

}


.swiperclassfullimages img
{
width:100%;
height:100%;
margin:0 0px;
border-radius: 0;
}


.swiperclasstwoimages img
{
width: 100%;
height:100%;
margin:0 5px;
}

.textonlydept
{
height:110px !important;
}



  .innerboxwrapper
{
float: left;
 background-color: black;
 opacity:0.8;
  border: 1px dashed white;
   color: White;
   
     margin: 10px 0px;
      padding: 0 5px;
       height: auto;
        overflow-y: auto;
         overflow-x: hidden;
          
       
}
.itemslistholderdiv
{
float: left;
background-color: black;
border: 1px dashed white;
color: White;
margin: 0px 0px;
padding: 5px;
height: auto;
overflow-y: scroll;
overflow-x: hidden; 
min-height: 600px;
}
.label,.labelss
{

font-style: italic;
color: #999;
}
.labelvalue
{
margin: 5px;
padding: 5px 5px;
z-index: 2;


}
.labelmenu
{
display: inline-block;
background: #17a2b8;
color: white;
padding: 6px 5px;
margin:5px;
text-transform: uppercase;
max-width :200px;
}
}

@media screen and (min-device-width: 992px) and (max-device-width: 1199px) {

.item-box-cats
{
position: relative;
    border: 1px solid silver;
    background: transparent;
    margin: 5px 5px 5px 15px;
    float: left;
    box-sizing: border-box;
    width: 120px;
    height: 110px;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    overflow: hidden;
    border-radius: 5px;
}

.item-box
{
 position:relative;border:1px solid silver;background:transparent;margin:10px 10px 10px 0;float:left;box-sizing: border-box;width:30%;height:100%;border-radius: 0px;box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;overflow: hidden;
border-radius: 15px;
}

.itemdetailsimages img
{
width:100%;
height:400px;
object-fit:cover;
}

.fullsliderhome
{
width:100%;
}
.rowitems
{
position:relative;
border:0px solid silver;
background:transparent;
margin:0 0 5px 0;
display: inline-block;
box-sizing: border-box;

border-radius: 15px;
}

.rowitemoutboxheader
{
overflow:hidden;margin:5px 0 0 0px;text-transform: capitalize;color:black;font-weight:700;background:transparent;opacity:0.7;position:relative;text-align:center;z-index:20;width:100%;
float:left;height:25px;
}
.rowitemoutboximagewrapper
{
position:relative;border:0px solid silver;background:transparent;margin:0px;z-index:9;float:left;
}
.swiperclassfullimages img
{
width:100%;
height:520px;
margin:0 0px;
border-radius: 0;
object-fit: cover;
}

.fullsliderhome img
{

width: 100%;
border-radius: 0;

}
#searchboxdiv
{
margin:-10px 0 0 0;
}
.secondnav
{
float:right;
display:inline-block  ;
margin :0px 0 0 15px;
}

#langlinkholder
{
padding: 5px;
position: absolute;
right: 2%;
top: 3px;
z-index: 1000;
margin: 5px 10px 0px 0px;
height: 40px;
color: black;
background: white;
text-align: center;
border-radius: 50%;
}
.swiper-wrapper
{
height:auto;
}

.search-element {
   height: 43.5px;
    margin :5px 0 0 0;
    padding :0;
overflow: hidden;
width:100%;
position: absolute;
    
}

.searchbox
{
border: 0;
float: none;
height: 24.5px;
color: #000;
font-size: 12px;
padding: 0 ;
line-height: 16px;
font-weight: 400;
background: #fff;

border-radius: 15px;
}

.searchbtn
{

color: #000;
z-index: 999;
font-size: 12px;
text-align: left;
padding-left: 15px;
cursor: pointer;
}
.btnsearchbox
{
 float: none;
height: 25px;
width: 100px;
outline: none;
margin: -9px -10px 10px -29px;
-webkit-border-radius: 30px;
border-radius: 20px;
background-position: 16px center;
border: none;
background: #eebe00;
    text-align: center;

}


.fixedsizebox
{
position:relative ;
position:relative ;
height: 145px;
margin: 5px 10px;
padding: 5px 10px;
float: left;
width:100%;
}
.fixedsizebox img
{
width: 100%;
height: 100%;
}

.imagetable
{
width:100%;
height:100%;
}
.imagetable img
{
width: 100%;
height: 210px;
margin: 0px;
padding: 10px;
border-radius: 10%;
}
.divwrapperdynamicstart
{
width: 23%;
height: 100%;
margin: 5px;
padding: 5px;
float:left ;
border:1px solid silver;

}


.contactform
{
width:49%;float:left;margin: 5px 20px;position: relative;z-index:99;padding:10px 0 0 0;overflow:hidden;background:#F5F5F5;
}

.threecolumns
{
width: 31%;
float:left;
}
.fourimages 
{
margin: 0px 0px 1% 3%;
padding: 0 0px 0px 0px;
display: inline-table;
width: 16%;
height: 100%;

}
.fourimages img
{
width: 100%;
height: 170px;
object-fit: cover;
border-radius: 50%;
}
.threecolumns img
{
width:100%;
height:100%;
}



.threeimagesdisplay
{

height: 220px;
margin:5px 10px;
padding:10px;
float: left;
}
.threeimagesdisplay img
{
width: 100%;
height: 100%;

}

.halfpage
{
width: 49%;
float: left;
overflow:hidden;
}

.pageconts
{

Padding:10px;
margin:10px;


}


.swiperclassfullimages img
{
width:100%;
height:100%;
margin:0 0px;
border-radius: 0;
}


.swiperclasstwoimages img
{
width: 100%;
height:100%;
margin:0 5px;
}

.textonlydept
{
height:110px !important;
}


  .innerboxwrapper
{
float: left;
 background-color: black;
 opacity:0.8;
  border: 1px dashed white;
   color: White;
   
     margin: 10px 0px;
      padding: 0 5px;
       height: 620px;
        overflow-y: auto;
         overflow-x: hidden;
          
}
.itemslistholderdiv
{
float: left;
background-color: black;
border: 1px dashed white;
color: White;
margin: 0px 0px;
padding: 5px;
height: auto;
overflow-y: scroll;
overflow-x: hidden; 
min-height: 600px;
}
.label,.labelss
{
font-style: italic;
color: #999;
}
.labelvalue
{
margin: 5px;
padding: 5px 5px;
z-index: 2;


}
.labelmenu
{

display: inline-block;
background: #17a2b8;
color: white;
padding: 6px 5px;
margin:5px;
text-transform: uppercase;
max-width :200px;
}
.inputtextarea
{
margin: 5px;
display: inline-block;
padding: 2px 2px;
z-index: 2;
float:left ;
min-width :180px;

background :white;
color:Black ;
border-width:1px;
}

}

@media (min-width: 1200px) {

.item-box-cats
{
position: relative;
    border: 1px solid silver;
    background: transparent;
    margin: 5px 0px 5px 15px;
    float: left;
    box-sizing: border-box;
    width: 140px;
    height: 140px;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    overflow: hidden;
    border-radius: 5px;
}
.item-box
{
 position:relative;border:1px solid silver;background:transparent;margin:10px 10px 10px 1%;float:left;box-sizing: border-box;width:23%;height:100%;box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;overflow: hidden;
border-radius: 15px;
}

.itemdetailsimages img
{
width:100%;
height:450px;
object-fit:cover;
}

.fullsliderhome
{
width:100%;
}

.rowitems
{
position:relative;
border:0px solid silver;
background:transparent;
margin:0 0 5px 0;
display: inline-block;
box-sizing: border-box;

border-radius: 15px;
}

.rowitemoutboxheader
{
overflow:hidden;margin:5px 0 0 0px;text-transform: capitalize;color:black;font-weight:700;background:transparent;opacity:0.7;position:relative;text-align:center;z-index:20;width:100%;
float:left;height:25px;
}
.rowitemoutboximagewrapper
{
position:relative;border:0px solid silver;background:transparent;margin:0px;z-index:9;float:left;
}

.swiperclassfullimages img
{
width:100%;
height:520px;
margin:0 0px;
border-radius: 0;
object-fit: cover;
}
.fullsliderhome img
{

width: 100%;
border-radius: 0;

}
.secondnav
{
float:right;
display:inline-block  ;
margin :0px 0 0 15px;
}

#langlinkholder
{
padding: 5px;
position: absolute;
right: 2%;
top: 3px;
z-index: 1000;
margin: 5px 10px 0px 0px;
height: 40px;
color: black;
background: white;
text-align: center;
border-radius: 50%;
}
.swiper-wrapper
{
height:auto;
}

.search-element {
   height: 43.5px;
    margin :5px 0 0 0;
    padding :0;
overflow: hidden;
width:100%;
position: absolute;
   
}

.searchbox
{
border: 0;
float: none;
height: 24.5px;
color: #000;
font-size: 12px;
padding: 0 ;
line-height: 16px;
font-weight: 400;
background: #fff;

border-radius: 15px;
}

.searchbtn
{

color: #000;
z-index: 999;
font-size: 12px;
text-align: left;
padding-left: 15px;
cursor: pointer;
}
.btnsearchbox
{
 float: none;
height: 25px;

outline: none;
margin: -9px -10px 10px -29px;
-webkit-border-radius: 30px;
border-radius: 20px;
background-position: 16px center;
border: none;
background: #eebe00;
    text-align: center;

}

.fixedsizebox
{
position:relative ;
position:relative ;
height: 145px;
margin: 5px 10px;
padding: 5px 10px;
float: left;
width:100%;
}
.fixedsizebox img
{
width: 100%;
height: 100%;
}


.imagetable
{
width:100%;
height:100%;
}
.imagetable img
{
width: 100%;
height: 210px;
margin: 0px;
padding: 10px;
border-radius: 10%;
}
.divwrapperdynamicstart
{
width: 23%;
height: 100%;
margin: 5px;
padding: 5px;
float:left ;
border:1px solid silver;

}


.contactform
{
width:31%;float:left;margin: 5px 20px;position: relative;z-index:99;padding:10px 0 0 0;overflow:hidden;background:#F5F5F5;
}

.threecolumns
{
width: 31%;
float:left;
}
.fourimages 
{
margin: 0px 0px 1% 3%;
padding: 0 0px 0px 0px;
display: inline-table;
width: 16%;
height: 100%;

}
.fourimages img
{
width: 100%;
height: 170px;
object-fit: cover;
border-radius: 50%;
}
.threecolumns img
{
width:100%;
height:100%;
}


.threeimagesdisplay
{

height: 220px;
margin:5px 10px;
padding:10px;
float: left;
}
.threeimagesdisplay img
{
width: 100%;
height: 100%;

}

.halfpage
{
width: 49%;
float: left;
overflow:hidden;
}

.pageconts
{

Padding:10px;
margin:10px;

}


.swiperclasstwoimages img
{
width: 100%;
height:100%;
margin:0 5px;
}
.textonlydept
{
height:110px !important;
}


  .innerboxwrapper
{
float: left;
 background-color: black;
 opacity:0.8;
  border: 1px dashed white;
   color: White;
   
     margin: 10px 0px;
      padding: 0 5px;
       height: 620px;
        overflow-y: auto;
         overflow-x: hidden;
          
}
.itemslistholderdiv
{
float: left;
background-color: black;
border: 1px dashed white;
color: White;
margin: 0px 0px;
padding: 5px;
height: auto;
overflow-y: scroll;
overflow-x: hidden; 
min-height: 600px;
}
.label,.labelss
{
font-style: italic;
color: #999;
}
.labelvalue
{
margin: 5px;
padding: 5px 5px;
z-index: 2;


}
.labelmenu
{

display: inline-block;
background: #17a2b8;
color: white;
padding: 6px 5px;
margin:5px;
text-transform: uppercase;
max-width :200px;
}
.inputtextarea
{
margin: 5px;
display: inline-block;
padding: 2px 2px;
z-index: 2;
float:left ;
min-width :180px;

background :white;
color:Black ;
border-width:1px;
}

}