
/* -------------------------------- 

Slide In Panel - by CodyHouse.co

-------------------------------- */
.cd-main-content {
  text-align: center;
}

.cd-main-content h1 {
  font-size: 2rem;
  color: #64788c;
  padding: 4em 0;
}

.cd-btn {
  position: relative;
  display: inline-block;
  padding: 1em 2em;
  background-color: #89ba2c;
  color: #ffffff;
  border-radius: 50em;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}

.cd-btn:hover {
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
}

.cd-panel__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  padding: 50px 2%;
  overflow: auto;
  /* smooth scrolling on touch devices */
  -webkit-overflow-scrolling: touch;
}

@media only screen and (min-width: 1170px) {
  .cd-main-content h1 {
    font-size: 3.2rem;
  }
}

.cd-panel {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  -webkit-transition: visibility 0s 0.6s;
  transition: visibility 0s 0.6s;
  z-index: 5;
}

.cd-panel.cd-panel--visible{
	display: block;
}

.cd-panel::after {
  /* overlay layer */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: pointer;
  -webkit-transition: background 0.3s 0.3s;
  transition: background 0.3s 0.3s;
}

.cd-panel.cd-panel--is-visible,  .cd-panel.cd-panel--is-visible2{
 visibility: visible;
  -webkit-transition: visibility 0s 0s;
  transition: visibility 0s 0s;
      font-size: 1vw;
}


.cd-panel.cd-panel--is-visible::after {
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: background 0.3s 0s;
  transition: background 0.3s 0s;
}

.cd-panel.cd-panel--is-visible2::after {
 
  -webkit-transition: background 0.3s 0s;
  transition: background 0.3s 0s;
}

.cd-panel__header {
  position: fixed;
  width: 90%;
  height: 40px;
  line-height: 50px;
  background-color: #dbe2e9;
  z-index: 2;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-transform 0.3s 0s;
  transition: -webkit-transform 0.3s 0s;
  transition: transform 0.3s 0s;
  transition: transform 0.3s 0s, -webkit-transform 0.3s 0s;
  -webkit-transform: translateY(-50px);
      -ms-transform: translateY(-50px);
          transform: translateY(-50px);
}

.cd-panel__header h1 {
  color: #89ba2c;
  padding-left: 5%;
}

.cd-panel--from-right .cd-panel__header {
  right: 0;
}

.cd-panel--from-left .cd-panel__header {
  left: 0;
}

.cd-panel--is-visible .cd-panel__header {
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  transition: -webkit-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}

.cd-panel-no-display{
	display: none  !important;
}

.pub_title{
	padding-left: 10px;
}

.getcontent_link{
	display: none;
}

@media only screen and (min-width: 768px) {
  .cd-panel__header {
    width: 70%;
  }
  
 
}

@media only screen and (min-width: 1170px) {
  .cd-panel__header {
    width: 25%;
  }
}

.cd-panel__close {
  position: absolute;
  top: 0;
  height: 100%;
  width: 60px;
  /* image replacement */
  display: inline-block;
  overflow: hidden;
  text-indent: 20%;
  white-space: nowrap;
}
/*
.cd-panel__close::before, .cd-panel__close::after {*/
  /* close icon created in CSS */
 /* content: '';
  position: absolute;
  top: 22px;
  left: 20px;
  height: 3px;
  width: 10px;
  background-color: #424f5c;*/
  /* this fixes a bug where pseudo elements are slighty off position */
 /* -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}*/
/*
.cd-panel__close::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.cd-panel__close::after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
*/
a.cd-panel__close:hover {
 background-color: transparent;
}
/*
.cd-panel__close:hover::before, .cd-panel__close:hover::after {
  background-color: #ffffff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.cd-panel__close:hover::before {
  -webkit-transform: rotate(220deg);
      -ms-transform: rotate(220deg);
          transform: rotate(220deg);
}

.cd-panel__close:hover::after {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

.cd-panel--is-visible .cd-panel__close::before {
  -webkit-animation: cd-close-1 0.6s 0.3s;
          animation: cd-close-1 0.6s 0.3s;
}

.cd-panel--is-visible .cd-panel__close::after {
  -webkit-animation: cd-close-2 0.6s 0.3s;
          animation: cd-close-2 0.6s 0.3s;
}*/

@-webkit-keyframes cd-close-1 {
  0%, 50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@keyframes cd-close-1 {
  0%, 50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@-webkit-keyframes cd-close-2 {
  0%, 50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

@keyframes cd-close-2 {
  0%, 50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.cd-panel__container {
  position: fixed;
  width: 90%;
  height: 99.5%;
  top: 0;
  background: #dbe2e9;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  transition: -webkit-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
}

.cd-panel--from-right .cd-panel__container {
  right: 0;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
}

.cd-panel--from-left .cd-panel__container {
  left: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}

.cd-panel--is-visible .cd-panel__container, .cd-panel--is-visible2 .cd-panel__container {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

@media only screen and (min-width: 768px) {
  .cd-panel__container {
    width: 70%;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-panel__container {
    width: 25%;
  }
}
/*
.cd-panel__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  padding: 50px 2%;
  overflow: auto;
  /* smooth scrolling on touch devices */
 /* -webkit-overflow-scrolling: touch;*/
/*}*/

.cd-panel__content p {
  font-size: 1.6vw;
  color: #424f5c;
 
  
}

.cd-panel__content p:first-of-type {
  margin-top: 0;
}

@media only screen and (min-width: 1200px) {
  .cd-panel__content p {
    font-size: 1vw;
   
  }
}

@media only screen and (min-width:768px) and (max-width:1199px){
.cd-panel__content{
	 padding: 50px 2%;
	
}	
	
  .title_link{
    font-size: 2vw !important;
	
  }	
  
.table_content,  .popup_heading, .cd-panel__header{
    font-size: 2.2vw !important;
	
  }	  
  
  .cd-panel__close{
	  text-indent: 2vw;
  }
  
.getcontent_link{
	display: block;
	float:left;
	margin-right: 4vw;
}

.pub_title {
    padding-left: 10vw;
}

 .cd-panel-no-display{
	display: block  !important;
}

.cd-panel.cd-panel--is-visible2{
	visibility: hidden;
}
}

@media only screen and (min-width:768px) and (max-width:1199px) and (orientation:landscape){
  .title_link{
    font-size: 1.5vw !important;
	
  }	
  
  .table_content,  .popup_heading, .cd-panel__header{
    font-size: 1.8vw !important;	  
  }
}

@media only screen and (max-width:767px){
.cd-panel__content{
	 padding: 50px 2%;
	
}	
	
  .cd-panel__content p {
    font-size: 3.8vw;
   
  }	
  
 .table_content,  .popup_heading, .cd-panel__header {
    font-size: 4vw;
   
  }	
  
  .cd-panel-no-display{
	display: block !important;
}

.pub_title{
	padding-left: 10vw;
}

.cd-panel.cd-panel--is-visible2{
	visibility: hidden;
}

.getcontent_link{
	display: block;
	float:left;
	margin-right: 4vw;
}

 .cd-panel-no-display{
	display: block  !important;
}

.title_link, .table_content{
	font-size: 3.8vw !important;
}
}