::selection {
    background: #ff7500;
    color: #fff;
    text-shadow: none;
}

body {
  margin:0;
  padding:0;
}
.login-btn {
  display: inline-block;
  text-align: center;
  font-size: 12px;
  color: #fff;
  background-color: #79b000;
  text-decoration: none;
  border-radius: 12px;
  transition: .4s;
  margin: 0px 5px;
}
.login-btn:hover {
  background-color: #a0e800;
  color: #FFF;
}
.account-btn {
  display: inline-block;
  text-align: center;
  font-size: 12px;
  color: #fff;
  background-color: #D2282A;
  text-decoration: none;
  border-radius: 12px;
  transition: .4s;
  margin: 0px 5px;
}
.account-btn:hover {
  background-color: #ff0000;
  color: #FFF;
}
.contact-btn {
  display: inline-block;
  text-align: center;
  font-size: 12px;
  color: #999;
  text-decoration: none;
  border-radius: 12px;
  transition: .4s;
  margin: 0px 5px;
}
.contact-btn:hover {
  color: #FFF;
}
.header-btn {
  display: inline-block;
  text-align: center;
  border: 1px solid #757575;
  font-size: 12px;
  color: #CACACA;
  text-decoration: none;
  border-radius: 5px;
  transition: .4s;
  margin: 0px 10px;
}
.header-btn:hover {
  background-color: #333;
  border: 1px solid #ff7500;
  color: #FFF;
}
.header-btn-other {
  display: inline-block;
  text-align: center;
  font-size: 12px;
  color: #CACACA;
  text-decoration: none;
  transition: .4s;
  margin: 0px 10px;
  padding: 0 10px;
}
.header-btn-other:hover {
  background-color: #333;
  color: #FFF;
}
.header-btn-other2 {
  display: inline-block;
  text-align: center;
  font-size: 12px;
  color: #CACACA;
  text-decoration: none;
  transition: .4s;
  margin: 0px 10px;
  padding: 0 10px;
}
.header-btn-other2:hover {
  background-color: #333;
  color: #FFF;
}
@media (max-width: 768px) {
.login-btn {
  background: rgb(34, 38, 41);
  font-size: 16px;
}
.login-btn:hover {
  background: rgb(34, 38, 41);
  color: #FFF;
}
.account-btn {
  background: rgb(34, 38, 41);
  font-size: 16px;
}
.account-btn:hover {
  background: rgb(34, 38, 41);
  color: #FFF;
}
.contact-btn {
  font-size: 16px;
  color: #cacaca;
}.contact-btn:hover {
  color: #FFF;
}
}
.header{
    background-color: #000;
	width: 100%;
	height: auto;
    top: 0;
	position: fixed;
	z-index: 999;
}
.header-margin{
    height: 100px;
}
.header-wrapper {
    width: 90%;
    margin: 0 auto;
}

.header-menu .header-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header-menu {
    background: #000;
    display: flex;
    height: 50px;
    flex-direction: row;
}

.header-menu_logo {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
  
}

.header-menu_logo a {
    font-size: 26px;
    text-decoration: none;
    display: flex;
    height: 100%;
    align-items: center;
}

.header-menu_logo_link_icon {
  animation:logoiconeffect 1s infinite cubic-bezier(0.6, -0.28, 0.74, 0.05);
  color: #ff7500;
  margin-right: 10px;
}

@keyframes logoiconeffect {
  0% {
    transform: scale(.8,.8);
  }
  
  50% {
    transform: scale(1.2,1.2);
  }
  
  100% {
    transform: scale(.8,.8);
  }
}

.header-menu_usermenu {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
    height: 100%;
    align-items: center;
}

.header-menu_usermenu_item {
    display: flex;
    height: 50px;
    justify-content: center;
    align-items: center;
}

.header-menu_usermenu_item i {
    padding-right: 7px;
}

.header-menu_usermenu_item_link {
    text-decoration: none;
    display: flex;
    transition: .25s ease;
    height: 25px;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.header-menu_usermenu_item_link:hover {
}

.header-menu_usermenu_icon {
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    margin-right: 10px;
}

.header-menu_usermenu_responsive-icon {
    height: 100%;
    justify-content: flex-end;
    align-items: center;
    font-size: 26px;
    color: #fff;
    display: none;
    flex-grow: 1;
}

.header-menu_usermenu_responsive-icon i {
  height: 100%;
  width: 50px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
}

.main-menu {
    clear: both;
    height: 50px;
    background: #222;
	box-shadow: 3px 0px 10px black;
}

.main-menu .header-wrapper {
    display: flex;
    height: 100%;
    justify-content: space-between;
}

.main-menu_menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    flex-grow: 1;
}

.main-menu_menu_item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-menu_menu_item_link {
    height: auto;
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 5px 15px;
    text-decoration: none;
    font-size: 14px;
}

.main-menu_menu_item_icon {
    margin-right: 6px;
    font-size: 20px !important;
}

.main-menu_menu_item_link:hover {
    color: #ff7500;
}

.main-menu_other {
    display: flex;
    height: 100%;
    justify-content: flex-end;
    align-items: center;
    width: 25%;
}

.main-menu_other i{
    margin-right: 5px;
}

.main-menu_other form {
    height: 30px;
    background: #fff;
    display: flex;
    border-radius: 3px;
    width: 100%;
    overflow: hidden;
    border: 1px solid #dfdfdf;
}

.main-menu_other input[name="keywords"] {
    height: 100%;
    margin: 0;
    border: 0;
    outline: 0;
    padding: 0 10px;
    width: 100%;
}

.main-menu_other button, .main-menu_other a {
    flex-shrink: 0;
    text-align: center;
    line-height: 25px;
}

.main-menu_other button:hover, .main-menu_other a:hover {
   
}

.mobile-hide {
    display: flex;
    height: 100%;
    justify-content: space-between;
    flex-grow: 1;
}

.main-menu-responsive-icon {
    display: none;
}

.main {
    padding: 20px 0;
}

.breadcrumb {
    display: block;
    font-size: 0.8em;
    color: #ccc;
    padding: 0;
    margin: 0 0 15px 0;
}

.breadcrumb_link{
    color: #666;
    text-decoration: none;
}

.breadcrumb_link--active {
    font-weight: bold;
}

.breadcrumb_icon {
    margin: 0 8px 0 8px;
}

.alert {
    background: #f7f7f7;
    padding: 10px 12px;
    display: flex;
    color: #666;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 0.9em;
    border-radius: 4px;
}

.alert_icon {
    font-size: 18px;
    margin-right: 10px;
    color: #666;
}

.alert a {
    color: #ff7500;
    text-decoration: none;
}

.block {
    margin-bottom: 30px;
}

.forum_thead {
    font-size: 16px;
    background: #007fd0;
    color: #fff;
    padding: 8px 12px;
    margin-bottom: 0;
    border-radius: 4px;
}

.forum_thead a {
    color: #fff;
    text-decoration: none;
}










@media (max-width: 768px) {
  .header-wrapper {
        width: 99%;
  }
  .header-margin{
    height: 80px;
}
  .header-menu_usermenu_responsive-icon {
    display:flex;
  }
  
  .header-menu_usermenu {
    display:none;
  }
  .header-menu_usermenu_item_link {
    text-decoration: none;
    display: flex;
    transition: .25s ease;
    height: 100%;
    align-items: center;
    justify-content: left;
    padding: 0 15px;
}
  .header-menu_usermenu.clicked {
    display: flex;
    position: absolute;
    flex-direction: column;
    height: 100vh;
    width: 300px;
    background: rgb(34, 38, 41);
    align-self: self-start;
    justify-content: flex-start;
    margin: 0 -3%;
  }
  
  .header-menu_usermenu.clicked .header-menu_usermenu_item,
  .header-menu_usermenu.clicked .header-menu_usermenu_item a {
      width: 100%;
  }
  
  .main-menu .header-wrapper {
    flex-direction:column;
  }
  
  .main-menu {
    height:auto;
  }
  
  .mobile-hide {
    display:none;
  }
  
  .mobile-hide.clicked {
    display: flex;
    flex-direction: column;
  }

  .mobile-hide.clicked .main-menu_menu {
      flex-direction: column;
  }

  .mobile-hide.clicked .main-menu_menu_item {
      display: flex;
      flex-grow: 1;
      height: 40px;
      width: 60%;
  }

  .mobile-hide.clicked .main-menu_other {
      width: 100%;
      order: 4;
	  justify-content: center;
	  padding-bottom: 20px;
	  padding-top: 5px;
  }

  .mobile-hide.clicked .main-menu_other form {
      height: 40px;
  }

  .mobile-hide.clicked
   .main-menu_other a {
      line-height: 40px;
  }
  
  .mobile-hide.clicked .main-menu_menu_item_link {
    flex-grow: 1;
	
  }
  
  .main-menu-responsive-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-menu-responsive-icon i {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    flex-grow: 1;
  }
  
}