+ display: none;
+}
+
+.plain-list-container {
+ margin: 2em 0;
+ .plain-list {
+ column-count: 2;
+ -moz-column-count: 2;
+ -webkit-column-count: 2;
+
+ @media screen and (min-width: 768px) {
+ column-count: 4;
+ -moz-column-count: 4;
+ -webkit-column-count: 4;
+ }
+ @media screen and (min-width: 1024px) {
+ column-count: 5;
+ -moz-column-count: 5;
+ -webkit-column-count: 5;
+ }
+
+ p {
+ margin-top: 0;
+
+ &.header {
+ -webkit-column-break-after: avoid;
+ break-after: avoid;
+ }
+ }
+
+ .initial-block {
+ display: inline-block;
+ width: 100%;
+ }
+ }
+
+ .pager-center {
+ //width: 100%;
+ text-align: center;
+ }
+
+ .pager {
+ display: inline-block;
+ padding-left: 0;
+ margin: 20px 0;
+ border-radius: 4px;
+ > li {
+ display: inline;
+
+ > a, > span {
+ position: relative;
+ float: left;
+ padding: 6px 12px;
+ margin-left: -1px;
+ line-height: 1.42857143;
+ color: #337ab7;
+ text-decoration: none;
+ background-color: #fff;
+ border: 1px solid #ddd;
+ &:hover, &:focus {
+ color: #23527c;
+ background-color: #eee;
+ border-color: #ddd;
+ }
+ }
+ &:first-child > a,
+ &:first-child > span {
+ margin-left: 0;
+ border-top-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ }
+ &:last-child > a,
+ &:last-child > span {
+ border-top-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ }
+ }
+ .current {
+ &, &:hover, &:focus {
+ z-index: 2;
+ color: #fff;
+ cursor: default;
+ background-color: #337ab7;
+ border-color: #337ab7;
+ }
+ }
+ .disabled {
+ > a, span {
+ &, &:hover, &:focus {
+ color: #777;
+ cursor: not-allowed;
+ background-color: #fff;
+ border-color: #ddd;
+ }
+ }
+ }
+ }
+}
+
+.tag-box {
+ display: block;
+
+ @media screen and (min-width: 768px) {
+ display: inline-block;
+ vertical-align: top;
+ width: 48%;
+ margin-right: 1%;
+ @include size(margin-bottom, 10px);
+ }