.cc-popup {
    animation-name: show;
    animation-duration: 1s;
    animation-timing-function: ease;
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
    background-color: #FFFFFF;
	
}
.tab-content {
  background: #FFFFFF;
  padding: 30px;
  height: 200px;
}

.cldetail {
    	 padding: 10px;
    }
.cldetail td {
    	  padding: 10px;
    }
    
.cc-popup.open {
    display: block;
	opacity: 1;
    animation-name: show;
    animation-duration: 1s;
    animation-timing-function: ease;
	 background-color: #FFFFFF;
}

.cc-controls {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease-out;
    -moz-transition: max-height 0.5s ease-out;
    transition: max-height 0.5s ease-out;
}

.cc-controls.open {
    max-height: 600px;
}

.cc-details {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease-out;
    -moz-transition: max-height 0.5s ease-out;
    transition: max-height 0.5s ease-out;
}

.cc-details.open {
    max-height: 600px;
}

@keyframes show {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes hide {
    from {opacity: 1;}
    to {opacity: 0;}
}
