#blocker {
  background: black;
  opacity: .5;
  height: 100vh;
  width: 100%;
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 3;
}
@media (max-width: 375px) {
  #footer .row.content {
    display: none;
  }
}
#footer,
#copyright {
  font-family: 'Roboto';
}
#cwh-header {
  font-family: 'Roboto';
  display: block;
  z-index: 3;
}
#cwh-header button {
  background: inherit;
  border: none;
  margin-right: 20px;
}
#cwh-header button i {
  display: none;
}
#cwh-header #cwh-nav {
  display: block;
  height: 60px;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.4);
}
#cwh-header #cwh-media {
  box-shadow: inset 0 -3px 0 #aaaaaa;
}
#cwh-header #cwh-IE-warring {
  background-color: rgba(255, 255, 0, 0.4);
  padding: 15px 0px;
}
#cwh-header #cwh-IE-warring a#warring-close {
  color: #E6A23C;
  position: absolute;
  left: 40px;
  line-height: 25px;
}
#cwh-header #cwh-IE-warring .warring p {
  color: #E6A23C;
  line-height: 25px;
  font-weight: 600;
  padding-left: 45px;
  margin: 0px;
}
#cwh-header .noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                    supported by Chrome and Opera */
}
#cwh-header .flex {
  display: flex !important;
}
#cwh-header .flex-center {
  justify-content: center;
}
#cwh-header .flex-middle {
  align-items: center;
}
#cwh-header .nav-btn-wrapper {
  height: 60px;
}
#cwh-header .container-fluid {
  max-width: 1400px;
}
#cwh-header #cwh-media > .container-fluid {
  max-width: 1440px;
}
#cwh-header .leftside {
  display: inline-block;
}
#cwh-header .rightside {
  display: inline-block;
}
#cwh-header .floatright {
  float: right;
}
#cwh-header .mobile-nav-toggle {
  display: none;
}
#cwh-header .logo-wrapper {
  display: inline-block;
  margin-right: 10px;
}
#cwh-header .logo-wrapper > a img {
  height: 36px;
  width: auto;
}
#cwh-header .directory {
  display: inline-block;
}
#cwh-header .mobile-clouddash {
  display: block;
  min-height: 30px;
}
#cwh-header .mobile-directory {
  display: block;
}
#cwh-header .mobile-contact {
  display: block;
  min-height: 30px;
}
#cwh-header .icon.icon-left-end {
  float: left;
  position: relative;
  top: 20px;
}
#cwh-header .icon.icon-right-end {
  float: right;
  position: relative;
  top: 20px;
}
#cwh-header ul.iconList > li.iconItem {
  border-left: solid 1px #aaa;
  float: left;
}
#cwh-header ul.iconList > li.iconItem:first-child {
  border-left: none;
}
#cwh-header ul.iconList > li.iconItem > a {
  font-size: 30px;
  margin: 0px 50px;
  color: black;
}
#cwh-header .mobile-menu {
  box-shadow: 5px 10px 20px 0px rgba(0, 0, 0, 0.4);
  width: 0px;
  height: 100vh;
  position: fixed;
  z-index: 4;
  top: 0px;
  left: 0;
  background-color: #f8f8f8;
  overflow-y: auto;
  transition: 0.5s;
  padding-top: 130px;
}
@media screen and (max-width: 1200px) {
  #cwh-header .mobile-nav-toggle {
    display: inline-block;
  }
  #cwh-header .mobile-nav-toggle:focus {
    outline: none;
  }
  #cwh-header .directory {
    display: none;
  }
  #cwh-header .contact-us {
    display: none;
  }
}
#cwh-header .mobile-directory > ul > li.border {
  border-bottom: solid 1px #ccc;
}
#cwh-header .mobile-directory > ul > li.border:first-child {
  border-top: solid 1px #ccc;
}
#cwh-header .mobile-directory a {
  display: block;
  width: 300px;
}
#cwh-header .mobile-directory ul.btn-list > li > a:hover {
  background: inherit;
  box-shadow: none;
}
#cwh-header .mobile-nav-content {
  display: none;
}
#cwh-header .mobile-nav-content a {
  display: block;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  color: black;
  text-align: center;
  padding: 0px 16px;
  text-decoration: none;
}
#cwh-header .mobile-nav-content a:hover {
  color: #fff;
  background: #db1023;
  box-shadow: inset 0px 0px 10px 0px #aaa;
}
#cwh-header a.linkBtn:hover {
  color: #fff !important;
  background: #db1023 !important;
  box-shadow: inset 0px 0px 10px 0px #aaa !important;
}
#cwh-header .scroll-indecator {
  display: none;
  position: absolute;
  bottom: 60px;
  left: 30px;
  font-size: 30px;
  -webkit-animation: MoveUpDown 0.5s ease-in-out infinite alternate;
  animation: MoveUpDown 0.5s ease-in-out infinite alternate;
}
#cwh-header .mobile-contact {
  margin-top: 30px;
  transition: 0.2s ease-in-out;
}
#cwh-header .mobile-contact-expand {
  margin-bottom: 60px;
  transition: none !important;
}
@-webkit-keyframes MoveUpDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes MoveUpDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@media screen and (max-width: 400px) {
  #cwh-header .clouddash .register {
    display: none;
  }
}
#cwh-header ul.btn-list {
  margin: 0px;
}
#cwh-header ul.btn-list > li {
  display: inline-block;
}
#cwh-header ul.btn-list > li > a {
  display: block;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  color: black;
  text-align: center;
  padding: 0px 16px;
  text-decoration: none;
}
#cwh-header ul.btn-list > li > a.login {
  height: 45px;
  line-height: 45px;
  background: #292c29;
  color: #fff;
  width: 90px;
  border: solid 2px #292c29;
  border-radius: 0px 0px 15px 15px;
  border-top: none;
}
#cwh-header ul.btn-list > li > a.register {
  height: 45px;
  line-height: 45px;
  margin-left: 5px;
  background: #55a629;
  color: #fff;
  width: 90px;
  border: solid 2px #55a629;
  border-radius: 0px 0px 15px 15px;
  border-top: none;
}
@media screen and (max-width: 1270px) and (min-width: 1200px) {
  #cwh-header ul.btn-list > li > a {
    padding: 0px 10px;
  }
}
#cwh-header ul.btn-list > li > a:hover {
  background: #ddd;
  box-shadow: inset 0 -3px 0 #db1023, inset 0px 0px 10px 0px #aaaaaa;
  transition: 0.2s ease-in-out;
}
#cwh-header ul.btn-list > li > a:hover.dropbtn {
  cursor: default !important;
}
#cwh-header ul.btn-list > li > a:hover.login {
  background: #fff;
  color: #292c29;
  box-shadow: inset 0px 0px 10px 0px #aaa;
}
#cwh-header ul.btn-list > li > a:hover.register {
  background: #fff;
  color: #55a629;
  box-shadow: inset 0px 0px 10px 0px #aaa;
}
#cwh-header .hovered {
  background: #ddd !important;
  box-shadow: inset 0 -3px 0 #db1023, inset 0px 0px 10px 0px #aaaaaa !important;
}
#cwh-header .media-bar {
  justify-content: space-between;
}
#cwh-header .media-bar .contact-us p {
  margin: 0px;
}
#cwh-header .media-bar ul.small-icon-list {
  margin: 0px;
}
#cwh-header .media-bar ul.small-icon-list > li {
  display: inline-block;
}
#cwh-header .media-bar ul.small-icon-list > li .phoneNumber {
  white-space: nowrap;
  text-overflow: clip;
  display: block;
}
#cwh-header .media-bar ul.small-icon-list > li > p {
  vertical-align: middle;
  margin: 0px;
}
#cwh-header .media-bar ul.small-icon-list > li > div {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  color: black;
  text-align: center;
  padding-right: 10px;
  text-decoration: none;
}
#cwh-header .media-bar ul.small-icon-list > li > div span {
  padding-left: 5px;
  font-size: 14px;
}
#cwh-header .media-bar ul.small-icon-list > li > a {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  color: black;
  text-align: center;
  padding: 0px 16px;
  text-decoration: none;
}
#cwh-header .media-bar ul.small-icon-list > li > a span {
  padding-left: 5px;
  font-size: 14px;
}
@media (max-width: 767px) {
  #cwh-header .media-bar ul.small-icon-list > li > a {
    padding: 0px 14px;
  }
  #cwh-header .media-bar ul.small-icon-list > li > a span {
    display: none;
  }
}
@media (max-width: 385px) {
  #cwh-header .media-bar ul.small-icon-list > li > a {
    padding: 0px 10px;
  }
}
@media (max-width: 374px) {
  #cwh-header .media-bar ul.small-icon-list > li > a {
    padding: 0px 8px;
  }
}
#cwh-header .media-bar ul.small-icon-list > li > a:hover {
  background: rgba(170, 170, 170, 0.4);
  box-shadow: inset 0 -3px 0 #db1023;
  transition: 0.2s ease-in-out;
}
#cwh-header .media-bar ul.small-icon-list > li > a:hover.twitter {
  color: #1DA1F2;
}
#cwh-header .media-bar ul.small-icon-list > li > a:hover.facebook {
  color: #3B5998;
}
#cwh-header .media-bar ul.small-icon-list > li > a:hover.youtube {
  color: #ff0000;
}
#cwh-header .media-bar ul.small-icon-list > li > a:hover.linkedin {
  color: #0077B5;
}
#cwh-header .media-bar ul.small-icon-list > li > a:hover.googlePlus {
  color: #DB4437;
}
#cwh-header .media-bar ul.small-icon-list > li > a:hover.wordPress {
  color: #0073AA;
}
#cwh-header .media-bar ul.small-icon-list > li > a:hover.phone {
  color: #55a629;
}
#cwh-header .media-bar ul.small-icon-list > li > a:hover.email {
  color: #1d70f2;
}
#cwh-header .media-bar ul.small-icon-list > li > a:hover span {
  color: black;
}
#cwh-header .show {
  display: block !important;
}
#cwh-header .hide {
  display: none !important;
}
#cwh-header .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 3px 5px 16px 0px rgba(0, 0, 0, 0.6);
  z-index: 0;
}
#cwh-header .dropdown-content a {
  position: relative;
  left: 0;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  transition: left 0.2s ease-in-out;
}
#cwh-header .dropdown-content a:hover {
  background-color: #f9f9f9;
  box-shadow: inset 3px 0px 0px 0px #db1023, 2px 2px 20px 2px rgba(0, 0, 0, 0.4);
  transform: scale(1.01);
  left: 6px;
  transition: 0.2s ease-in-out;
}
#cwh-header .dropdown-content a:hover:before {
  position: absolute;
  content: '';
  top: -5px;
  right: 0px;
  left: -8px;
  bottom: 0px;
}
