.modules_panel, .matches {
  width: calc(100vw - 50px);
  padding: 10px;
  background: #eee;
  border: 1px solid #ddd;
  color: #000;
  position: relative;
}

.modules_panel .serv_list li, .matches .matches_servers_list ul li, .matches .matches_modules_list ul li {
  min-width: 100px;
  padding: 0 3px;
  height: 30px;
  background: #d1d1d1;
  color: #000;
  line-height: 30px;
  -webkit-transition: .2s ease-in;
  transition: .2s ease-in;
  cursor: pointer;
  text-align: center;
  border-radius: 2px;
}

.modules_panel .serv_list li:hover, .matches .matches_servers_list ul li:hover, .matches .matches_modules_list ul li:hover {
  background: #a1a1a1;
}

.modules_panel .modules_list, .matches .matches_list {
  padding: 10px;
  background: #444;
  color: #fff;
  position: relative;
}

.modules_panel {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.modules_panel .module_info_table, .modules_panel .modules_list_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  height: 29px;
  width: 100%;
}

.modules_panel .module_info_table.hovered p, .modules_panel .modules_list_title.hovered p {
  color: orange;
}

.modules_panel .module_info_table p, .modules_panel .modules_list_title p {
  width: 33.3%;
}

.modules_panel .main_server, .modules_panel .test_server {
  width: calc((100% - 135px) / 2);
}

.modules_panel .downloads_block {
  margin-left: 15px;
  width: 100px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-top: 105px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modules_panel .downloads_block ul li {
  width: 35px;
  height: 35px;
}

.modules_panel .downloads_block ul li a {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modules_panel .downloads_block ul li a svg path {
  stroke: #000;
}

.modules_panel .downloads_block ul li a:hover svg path {
  stroke: orange;
}

.modules_panel .downloads_block ul:nth-child(2) li a svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.modules_panel .serv_list {
  height: 40px;
}

.modules_panel .serv_list li {
  float: left;
  margin-right: 10px;
}

.modules_panel .serv_list li.current {
  background: orange;
  font-weight: bold;
}

.modules_panel .modules_list {
  width: 100%;
}

.modules_panel .modules_list:first-child {
  border-right: 1px solid #555;
}

.modules_panel .modules_list .modules_list_title {
  border-bottom: 1px solid #555;
  padding-bottom: 10px;
}

.modules_panel .modules_list .modules_list_title p {
  font-weight: bold;
}

.modules_panel .modules_list .modules_list_content .module_info_table {
  border-bottom: 1px solid #555;
  margin: 5px 0;
}

.matches {
  margin-top: 20px;
  position: relative;
}

.matches .matches_servers_list, .matches .matches_modules_list {
  min-height: 50px;
}

.matches .matches_servers_list ul li, .matches .matches_modules_list ul li {
  float: left;
  margin: 0 20px 20px 0;
  cursor: pointer;
}

.matches .matches_servers_list ul li:last-child, .matches .matches_modules_list ul li:last-child {
  margin-right: 0;
}

.matches .matches_servers_list ul li.selected, .matches .matches_modules_list ul li.selected {
  font-weight: bold;
  background: orange;
}

.matches .matches_modules_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.matches .matches_modules_list ul {
  display: none;
}

.matches .matches_calendar {
  display: none;
  height: 50px;
}

.matches .matches_list {
  display: none;
}

.matches .matches_list .matches_force_info .matches_update {
  margin-right: 10px;
}

.matches .matches_list .matches_list_title {
  font-weight: bold;
  margin-top: 10px;
}

.matches .matches_list .matches_list_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.matches .matches_list .matches_list_title p, .matches .matches_list .matches_list_content p {
  padding-right: 20px;
  width: 150px;
  height: 35px;
}

.matches .matches_list .matches_list_title p button, .matches .matches_list .matches_list_content p button {
  /* width: 100%; */
  cursor: pointer;
  margin: 2px;
}

.matches .matches_list .single_match {
  border-bottom: 1px solid #555;
}

.matches .matches_list .single_match p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*-ms-flex-wrap: wrap;
      flex-wrap: wrap;*/
}

.matches .matches_list .single_match p:nth-child(2) {
  font-weight: bold;
  color: orange;
}

.matches .matches_list .single_match p.match_buttons {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.matches .matches_list .single_match p.match_buttons button:last-child {
  margin-left: 10px;
}

.matches .matches_list .single_match .match_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.matches .matches_list .single_match .match_info a {
  color: #fff;
}

.matches .matches_list .single_match .match_info a:hover {
  text-decoration: underline;
}

.matches .matches_list .single_match .match_compounds a {
  color: #fff;
}

.matches .matches_list .single_match .match_compounds a:hover {
  text-decoration: underline;
}

.matches .matches_list .single_match .match_compounds .match_compounds_compound p {
  height: auto;
  margin-bottom: 10px;
  font-weight: bold;
}

.matches .matches_list .single_match .match_compounds .match_compounds_compound:last-child p {
  margin-top: 10px;
}

.notification {
  width: 200px;
  height: 50px;
  background: #fff;
  -webkit-box-shadow: 0 0 5px #e1e1e1;
          box-shadow: 0 0 5px #e1e1e1;
  border-radius: 5px;
  color: #000;
  text-align: center;
  line-height: 50px;
  position: absolute;
  bottom: 25px;
  right: 25px;
}

.daterangepicker {
  background: #444 !important;
  border: none !important;
  color: #fff !important;
  -webkit-box-shadow: 0 0 15px #000 !important;
          box-shadow: 0 0 15px #000 !important;
}

.daterangepicker .ranges li:hover {
  background: #555 !important;
}

.daterangepicker .ranges li.active {
  background: orange !important;
  color: #000 !important;
}

.daterangepicker .calendar-table {
  background: transparent !important;
  border: none !important;
}

.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
  border-color: #fff !important;
}

.daterangepicker td.available:hover {
  background: #555 !important;
}

.daterangepicker td.off {
  background: transparent !important;
}

.daterangepicker td.active {
  background: orange !important;
}

.daterangepicker th.available:hover {
  background: #555 !important;
}

.match_compounds_history{
    background: #444;
    padding: 10px;
}
	.match_compounds_history>div{
		margin-bottom: 10px;
		padding: 10px;
		border: 1px solid #ccc;
	}
		.match_compounds_history>div>b{
			display: inline-block;
			width: 120px;
			float: left;
		}
		.match_compounds_history>div>pre{
			display: block;
			margin-left: 125px;
		}
		.match_compounds_history>div>pre>a{
			color: white;
			text-decoration: underline;
		}







































