#volumeJS .cv__wrapper-content {
    padding: 10px;
    border: 1px solid #ebebeb;
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    background-color: white;
}
#volumeJS .cv__filter {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
}
#volumeJS .cv__filter a:not([href]) {
    margin: 5px;
    padding: 2px 10px;
    font-size: 14px;
    color: #737E86;
    background-color: #ebebeb;
    cursor: pointer;
}
#volumeJS .cv__filter a.active:not([href]) {
    color: #ffffff;
    background-color: #c29475;
}
#volumeJS .cv__elements-content {
    position: relative;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-content: flex-start;
}
#volumeJS .cv__results-content {
    margin: 20px 0 0;
    padding: 20px 5px 0;
    border-top: 1px solid #ebebeb;
    width: 100%;
}
#volumeJS .cv__items-element {
    padding: 80px 0 0;
    margin: 5px;
    width: calc(100% - 10px);
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
    background-size: 70px;
    background-repeat: no-repeat;
    background-position: center 5px;
    background-color: #ebebeb;
}
#volumeJS .item-media img {
    margin: 20px auto;
    display: block;
    width: auto;
    height: 100px;
}
#volumeJS .item-info {
    text-align: center;
    color: #737E86;
}
#volumeJS .item-info p {
    padding: 0 2px;
    font-size: 16px;
}
#volumeJS .item-btn {
    margin: 0;
    padding: 8px;
    border-radius: 4px;
    width: 100%;
    background: transparent;
    align-self: flex-end;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: stretch;
    align-items: center;
}
#volumeJS .item-btn span {
  order: 0;
  flex: 5 1 auto;
  align-self: center;
  text-align: center;
}
#volumeJS .item-btn a:not([href]),
#volumeJS .item-btn button {
    border: 0;
    box-shadow: none;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    text-align: center;
    background-color: #898988;
    color: #fff;
    cursor: pointer;
}
#volumeJS .item-btn a:not([href]):hover,
#volumeJS .item-btn a:not([href]):focus,
#volumeJS .item-btn button:hover,
#volumeJS .item-btn button:focus {
    text-decoration: none;
    outline: 0;
}
#volumeJS .cv__header-result {
    margin: 0 0 10px;
}
#volumeJS .cv__header-result p {
    font-size: 16px;
    font-weight: 400;
    color: #737E86;
}
#volumeJS .cv__body-result ul {
    margin: 0;
    padding: 0;
    display: block;
    list-style: none;
}
#volumeJS .cv__body-result ul li {
    margin: 15px 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
}
#volumeJS .cv__body-result ul li + li {
  padding: 15px 0 0;
  border-top: 1px solid #ebebeb;
}
#volumeJS .cv__body-result ul li span,
#volumeJS .cv__body-result ul li p {
    margin: 0 5px 0 0;
    padding: 0 2px;
    font-size: 16px;
    color: #737E86;
}
#volumeJS .cv__body-result ul li a:not([href]),
#volumeJS .cv__body-result ul li button {
    padding: 0 10px;
    display: block;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background-color: #898988;
    color: #fff;
    cursor: pointer;
}
#volumeJS .cv__body-result ul li a:hover,
#volumeJS .cv__body-result ul li a:focus,
#volumeJS .cv__body-result ul li button:hover,
#volumeJS .cv__body-result ul li button:focus {
    text-decoration: none;
    outline: 0;
}
#volumeJS .cv__footer-result p {
    font-size: 16px;
    font-weight: 400;
    color: #c29475;
}
#volumeJS .cv__action-result{
  margin-top:20px;
}

#volumeJS .cv__send-volume-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:14px 20px;
  background:#c29475;
  color:#000000;
  text-decoration:none;
  text-transform: uppercase;
  font-weight:300;
  transition:.3s;
}

#volumeJS .cv__send-volume-btn:hover{
  opacity:.85;
}
@media (min-width: 400px) {
    #volumeJS .cv__items-element {
        width: calc(50% - 10px);
    }
}
@media (min-width: 576px) {
    #volumeJS .cv__items-element {
        width: calc(33.3333% - 10px);
    }
}
@media (min-width: 767px) {
    
}
@media (min-width: 992px) {
    #volumeJS .cv__wrapper-content {
        flex-flow: row wrap;
    }
    #volumeJS .cv__elements-content {
      width: 75%;
    }
    #volumeJS .cv__results-content {
        margin: 0 0 0 10px;
        padding: 0 0 0 15px;
        border-top: 0;
        border-left: 1px solid #ebebeb;
        width: calc(25% - 16px);
    }
    #volumeJS .cv__items-element {
        width: calc(25% - 10px);
    }
}