.input-width60 {
  width: 60px;
}

.input-height-xs{
  height: 20px;
}

.input-grey {
  width: 55px;
  background: #e7e7e7;
  border: 1px solid #e2e2e2;
  height: 42px;
  color: black;
  padding: 7px;
  margin: 0 15px 0 5px;
}
@media screen and (max-width: 400px) {
  .input-grey {
    margin: 0;
  }
}
.input-grey::-webkit-input-placeholder {
  color: black;
}

.input-grey::-moz-placeholder {
  color: black;
}

/* Firefox 19+ */
.input-grey:-moz-placeholder {
  color: black;
}

/* Firefox 18- */
.input-grey:-ms-input-placeholder {
  color: black;
}

.icon-play {
  margin-right: 15px;
}

.icon-play i {
  font-size: 22px;
  color: #417505;
}

/*checkbox*/
input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + label {
  cursor: pointer;
  display: block;
}

input[type="checkbox"] + label span {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: -2px 8px 0 0;
  vertical-align: middle;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}

input[type="checkbox"]:checked + label span {
  background: #3b99fc;
  animation: zoomIn 0.15s ease-in;
}

input[type="checkbox"]:checked + label span::before {
  content: "\f00c";
  font-family: 'FontAwesome';
  font-size: 10px;
  color: white;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}




/*filter Zend_Form checkbox*/
label input[type="checkbox"].filter +  span {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 2px 8px 0 0;
  vertical-align: middle;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  float: right; 
}

label input[type="checkbox"].filter:checked + span {
  background: #3b99fc;
  animation: zoomIn 0.15s ease-in;
}

label input[type="checkbox"].filter:checked + span::before {
  content: "\f00c";
  font-family: 'FontAwesome';
  font-size: 10px;
  color: white;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes zoomIn {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

/*modals*/
.modal-backdrop.in {
  background-color: rgb(0, 51, 102);
}

@media screen and  (min-width: 768px) {
  .modal-dialog {
    margin: 63px auto;
  }
}

.modal-dialog {
  margin-top: 65px;
}

.modal-content {
  border-radius: 0;
}

.modal-header {
  background-color: var(--main-color-accent);
  display: flex;
}

.close-modal {
  display: flex;
  align-items: center;
  font-size: 21px;
  font-family: "CenturyGothicBold";
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 1.286;
  position: absolute;
  text-transform: uppercase;
  top: 11px;
  right: 11px;
}

.close-modal:hover {
  color: rgb(255, 255, 255);
}

.close-modal .fa-close {
  font-size: 32px;
  margin-right: 5px;
}

.close-modal-bottom {
  bottom: -45px;
  top: auto;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #879fb7;
  font-size: 78px;
}

.arrow-left {
  left: 0;
}

.arrow-right {
  right: 0;
}

.img-songs {
  width: 100%;
}

/* Breadcrumb */
.breadcrumb {
  padding: 8px 0;
  margin-bottom: 10px;
  list-style: none;
  background-color: #fff;
  border-radius: 0;
}

.breadcrumb li a {
  font-size: 15px;
  font-family: "CenturyGothicBold";
  color: rgb(171, 171, 171);
  line-height: 1.8;
  text-transform: uppercase;
}

.breadcrumb > .active {
  color: var(--main-color-accent);
  font-size: 15px;
  font-family: "CenturyGothicBold";
  line-height: 1.8;
  text-transform: uppercase;
}