
/*
 * General Styles (from McAfee Style Guide)
 */
html {
  -webkit-tap-highlight-color: transparent; 
}

body {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
 }

.text-red {
  color: #C01818!important;
}

.bg-red {
  background-color: #C01818;
}

.bg-light-gray {
    background-color: #e6e7e8;
}

.bg-dark-gray {
    background: #333333;
}

.border-line-orange {
  background-color: #f37321!important;
}
.border-line-yellow {
  background-color: #f5c714!important;
}
.border-line-green {
  background-color: #8cc74f!important;
}
.border-line-blue {
  background-color: #00aeef!important;
}
.border-line-darkblue {
  background-color: #005fae!important;
}
.border-line-purple {
  background-color: #73439a!important;
}
.border-line {
  display: block;
  height: 7px;
  background: #53565a;
  margin: 0 0 15px;
  position: relative;
}
.border-line:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 40px;
    background: rgba(0, 0, 0, 0.3); 
}
@media screen and (max-width: 767px) {
  .border-line {
    margin: 0 0 10px;
    height: 5px; 
  }
  .border-line:before {
    width: 25px;
  }
}
