aside#filters {
    width: 275px;
    border-right: 1px solid rgba(51, 51, 51, 0.3);
    padding-right: 30px;
    padding-left: 20px;
}
#specials,
#priceRange,
#sports,
#type {
  margin: 10px 0;
  position: relative;
  clear: both;
}

.value {
  display: none !important;
}

.bigHead {
    font-size: 1em;
    color: #000;
    margin-top: 0;
    padding-top: 15px;
}


.results {
  color: #ee2761;
  font-weight: 600;
  font-size: 1.8em;
}

#sports h4,
#type h4 {
  font-size: 1.1em;
  display: inline-block;
  margin: 5px 10px;
  clear: none;
}

#sports .check-box,
#type .check-box {
  float: left;
}

.box1 {
  min-width: 120px;
  margin: 10px 0;
  clear: none;
  color: #000;
}

#sports .box1 {
    margin: 10px 0;
}

.box2 {
    text-align: center;
    margin-right: 17px;
    display: flex;
    margin-bottom: 10px;
}

.clearMarg {
  margin: 15px 0;
}

#slider {}

.prices {
  margin: 0 auto;
}

.prices img {
  width: 25px;
  margin-right: 5px;
}

.minVal,
.maxVal {
  margin-top: 20px;
  background: url("//d1g3fc5n8s9pjg.cloudfront.net/img/icons/user/ticket-gold.svg") no-repeat;
  background-size: 25px;
  padding: 5px 0 5px 25px;
}

.minVal img,
.maxVal img {
  width: 35px;
}

.minVal h3,
.maxVal h3 {
  float: right;
  clear: none;
  padding-left: 2px;
}

.minVal {
  float: left;
  clear: none;
}

.maxVal {
  float: right;
  clear: none;
}

.bump {
    margin-left: 0px;
    position: relative;
}
aside#filters label.filter-control-title {
    margin-left: 45px;
}
div#specials label.filter-control-title {
    margin-left: 10px;
}

.specBump {
  margin-left: 5px;
}

.ui-widget-header {
  background: #ee2761;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  background: #656565;
}

.ui-widget-content {
  background: #ddd;
}

.ui-slider-handle:focus {
  outline: none;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -.5em;
  margin-left: -.6em;
  height: 1.8em;
  width: 1.3em
}
/*CHECK BOXES*/
/* Checkmark style starts */

@-moz-keyframes dothabottomcheck {
  0% {
    height: 0;
  }
  100% {
    height: 15px;
  }
}

@-webkit-keyframes dothabottomcheck {
  0% {
    height: 0;
  }
  100% {
    height: 15px;
  }
}

@keyframes dothabottomcheck {
  0% {
    height: 0;
  }
  100% {
    height: 15px;
  }
}

@keyframes dothatopcheck {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: 30px;
  }
}

@-webkit-keyframes dothatopcheck {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: 30px;
  }
}

@-moz-keyframes dothatopcheck {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: 30px;
  }
}

input[type=checkbox] {
  display: none;
}

.check-box {
  height: 30px;
  width: 30px;
  background-color: transparent;
  border: 1px solid #838383;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: border-color ease 0.1s;
  -o-transition: border-color ease 0.1s;
  -webkit-transition: border-color ease 0.1s;
  transition: border-color ease 0.1s;
  cursor: pointer;
}

.check-box:last-child,
#specials ul li:last-child {
  /*margin-right: 0;*/
}

.check-box::before,
.check-box::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  height: 0;
  width: 5px;
  background-color: #ee2761;
  display: inline-block;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-radius: 2px;
  content: ' ';
  -webkit-transition: opacity ease .2;
  -moz-transition: opacity ease .2;
  transition: opacity ease .2;
}

.check-box::before {
  top: 20px;
  left: 15px;
  box-shadow: 0 0 0 2px #fff;
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.check-box::after {
  top: 10px;
  left: 4px;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

input[type=checkbox]:checked + .check-box,
.check-box.checked {
  border-color: #ee2761;
}

input[type=checkbox]:checked + .check-box::after,
.check-box.checked::after {
  height: 10px;
  -moz-animation: dothabottomcheck 0.2s ease 0s forwards;
  -o-animation: dothabottomcheck 0.2s ease 0s forwards;
  -webkit-animation: dothabottomcheck 0.2s ease 0s forwards;
  animation: dothabottomcheck 0.2s ease 0s forwards;
}

input[type=checkbox]:checked + .check-box::before,
.check-box.checked::before {
  height: 60px;
  -moz-animation: dothatopcheck 0.4s ease 0s forwards;
  -o-animation: dothatopcheck 0.4s ease 0s forwards;
  -webkit-animation: dothatopcheck 0.4s ease 0s forwards;
  animation: dothatopcheck 0.4s ease 0s forwards;
}

.grey {
  color: rgb(51, 51, 51) !important;
}
.fixed {
  position: fixed;
  top: 0;
  height: 55px;
  z-index: 1;
  width:100%;
}

/* Price Range */

.price-input {
    width: 100%;
    display: flex;
    margin: 8px 0 20px;
}
  .price-input .field {
    display: flex;
    width: 100%;
    height: 45px;
    align-items: center;
  }
  .field input {
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 14px;
    margin-left: 8px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #999;
    -moz-appearance: textfield;
  }
  input[type="number"]::-webkit-outer-spin-button,
  input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
  }
  .price-input .separator {
    width: 40px;
    display: flex;
    font-size: 14px;
    align-items: center;
    justify-content: center;
  }
  .slider {
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
  }
  .slider .progress {
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: #ee2761;
  }
  .range-input {
    position: relative;
  }
  .range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  input[type="range"]::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: #ee2761;
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  }
  input[type="range"]::-moz-range-thumb {
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: #ee2761;
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  }
  section.product-panel-with-filters {
    display: flex;
    width: 100%;
    position: relative;
    transition: .2s all;
}
.without-filters {
    justify-content: center;
}


/* radio */
input[type=radio] {
  display: none;
}

.radio-brands .radio-box {
  height: 30px;
  width: 30px;
  background-color: transparent;
  border: 1px solid #838383;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: border-color ease 0.1s;
  -o-transition: border-color ease 0.1s;
  -webkit-transition: border-color ease 0.1s;
  transition: border-color ease 0.1s;
  cursor: pointer;
}

/* .radio-brands .radio-box:last-child,
#specials ul li:last-child {
  margin-right: 0;
} */

/* .radio-brands .radio-box::before,
.radio-brands .radio-box::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  height: 27px;
  width: 27px;
  border-radius: 50%;
  background-color: #ee2761;
  display: inline-block;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-radius: 2px;
  content: ' ';
  -webkit-transition: opacity ease .2;
  -moz-transition: opacity ease .2;
  transition: opacity ease .2;
} */

.radio-brands .radio-box::before {
  top: 0px;
  left: 0px;
  box-shadow: 0 0 0 2px #fff;
  /* -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg); */
}

.radio-brands .radio-box::after {
  top: 0px;
  left: 0px;
  background: #fff;
  border: 1px solid #838383;
}

.radio-brands input[type=radio]:checked + .radio-box,
.radio-box.checked {
  border-color: #ee2761;
  background: #ee2761;
}

.radio-brands input[type=radio]:checked + .radio-box::after,
.radio-box.checked::after {
  height: 27px;
  width: 27px;
  border-radius: 50%;
  -moz-animation: dothabottomcheck 0.2s ease 0s forwards;
  -o-animation: dothabottomcheck 0.2s ease 0s forwards;
  -webkit-animation: dothabottomcheck 0.2s ease 0s forwards;
  animation: dothabottomcheck 0.2s ease 0s forwards;
}

.radio-brands input[type=radio]:checked + .radio-box::before,
.radio-box.checked::before {
  height: 27px;
  width: 27px;
  border-radius: 50%;
  -moz-animation: dothatopcheck 0.4s ease 0s forwards;
  -o-animation: dothatopcheck 0.4s ease 0s forwards;
  -webkit-animation: dothatopcheck 0.4s ease 0s forwards;
  animation: dothatopcheck 0.4s ease 0s forwards;
}
aside#filters .radio-brands label.filter-control-title {
  margin-left: 10px;
}
