﻿.scroll-hidden {
  overflow: hidden;
}

header .container .btn-xs-categories {
  flex: 0 1 auto;
}

header .container .brand-container {
    width: 220px;
    margin-left: 0px;
    flex: 0 1 auto;
}

header .container .brand-container img {
    width: 75%;
}

footer {
  background-color: #9e958c;
  background-repeat: repeat-x;
  border-top: 1px #e36402 solid;
  font-size: 11px;
  text-align: center;
}

footer .text-copyright {
  color: white;
}

footer .text-buzzero {
  max-width: 700px;
  margin: 0 auto 1em auto;
  text-align: justify;
}

.icon-headphones-md {
  background-image: url(/assets/imgs/phone.svg);
  width: 37px;
  height: 37px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}

.loading-ring {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.loading-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 51px;
  height: 51px;
  margin: 6px;
  border: 6px solid #ccc;
  border-radius: 50%;
  animation: loading-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #ccc transparent transparent transparent;
}
.loading-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.loading-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.loading-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes loading-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 767px) {
  header .container .brand-container {
    z-index: -1;
    width: auto;
    flex: auto;
  }

  header .container .brand-container a {
    position: absolute;
    left: 0;
    right: 0;
  }

  header .container .brand-container img {
    width: 170px;
  }
}