/* You can write here you own css styles. */
/* They will be used prior to all other styles */

.ntf::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
  border-radius: 5px;
}

.ntf::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
  border-radius: 5px;
}

.ntf::-webkit-scrollbar-thumb {
  background-color: black;
  border: 2px solid black;
  border-radius: 5px;
}

.icons-ntf {
  display: inline;
  float: right;
}

.notification {
 /* padding-top: 30px;*/
  margin-top: -1px;
  position: relative;
  display: inline-block;
  margin-right: -20px;
}

.number-ntf {
    height: 26px;
    width: 26px;
    background-color: #d63031;
    border-radius: 20px;
    color: white;
    text-align: center;
    position: absolute;
    top: -8px;
    left: 56px;
    padding: 3px;
    border-style: solid;
    border-width: 2px;
    z-index: 1;
}

.number:empty {
  display: none;
}

.notBtn {
  transition: 0.5s;
  cursor: pointer;
}

.fas {
  font-size: 22pt!important;
  padding-bottom: 10px;
  color: black;
  margin-right: 40px;
  margin-left: 40px;
}

.ntf {
  width: 360px;
  height: 0px;
  border-radius: 10px;
  transition: 0.5s;
  position: absolute;
  overflow-y: scroll;
  padding: 0px;
  left: -300px;
  margin-top: -5px;
  background-color: #f4f4f4;
  -webkit-box-shadow: 10px 10px 23px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 10px 10px 23px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 10px 10px 23px 0px rgba(0, 0, 0, 0.1);
  cursor: context-menu;
}


.ntf-top{
    font-size: 1.53em;
    padding: 20px 20px 10px 27px;
    color: #100f0f; 
    background-color: #dfdfdf;
}

.fas:hover {
  color: #d63031;
}

.notBtn:hover > .ntf {
  height: 60vh;
}


.gry-ntf {
  background-color: #f4f4f4;
}


.display-ntf {
  position: relative;
}

.cont-ntf {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f4f4f4;
}

.cont:empty {
  display: none;
}

.stick-ntf {
  text-align: center;
  display: block;
  font-size: 50pt;
  padding-top: 70px;
  padding-left: 80px;
}

.stick-ntf:hover {
  color: black;
}

.cent-ntf {
  text-align: center;
  display: block;
}

.sec-ntf {
  padding: 25px 10px;
  background-color: #f4f4f4;
  transition: 0.5s;
}

.profCont-ntf {
  padding-left: 15px;
}

.profile-ntf {
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  width: 75px;
  float: left;
}

.txt-ntf {
  vertical-align: top;
  font-size: 1.25rem;
  padding: 5px 10px 0px 115px;
}

.sub-ntf {
  font-size: 1rem;
  color: grey;
  padding-top: 6px;
}


.sec-ntf:hover {
  background-color: #bfbfbf;
}



@mixin hideTapHighlightColor() {
	//Prevent highlight colour when element is tapped
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

@mixin hardwareAccel() {
	//Improve performance on mobile/tablet devices
	transform: translateZ(0);
}

@mixin improveAntiAlias() {
	//Improve aliasing on mobile/tablet devices
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

/* pulse  */
.pulse-ele {
	display: inline-block;

	@include hideTapHighlightColor();
	@include hardwareAccel();
	@include improveAntiAlias();

	
		animation-name: pulse;
		animation-duration: 1s;
		animation-timing-function: linear;
		animation-iteration-count: infinite;

}


/* Buzz Out */
@-webkit-keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
@keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
.hvr-buzz-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);


  -webkit-animation-name: hvr-buzz-out;
  animation-name: hvr-buzz-out;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/***********************Scrol Bar****************************/
.scrol-bar{
  position: fixed;
  bottom: 0;
  z-index: 1;
  width: 100%;
}

.progress-bar{
  height: 40px;
  width: 0%;
  background-color: transparent!important;
}
/***********************Counter- Promotion****************************/


.timer-counter {
    border-radius: 2px;
     box-shadow: 1px 4px 11px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 1px 4px 11px 2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 1px 4px 11px 2px rgba(0, 0, 0, 0.2);
    display: inline-block;
    padding: 10px 15px 10px 15px;
    width: 100%;
    text-align: center;
    margin: 20px 0px 20px 0px;
}

.timer__item {
  display: inline-block;
  text-align: center;
}

.timer__item + .timer__item {
  margin-left: 20px;
}

.timer__value,
.timer__label {
  display: block;
}

.timer__value {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 2px;
}

.timer__label {
  color: #777;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/****************************************************************/





.grey-container-light {
    background: #FFFFFF;
}


language.language_dropdown .image_flag {
    margin-top: -2px;
    height: 12px;
    width: 16px;
}




/******************Order Timer********************/
.timer {
    text-align: center;
    color: #8e8e8e!important;
    border: 1px #ddd solid;
    padding: 26px 11px 11px 11px;
     box-shadow: inset 0px 0px 47px -5px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0px 0px 47px -5px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0px 0px 47px -5px rgba(0, 0, 0, 0.3);
     border-radius: 25px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
}


/**********************************************/





/************************************************************/

.fullwidthbanner-container, .fullwidthbanner-container .fullwidthbanner {
    max-height: 1000px !important;
    /*margin-top: 10px;*/
    background-image: url("/image/catalog/TopSlider/home_boxed_slider-background.jpg");
    box-shadow: 0px 3px 16px 8px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 3px 16px 8px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 3px 16px 8px rgba(0, 0, 0, 0.3);

}


.countdown_inner {
    border: none;
    background: rgba(255, 255, 255, 0.6) none repeat scroll 0% 0%;

}

.product-controls-list li {
    padding-top: 4px;
}


.pagination > li > a, .pagination > li > span {
    margin-left: 2px;
    border-radius: 50%;

}


.grey-container-light{
    background-color: #ffffff;

}

.main-slider .title-slide-01 .big {
    font: 8em/0.9em Mavenpro-#000,Arial,Helvetica,sans-serif;
    font-size: 8em;
}

.main-slider .title-slide-02 .big {
    font: 8em/0.9em Mavenpro-#000,Arial,Helvetica,sans-serif;
    font-size: 8em;
}

.main-slider .title-slide-03 .big {
    font: 8em/0.9em Mavenpro-#000,Arial,Helvetica,sans-serif;
    font-size: 8em;
}

/***********Product carousel on Home Page***************/
.product-carousel .item {
    margin: 12px 15px;

    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright:0px;
    -moz-border-radius-bottomleft:0px;
    -moz-border-radius-bottomright:10px;
    -webkit-border-top-left-radius:10px;
    -webkit-border-top-right-radius:0px;
    -webkit-border-bottom-left-radius:0px;
    -webkit-border-bottom-right-radius:10px;
    border-top-left-radius:10px;
    border-top-right-radius:0px;
    border-bottom-left-radius:0px;
    border-bottom-right-radius:10px;
    transition: all 0.8s ease 0s;
}


.product-carousel .item:hover {

    cursor: default;
    

}


/***********Product Listing on Category Pages***************/
.product-preview .preview a.preview-image {
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright:0px;
    -moz-border-radius-bottomleft:0px;
    -moz-border-radius-bottomright:0px;
    -webkit-border-top-left-radius:10px;
    -webkit-border-top-right-radius:0px;
    -webkit-border-bottom-left-radius:0px;
    -webkit-border-bottom-right-radius:0px;
    border-top-left-radius:10px;
    border-top-right-radius:0px;
    border-bottom-left-radius:0px;
    border-bottom-right-radius:0px;
}


.product-preview{
    margin-top: 16px;
    margin-bottom: 16px;

}


.product-preview:hover {
    box-shadow: 0 0 21px -2px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 21px -2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 0 21px -2px rgba(0, 0, 0, 0.3);
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright:0px;
    -moz-border-radius-bottomleft:0px;
    -moz-border-radius-bottomright:10px;
    -webkit-border-top-left-radius:10px;
    -webkit-border-top-right-radius:0px;
    -webkit-border-bottom-left-radius:0px;
    -webkit-border-bottom-right-radius:10px;
    border-top-left-radius:10px;
    border-top-right-radius:0px;
    border-bottom-left-radius:0px;
    border-bottom-right-radius:10px;
    transform: scale(1.02)

}

.products-list {
    padding-top: 11px;
    padding-bottom: 20px;
    padding-left: 26px;
    padding-right: 26px;
}



.responsive .col-lg-9 .products-list .product-preview {
    width: 31.333%;
    min-height: 1px;
    padding-right: 0;
    padding-left: 0;
    margin-left: 8px;
}


/***********************************************/


.products-widget .slides li:hover {
     box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
    -moz-box-shadow:0px 0px 5px 0px rgba(0,0,0,0.3);
    -webkit-box-shadow:0px 0px 5px 0px rgba(0,0,0,0.3);

}


.jcarousel-skin-previews .jcarousel-clip-vertical{
    margin-top: 18px;
    padding: 5px;
}


/*******************************************************/

.pagination > li > a:hover {
    transform: scale(1.5);
}

/*******************************************************/

.col-lg-12 .products-list .product-preview, .products-list .product-preview {
    width: 24%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 0;
    padding-left: 0;
    margin-left: 8px;
}

/***************Footer Social section**********************/

.animate-move-down, .animate-scale:hover {
    transition: transform 0.2s linear 0s;
     box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
    -moz-box-shadow:0px 0px 5px 0px rgba(0,0,0,0.3);
    -webkit-box-shadow:0px 0px 5px 0px rgba(0,0,0,0.3);
    border-radius: 5px;


}

.find-us {
    padding-left: 0px;
}



/***************************shopping cart button**********************/



.navbar-switcher:hover {

    background: #FF8700 none repeat scroll 0% 0% !important;
  
}

/***************************other*****************************/

.pulse {
    margin-top: 2px;
}


.styled-list li span {
    display: -moz-box;
    overflow: hidden;
}

.styled-list.arrow > li {
    margin-left: -15px;
    padding-left: 50px;
}


.payment-icons-container{
   clear: both;
   /*float: left;*/
   margin-bottom: 170px;
   max-width: 580px;
   margin-right: auto;
   margin-left: auto;
}


.payment-list li {
    margin: 0px;
    padding: 6px 8px 0px 0px;
    float: left;
}
/**********************Responsive Table **************************/

@import "http://fonts.googleapis.com/css?family=Montserrat:300,400,700";
.rwd-table {
  margin: 1em 0;
  min-width: 300px;
}
.rwd-table tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.rwd-table th {
  display: none;
}
.rwd-table td {
  display: block;
}
.rwd-table td:first-child {
  padding-top: .5em;
}
.rwd-table td:last-child {
  padding-bottom: .5em;
}
.rwd-table td:before {
  content: attr(data-th) ": ";
  font-weight: bold;
  width: 6.5em;
  display: inline-block;
}
@media (min-width: 480px) {
  .rwd-table td:before {
    display: none;
  }
}
.rwd-table th, .rwd-table td {
  text-align: left;
}
@media (min-width: 480px) {
  .rwd-table th, .rwd-table td {
    display: table-cell;
    padding: .25em .5em;
  }
  .rwd-table th:first-child, .rwd-table td:first-child {
    padding-left: 0;
  }
  .rwd-table th:last-child, .rwd-table td:last-child {
    padding-right: 0;
  }
}


.rwd-table {
  background: #34495E;
  color: #fff;
  border-radius: .4em;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  -moz-box-shadow: -4px 5px 13px #4D4D4D;
  -webkit-box-shadow: -4px 5px 13px #4D4D4D;
  box-shadow: -4px 5px 13px #4D4D4D;


}
.rwd-table tr {
  border-color: #46627f;
}
.rwd-table th, .rwd-table td {
  margin: .5em 1em;
}
@media (min-width: 480px) {
  .rwd-table th, .rwd-table td {
    padding: 1em !important;
  }
}
.rwd-table th, .rwd-table td:before {
  color: #dd5;
}

/**************************Tree Organogram*****************************/

/* Code based on this sample http://thecodeplayer.com/walkthrough/css3-family-tree */
/*Now the CSS*/

.tree * {
  margin: 0;
  padding: 0;
}

.tree ul {
  padding-top: 20px;
  position: relative;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}

.tree li {
  float: left;
  text-align: center;
  list-style-type: none;
  position: relative;
  padding: 20px 5px 0 5px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}
/*We will use ::before and ::after to draw the connectors*/

.tree li::before,
.tree li::after {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  border-top: 1px solid #8dc63f;
  width: 50%;
  height: 20px;
}

.tree li::after {
  right: auto;
  left: 50%;
  border-left: 1px solid #8dc63f;
}
/*We need to remove left-right connectors from elements without 
any siblings*/

.tree li:only-child::after,
.tree li:only-child::before {
  display: none;
}
/*Remove space from the top of single children*/

.tree li:only-child {
  padding-top: 0;
}
/*Remove left connector from first child and 
right connector from last child*/

.tree li:first-child::before,
.tree li:last-child::after {
  border: 0 none;
}
/*Adding back the vertical connector to the last nodes*/

.tree li:last-child::before {
  border-right: 1px solid #8dc63f;
  border-radius: 0 5px 0 0;
  -webkit-border-radius: 0 5px 0 0;
  -moz-border-radius: 0 5px 0 0;
}

.tree li:first-child::after {
  border-radius: 5px 0 0 0;
  -webkit-border-radius: 5px 0 0 0;
  -moz-border-radius: 5px 0 0 0;
}
/*Time to add downward connectors from parents*/

.tree ul ul::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  border-left: 1px solid #8dc63f;
  width: 0;
  height: 20px;
}

.tree li a {
  border: 1px solid #8dc63f;
  padding: 1em 0.75em;
  text-decoration: none;
  color: #666767;
  font-family: arial, verdana, tahoma;
  font-size: 0.85em;
  display: inline-block;
 
  /*
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
  */
  
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}
/* -------------------------------- */
/* Now starts the vertical elements */
/* -------------------------------- */

.tree ul.vertical,
ul.vertical ul {
  padding-top: 0px;
  left: 50%;
}
/* Remove the downward connectors from parents */

.tree ul ul.vertical::before {
  display: none;
}

.tree ul.vertical li {
  float: none;
  text-align: left;
}

.tree ul.vertical li::before {
  right: auto;
  border: none;
}

.tree ul.vertical li::after {
  display: none;
}

.tree ul.vertical li a {
  padding: 10px 0.75em;
  margin-left: 16px;
}

.tree ul.vertical li::before {
  top: -20px;
  left: 0px;
  border-bottom: 1px solid #8dc63f;
  border-left: 1px solid #8dc63f;
  width: 20px;
  height: 60px;
}

.tree ul.vertical li:first-child::before {
  top: 0px;
  height: 40px;
}
/* Lets add some extra styles */

div.tree > ul > li > ul > li > a {
  width: 11em;
}

div.tree > ul > li > a {
  font-size: 1em;
  font-weight: bold;
}
/* ------------------------------------------------------------------ */
/* Time for some hover effects                                        */
/* We will apply the hover effect the the lineage of the element also */
/* ------------------------------------------------------------------ */

.tree li a:hover,
.tree li a:hover+ul li a {
  background: #8dc63f;
  color: white;
  box-shadow: 10px 10px 5px grey;
  /* border: 1px solid #aaa; */
}
/*Connector styles on hover*/

.tree li a:hover+ul li::after,
.tree li a:hover+ul li::before,
.tree li a:hover+ul::before,
.tree li a:hover+ul ul::before {
  border-color: #aaa;
}

.tree-next-container{
  margin-top: 50px;
  clear: both;
  float: left;
  margin-bottom: 80px;

}

/**********************welcome messege*****************************/

.navbar-welcome {
    color: #ff0000;

}
/**********************rating star*****************************/

.products-widget .rating {
    display: block;
    color: red;
    height: 1.8em;
    margin-top: -3px;
}
/**********************buttons*****************************/

.buttons {
    margin: 1em 0;
    overflow: visible;
}

/**********************pagination*****************************/
.space-x{
  margin-bottom: 40px;

}


/**********************Truck*****************************/
.TruckLoader {
  position: relative;
  width: 80px;
  height: 40px;
  background: #444;
  animation: put 0s infinite, move-truck 10s;
  background-size: 100% auto;
  border-radius: 4px;
  -webkit-box-reflect: below 15px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0.1, transparent), to(rgba(255, 255, 255, 0.1)));
   margin-left: 10%;
   padding-left: 18px;
   padding-top: 10px;
   padding-bottom: -15px;
  font-family: Helvetica;
   color: #fff;
   margin-bottom: 8px;



}
.TruckLoader:before, .TruckLoader:after {
  content: '';
  display: block;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  background: #333;
  position: absolute;
  bottom: -10px;
}
.TruckLoader:before {
  left: 6px;
}
.TruckLoader:after {
  right: 6px;
}
.TruckLoader-cab {
  position: absolute;
  left: -35px;
  bottom: 0;
  width: 33px;
  height: 25px;
  background: #333;
  border-radius: 40% 0 4px 4px;
  -webkit-box-reflect: below 15px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0.1, transparent), to(rgba(255, 255, 255, 0.1)));
}
.TruckLoader-cab:before, .TruckLoader-cab:after {
  position: absolute;
  content: '';
  display: block;
  background: #333;
}
.TruckLoader-cab:before {
  width: 20px;
  height: 15px;
  top: -15px;
  right: 0;
  border-radius: 100% 0 0 0;
}
.TruckLoader-cab:after {
  border-radius: 50%;
  width: 16px;
  height: 16px;
  background: #444;
  left: 5px;
  border: 2px solid #fff;
  background: #333;
  position: absolute;
  bottom: -10px;
}
.TruckLoader-smoke, .TruckLoader-smoke:after, .TruckLoader-smoke:before {
  position: absolute;
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  right: -1px;
  bottom: -5px;
  border-radius: 50%;
  background: #333;
}
.TruckLoader-smoke {
  animation: smoke-1 2s infinite;
}
.TruckLoader-smoke:after {
  animation: smoke-2 3s infinite;
}
.TruckLoader-smoke:before {
  animation: smoke-3 4s infinite;
}

@-webkit-keyframes put{
  0% {
    margin-top: 0px;
    height: 50px;
  }
  5% {
    margin-top: -2px;
    height: 52px;
  }
  20% {
    margin-top: -1px;
    height: 50px;
  }
  35% {
    margin-top: 1px;
    height: 49px;
  }
  40% {
    margin-top: -1px;
    height: 51px;
  }
  60% {
    margin-top: 1px;
    height: 49px;
  }
  75% {
    margin-top: 0px;
    height: 50px;
  }
  80% {
    margin-top: -4px;
    height: 52px;
  }
  100% {
    margin-top: 1px;
    height: 49px;
  }
}
@-webkit-keyframes smoke-1 {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 0.9;
  }
  100% {
    right: -30px;
    bottom: 5px;
    width: 30px;
    height: 30px;
    opacity: 0;
  }
}
@-webkit-keyframes smoke-2 {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 0.9;
  }
  100% {
    right: -60px;
    bottom: 8px;
    width: 25px;
    height: 25px;
    opacity: 0;
  }
}
@-webkit-keyframes smoke-3 {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 0.9;
  }
  100% {
    right: -40px;
    bottom: 2px;
    width: 35px;
    height: 35px;
    opacity: 0;
  }
}
@-webkit-keyframes move-truck {
  0% {
    margin-left: 85%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    margin-left: 45%;
  }
  90% {
    opacity: 1;
  }
  100% {
    margin-left: 10%;
    opacity: 100;
  }
}

/************************NEWS BAR****************************/

#news-bar {
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    font: 17px bold;
    margin-bottom: -13px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
}

#news-bar:hover {
  transition: 0.37s;
}

#news-bar a {
  color: #565656;
  text-decoration: none;

}

#news-bar a:hover {
  transition: 0.37s;
  color: red;
}
