




@media (min-width: 768px) {
  .CarouselResponsiveWidth
{
  width:100%; 
  background:white;
}
}

@media (max-width: 768px) {
  .CarouselResponsiveWidth
{
  width:300px; 
  background:white;
}
}


.marquee {
    height: 25px;
    overflow:hidden;

    width: 100%;
    background: #323f49;
    color: #333;
    border: 0px solid #4a4a4a;
}

.marquee p {
    
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 25px;
    text-align: center;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-animation: scroll-left 2s linear infinite;
    -webkit-animation: scroll-left 2s linear infinite;
    animation: scroll-left 30s linear infinite;
    font-size: small;
    font-family: Arial, Helvetica, sans-serif;
}

@-moz-keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
    }
}

@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}


@media screen and (max-width: 600px) {
    #mobilehide {
      visibility: hidden;

      display: none;
    }
  }



  @media (min-width: 768px) {
    .MobileDesktopAlignRight {
  text-align:right; 
  
    }
  }
  
  @media (max-width: 768px) {
    .MobileDesktopAlignRight {
  text-align:center;
  
    }
  }

  



  @media (min-width: 768px) {
    .MobileDesktopAlignLeft {
  text-align:Left; 
  
    }
  }
  
  @media (max-width: 768px) {
    .MobileDesktopAlignLeft {
  text-align:center;
  
    }
  }



.topheaderdiv {
    
    height: 35px;

    background: #F7F7F7;

    padding: 5px;
    box-shadow: 0px 1px #B6B6B6;

    color: red;
    border: 0px solid #4a4a4a;
}



.ProductBarLink { COLOR:white; TEXT-DECORATION: none; }
.ProductBarLink:hover { COLOR: white; TEXT-DECORATION: none;  }


.TopBarLink { COLOR:#424242; TEXT-DECORATION: none; }
.TopBarLink:hover { COLOR:#424242; TEXT-DECORATION: underline;  }


.FooterLink { COLOR:black; TEXT-DECORATION: none; }
.FooterLink:hover { COLOR:black; TEXT-DECORATION: underline;  }



.ExtremeFooterLink { COLOR:white; TEXT-DECORATION: none; }
.ExtremeFooterLink:hover { COLOR:white; TEXT-DECORATION: underline;  }



form.example input[type=text] {
    
    padding: 3px;
      font-size: 10px;
      border: 1px solid grey;
    
      width: 200px;
      background: #f1f1f1;
    }
    
    form.example button {
      
      width: 40px;
      padding: 3px;
      background: #2196F3;
      color: white;
      font-size: 12px;
      border: 1px solid grey;
      
      cursor: pointer;
    }
    
    form.example button:hover {
      background: #0b7dda;
    }
    




 /* The snackbar - position it at the bottom and in the middle of the screen */
 #snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: yellow; /*#333 Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 1; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
} 
