.Categories {
  display: flex;
  width: 99%;
  height: 60px;
  max-height: 100px;
  border-radius: 5px;
  margin: 10px 0 0 1%;
  border: 1px solid #dadada;
  box-shadow: 1px 1px 10px 0px #ccc;
  float: left;
}

.Category-Title {
  align-content: center;
  flex: 1;
  text-align: center;
}
.Category-Icon {
  display: block;
  width: 60px;
  height: 60px;
  float: right;
  padding: 10px;
}

.Circle {
	width: 10px;
    height: 10px;
    border-radius: 50px;;
	margin-left: 16px;
}

.Subjects {
  float: right;
  margin-top: 15px;
  right: 30px;
}

.Subjects-Counts {
  display: block;
  width: 111px;
  /*background-color: #292c2f;*/
  color: #efefef;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  clip-path: polygon(100% 0, 0 0, 0 180%);
}
.Subjects-Num {
  float: left;
  margin: 15px 0 0 4px;
  font-size: 18px;
  font-family: inherit;
  font-stretch: expanded;
  font-weight: bolder;
}

.Sub-Cat {
  display: flex;
  width: 80%;
  height: 40px;
  margin-left: 20px;
  margin-bottom: 25px;
  border-bottom-left-radius: 15px;
}
.Sub-Cat-Name {
  flex: 1;
  padding: 5px 0 0 10px;
}
.Sub-Cat-Name p {
  margin-bottom: 0;
	text-align: center;
}
.Sub-Cat-Icon {
  width: 40px;
  height: 40px;
  float: right;
  position: relative;
  right: -20px;
  background-color: #444;
  border-radius: 50px;
	display: none;
}
.Sub-Cat-Icon img {
	margin: 4px 0 0 4px;
}
.Sub-Cat-Count {
  display: none;
  width: 50px;
  float: right;
  position: relative;
  right: -20px;
  line-height: 55px;
  margin-bottom: 0;
}
.Sub-Cat-Count p {
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
	.Category-Icon {
  display: none;
}
}
@media (min-width: 300px) and (max-width: 767px) {
  .Categories {
    width: 100%;
    margin: 25px 0 0 0;
    float: none;
  }
}