body {
  font-family: "Ubuntu", sans-serif;
}

.snowflake {
  color: #fffafa;
  font-size: 1.1em;
  font-family: Arial;
  text-shadow: 0 0 1px #000;
}

@-webkit-keyframes snowflakes-fall {
  0% {
    top: -10%;
  }
  100% {
    top: 100%;
  }
}

@-webkit-keyframes snowflakes-shake {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@keyframes snowflakes-fall {
  0% {
    top: -10%;
  }
  100% {
    top: 100%;
  }
}

@keyframes snowflakes-shake {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(80px);
  }
  100% {
    transform: translateX(0px);
  }
}

.snowflake {
  position: fixed;
  top: -10%;
  z-index: 9999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  -webkit-animation-name: snowflakes-fall, snowflakes-shake;
  -webkit-animation-duration: 10s, 3s;
  -webkit-animation-timing-function: linear, ease-in-out;
  -webkit-animation-iteration-count: infinite, infinite;
  -webkit-animation-play-state: running, running;
  animation-name: snowflakes-fall, snowflakes-shake;
  animation-duration: 10s, 3s;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
  animation-play-state: running, running;
}

.snowflake:nth-of-type(0) {
  left: 1%;
  -webkit-animation-delay: 0s, 0s;
  animation-delay: 0s, 0s;
}

.snowflake:nth-of-type(1) {
  left: 10%;
  -webkit-animation-delay: 1s, 1s;
  animation-delay: 1s, 1s;
}

.snowflake:nth-of-type(2) {
  left: 20%;
  -webkit-animation-delay: 6s, 0.5s;
  animation-delay: 6s, 0.5s;
}

.snowflake:nth-of-type(3) {
  left: 30%;
  -webkit-animation-delay: 4s, 2s;
  animation-delay: 4s, 2s;
}

.snowflake:nth-of-type(4) {
  left: 40%;
  -webkit-animation-delay: 2s, 2s;
  animation-delay: 2s, 2s;
}

.snowflake:nth-of-type(5) {
  left: 50%;
  -webkit-animation-delay: 8s, 3s;
  animation-delay: 8s, 3s;
}

.snowflake:nth-of-type(6) {
  left: 60%;
  -webkit-animation-delay: 6s, 2s;
  animation-delay: 6s, 2s;
}

.snowflake:nth-of-type(7) {
  left: 70%;
  -webkit-animation-delay: 2.5s, 1s;
  animation-delay: 2.5s, 1s;
}

.snowflake:nth-of-type(8) {
  left: 80%;
  -webkit-animation-delay: 1s, 0s;
  animation-delay: 1s, 0s;
}

.snowflake:nth-of-type(9) {
  left: 90%;
  -webkit-animation-delay: 3s, 1.5s;
  animation-delay: 3s, 1.5s;
}

.sidebar .list-group-item {
  padding: 7px 15px;
  border-color: #f5f5f5;
  color: #363636;
}

.sidebar .list-group-item:hover,
.list-group-item:active {
  padding: 7px 15px;
  border-color: #f5f5f5;
  color: #992323;
}

header.header {
  background-image: url("../images/web-hosting-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 30%;
}

header.header .topbar {
  margin: 0;
  padding: 2px 0;
  background-color: #363636;
  color: rgba(255, 255, 255, 0.65);
}

header.header .logo-img {
  width: 210px;
  max-height: 63px;
}

header.header .btn {
  font-size: 14px;
}

header.header .search {
  width: 280px;
  border: 0;
  border-radius: 0.25rem;
}

header.header .navbar a {
  color: white;
}

header.header .navbar-nav a {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

header.header .navbar-nav .dropdown-item a {
  color: #333;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 1rem;
}

.master-breadcrumb {
  background-color: #363636;
}

.master-breadcrumb .breadcrumb {
  background-color: #363636;
  margin: 0;
  padding: 9px 0;
  font-size: 0.9rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #363636;
  border-radius: 0.25rem;
}

.breadcrumb-item {
  display: flex;
  font-size: 13px;
  font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  font-weight: 700;
  color: white;
  content: ">";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: white;
}

.badge-info {
  color: #fff;
  background-color: #ce3233;
}

.btn-primary {
  color: #fff !important;
  background-color: #ce3233 !important;
  border-color: #ce3233 !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff !important;
  background-color: #992323 !important;
  border-color: #992323 !important;
}

.btn-outline-primary {
  color: #ce3233;
  border-color: #ce3233;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active,
.open > .dropdown-toggle.btn-outline-primary {
  color: white;
  background-color: #ce3233;
  border-color: #ce3233;
}

footer.footer {
  background-color: #363636;
  color: #858585;
  font-size: 14px;
  display: block;
}

footer.footer .main {
  display: block;
  padding: 80px 0;
}

footer.footer .footer-left-block {
  display: block;
}

footer.footer .footer-right-block {
  display: block;
}

footer.footer .footer-right-newsletter {
  display: block;
}

footer.footer .footer-right-block h5 {
  color: #f8f8f8;
  font-size: 18px;
  margin-bottom: 10px;
}

footer.footer .footer-right-newsletter p {
  color: #858585;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 20px;
}

footer.footer .footer-right-newsletter-box {
  display: block;
  position: relative;
}

footer.footer .footer-right-social-block {
  display: block;
}

footer.footer .footer-payments {
  display: block;
  font-size: 0;
  margin-top: 35px;
}

footer.footer .footer-payments li {
  display: inline-block;
  margin-right: 8px;
}

footer.footer .footer-payments li {
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  header.header .logo-img {
    width: 158px;
    max-height: 63px;
  }
}

@media (max-width: 767px) {
  footer.footer .footer-right-newsletter {
    text-align: center;
  }
  footer.footer .footer-right-social-block {
    text-align: center;
    margin-top: 20px;
  }
  footer.footer .footer-links {
    text-align: center;
  }
}

@media (max-width: 1200px) {
  footer.footer .footer-payments li {
    margin-bottom: 5px;
  }
}

@media (max-width: 991px) {
  footer.footer .main {
    padding: 30px 0;
  }
  footer.footer .footer-payments {
    margin-top: 25px;
    text-align: center;
  }
  footer.footer .footer-links {
    margin-bottom: 20px;
  }
}

footer.footer .footer-links h5 {
  color: #f8f8f8;
  font-size: 18px;
  margin-bottom: 10px;
}

footer.footer .footer-links ul {
  margin: 0;
  padding: 0;
}

footer.footer .footer-links ul li {
  list-style: none;
  margin: 0;
  display: block;
  padding: 3px 0px;
}

footer.footer .footer-links ul li a {
  color: #8a8a8a;
  font-size: 14px;
  display: inline-block;
}

footer.footer .nav-link {
  color: rgb(148, 147, 147);
}

footer.footer .nav-link:hover {
  color: white;
}

.supplement-box {
  display: block;
  width: 80%;
  height: 17px;
  background: #ffffff;
  position: relative;
  left: 0px;
  right: 0px;
  top: -40px;
  margin: auto;
}

.supplement-box:before {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  left: -18px;
  top: 0px;
  border: 15px;
  border: 9px solid #fff;
  border-color: transparent #fff #fff transparent;
}

.supplement-box:after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  right: -18px;
  top: 0px;
  border: 15px;
  border: 9px solid #fff;
  border-color: transparent transparent #fff #fff;
}

footer.footer .supplement-box {
  background: #363636;
}

footer.footer .supplement-box.supplement-box:before {
  border-color: transparent #363636 #363636 transparent;
}

footer.footer .supplement-box.supplement-box:after {
  border-color: transparent transparent #363636 #363636;
}

a,
a:link {
  color: #ce3233;
}

a,
a:hover,
a:visited {
  color: #992323;
}

.alert-info {
  color: #fff;
  background-color: #ce3233;
  border-color: #ce3233;
}
.btn-danger {
  color: #fff !important;
  background-color: #ce3233 !important;
  border-color: #ce3233 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
  color: #363636 !important;
  background-color: #ce3233 !important;
  border-color: #ce3233 !important;
}
.btn-success {
  color: #fff !important;
  background-color: #363636 !important;
  border-color: #363636 !important;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
  color: #ce3233 !important;
  background-color: #363636 !important;
  border-color: #363636 !important;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #363636 !important;
  border-color: #363636 !important;
}

.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  color: white;
  background-color: #ce3233 !important;
  border-bottom: 1px solid #992323 !important;
}

.card-body,
.mc-promo-login .content,
.mc-promo-manage .content {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1rem;
}

section#main-body {
  margin: 0;
  padding: 18px 0;
  min-height: 400px;
}

header.header .toolbar .nav-link {
  padding: 0.5rem 0.5rem;
  border-radius: 0;
  border: 0;
  color: #e5e5e5;
  position: relative;
  font-size: 1.5em;
}

.tiles .tile {
  display: block;
  position: relative;
  padding: 10px 20px;
  margin: 5px;
  background-color: #f8f8f8;
  border-right: 0;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

@media (max-width: 1199.98px) {
  .tiles div:nth-child(1) > .tile,
  .tiles div:nth-child(2) > .tile {
    border-bottom: 0;
  }
}

.tiles .tile .highlight {
  margin-top: 0px;
  height: 0px;
  border-radius: 0px;
}

.tiles .tile .title {
  font-weight: 700;
  color: #363636;
  text-transform: none;
  font-size: 16px;
}

.tiles .tile i {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 50px;
  line-height: 1;
  color: #363636;
  transition: all 0.3s ease;
}

.tiles .tile .stat {
  margin-top: 20px;
  font-size: 40px;
  line-height: 1;
}

.card,
.mc-promo-login,
.mc-promo-manage {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 0;
  border-radius: 0;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.card-header:first-child {
  border-radius: 0;
}

.mc-promo-login .panel-heading .sidebar h3,
.mc-promo-manage .panel-heading .sidebar h3,
.promo-container .header .sidebar h3,
.sidebar .card-title,
.sidebar .mc-promo-login .panel-heading h3,
.sidebar .mc-promo-manage .panel-heading h3,
.sidebar .promo-container .header h3 {
  font-size: 16px;
  color: white;
}

.client-home-cards .card-title,
.client-home-cards .mc-promo-login .panel-heading h3,
.client-home-cards .mc-promo-manage .panel-heading h3,
.client-home-cards .promo-container .header h3,
.mc-promo-login .panel-heading .client-home-cards h3,
.mc-promo-manage .panel-heading .client-home-cards h3,
.promo-container .header .client-home-cards h3 {
  font-size: 16px;
  color: white;
}

.client-home-cards .card-header .btn {
  color: #fff;
  background-color: #363636 !important;
  border: 0;
}

.client-home-cards .card-header .btn:hover {
  color: #ce3233;
  background-color: #363636 !important;
  border: 0;
}

.btn-info {
  color: #fff;
  background-color: #363636 !important;
  border-color: #363636 !important;
}
.btn {
  border-radius: 0;
}
.form-control {
  border-radius: 0;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
input[type="checkbox"],
input[type="radio"] {
  filter: hue-rotate(140deg);
}
.dropdown-menu {
  border-radius: 0;
}
.alert {
  border-radius: 0;
}
