.category-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    opacity: 0;
    overflow: auto;
    visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
    z-index: 9999;
}
.category-popup.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
}

/* CD POPUP CONTAINER */
.category-popup-container {
    position: relative;
    width: 90%;
    max-width: 750px;
    margin: 2em auto;
    padding: 30px 35px 35px;
    background: #FFF;
    border-radius: .25em .25em .4em .4em;
    text-align: left;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
    /* Force Hardware Acceleration in WebKit */
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.category-popup-container h4{
	margin: 0 0 12px;
	padding: 0;
	font-size: 26px;
    font-weight: 700;
	text-transform: none;
	letter-spacing: 0px;
	color: #212121;
}
.category-popup-container p {
    margin: 0;
  	padding: 0 0 25px;
}
.category-popup-container .cd-buttons:after {
  content: "";
  display: table;
  clear: both;
}
.category-popup-container .cd-buttons li {
  float: left;
  width: 50%;
    display: none;
}
.category-popup-container .cd-buttons a {
  display: block;
  height: 60px;
  line-height: 60px;
  text-transform: uppercase;
  color: #FFF;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.category-popup-container .cd-buttons li:first-child a {
  background: #90181B;
  border-radius: 0 0 0 .25em;
}
.no-touch .category-popup-container .cd-buttons li:first-child a:hover {
  opacity: 0.8;
}
.category-popup-container .cd-buttons li:last-child a {
  background: #d4d4d4;
    color: #212121;
  border-radius: 0 0 .25em 0;
}
.no-touch .category-popup-container .cd-buttons li:last-child a:hover {
  opacity: 0.8;
}
.category-popup-container .category-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
    font-size: 0px;
}
.category-popup-container .category-popup-close::before, .category-popup-container .category-popup-close::after {
  content: '';
  position: absolute;
  top: 12px;
  width: 14px;
  height: 3px;
  background-color: #8f9cb5;
}
.category-popup-container .category-popup-close::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 8px;
}
.category-popup-container .category-popup-close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 8px;
}
.is-visible .category-popup-container {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
@media only screen and (min-width: 1170px) {
  .category-popup-container {
    margin: 3em auto;
  }
}

@media screen and (max-width: 992px){
    .category-popup-trigger{
		
	}
	.category-popup-container {
    	padding: 30px 20px;
    }
    .category-popup-container h4{
        margin: 0 0 6px;
		font-size: 22px;
	}
}