/* MAIN */
.collections-content,
.collections-content-search {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.collection-container {
  position: relative;
  margin: 5px;
}
.collection-info {
  position: absolute;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  font-weight: 600;
}
.collection-name {
  background: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  padding: 10px 5px;
  border-radius: 0 0 10px 10px;
}
.collection-count {
  background: rgba(0, 0, 0, 0.8);
  padding: 5px;
  font-size: 12px;
  border-radius: 10px;
  width: 46px;
  text-align: center;
  margin: 5px;
}
.collection-image {
  width: 100%;
  height: 100%;
  border-radius: 10px;
    display: block;
}
.collection-container:hover {
  cursor: pointer;
  transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1.02)
    scaleY(1.02);
  border: 2px solid rgb(255, 255, 255, 0.8);
  border-radius: 10px;
}
.collection-container:hover .collection-name {
  visibility: hidden;
}
.collection-container:hover .collection-count {
  background: rgb(255, 255, 255, 0.8);
  color: black;
}
.collections-header {
  margin: 5px;
}
.collections-header-title {
  color: #e0dfdc;
  font-size: 14px;
  float: left;
  font-weight: 600;
}
.collections-header-info {
  color: #a8a8a8;
  font-size: 14px;
  float: right;
  padding-bottom: 15px;
}
.collections-count {
  font-weight: 600;
  color: #e0dfdc;
}
.collection-search {
  width: 100%;
  background-color: #222222 !important;
  border: 2px solid #393737;
  color: #e0dfdc !important;
  padding: 8px 10px !important;
  box-sizing: border-box;
  border-radius: 10px !important;
  outline: none;
  box-shadow: none !important;
}
.collection-search:focus {
  border: 2px solid rgb(255, 255, 255, 0.8);
}
.collections-not-found {
  display: block;
  color: #a8a8a8;
  font-size: 13px;
  text-align: center;
  padding: 10px;
}
/* SHORT */
.collection-short-container {
  display: flex;
 margin-bottom: 20px;
}
.collection-short-image {
  height: 150px;
  width: 150px;
  border-radius: 10px;
}
.collection-short-info {
  padding: 10px;
}
.collection-short-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.collection-short-description {
  float: left;
  margin-top: 10px;
}
/* FULL */
.collection-full {
    border: 1px solid #393737;
    background: #222222;
    height: 50px;
    display: flex;
   /* width: 200px;*/
    border-radius: 5px;
    overflow: hidden;
}
.collection-full:hover {
  background: #393737;
}
.collection-full-image {
  max-height: 100%;
  width: auto;
}
.collection-full-info {
  color: #e0dfdc;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 5px 10px;
  width: 100%;
  overflow: hidden;
}
.collection-full-title {
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.collection-full:hover .collection-full-title {
  display: inline-block;
  white-space: nowrap;
  animation: runline 5s linear infinite 0s both;
  overflow: visible;
}
.collection-full-count {
  font-size: 12px;
  color: #ffffff;
  font-weight: bold;
  text-align: end;
}
/* OWL */
#owl-collections {
  /*  margin: 0 -10px 18px -10px;*/
}
#owl-collections .owl-dot {
  padding: 0;
  background-color: #222222;
}
#owl-collections .owl-dot.active {
  background-color: #f8c445/*#ff5a5a*/;
}
/* ADAPTIVE */
@media (max-width: 600px) {
  .collections-content,
  .collections-content-search {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ADAPTIVE 
@media (max-width: 644px) {
  .collection-full {
    width: 180px;
  }
}*/
/* ANIMATION */
@keyframes runline {
  to {
    transform: translateX(-100%);
  }
}


