.blinking{
    animation:blinkingText 1.2s infinite;
}
@keyframes blinkingText{
    0%{     color: white;    }
    49%{    color: white; }
    60%{    color: transparent; }
    99%{    color:transparent;  }
    100%{   color: white;    }
}
.flex-1 {
  flex:1;
}

.content-wrapper {
  width:100%;
}
#catalog {
  /* background: #e4e4e4; */
    padding: 0.5em;
}
#catalog .list {
  width:100%;
  display: table;
    /* margin-left: -10px;
    margin-top: 3em; */
}
#catalog .list .title {
    /* padding-left: 10px; */
}

#catalog .list > div:first-child {
  text-transform: uppercase;
  color: #a28051;
    height: 44px;
}

#catalog .list > div {
  display: table-row;
    /* height: 35px;
    height: 60px; */
      cursor: pointer;
}
#catalog .list > div.selected {
    color: #704510;
}
.selected svg path {
    fill: #ff6500;
}
#catalog .list > div:hover {
    /* background: #bbbbbb;
    color: #e6e4e2; */
    
    background: #d8d8d8;
}
#catalog .list > div > div {
  display: table-cell;
  vertical-align: middle;
}
#catalog .list .title {

}
.metas {
    font-size: 0.8em;
    display: flex;
    flex-direction: row;
    margin-left: 40px;
}
#catalog .list .tags{
    color: #a09999;
    text-transform: uppercase;
    display: none;
}
#catalog .list .jobs {
    color: #a09999;

}

.player {
  position:fixed;
  bottom: 0;
  width:100vw;
  background: #e4e4e4;
    background: #6d6d6d;
    left: 0;
    right: 0;
    border-top: 1px solid grey;
    padding: 0.8em;
    display: flex;
    align-items: center;
    justify-content:center;
    font-weight: bold;
    color: white;
  
}
.player .title , .player .time {
flex:1;
}
.player .title {
    padding-right:1em;
    text-align: right;
}
.player .time {
    padding-left:1em;
}
.player .controls {
  
}
.controlButton {
  width:38px;
  height:38px;
  background-size: contain;
    cursor: pointer;
}
.playButton {
  background-image: url(images/play.svg);
  
}
.pauseButton {
  background-image: url(images/pause.svg);

}
.miniPlayButton {
  cursor: pointer;
    display: inline-block;
    width: 30px;
    height: 30px;
    background: aliceblue;
  border-radius: 50%;
    margin-top: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 2px;
    margin-right: 6px;
    vertical-align: sub;
}
.search {
    /* margin-bottom: 2em; */
}
.search input {
  -webkit-appearance: none;
    -moz-appearance: none;
  margin: auto;
    border: transparent;
    width: 300px;
    width: 230px;
    border-radius: 2px;
  padding: 0.5em 0.6em;
    background: #f0f0f0;
    margin-bottom: 1em;
}
.search select {
  -webkit-appearance: none;
    -moz-appearance: none;
  background: #f0f0f0;
padding: 0.5em 0.6em;
border: transparent;
border-radius: 2px;
}
.search input:focus, .search select:focus {
  
outline: none;
}

.tag {
  border-radius: 14px;
    background: #93bec5;
    display: inline-block;
    padding: 0.1em 0.6em;
    font-size: 0.8em;
    color: #ffffff;
    margin: 0 0.2em 0.2em 0;
    cursor: pointer;
    user-select: none;
}
