.cd-main-content {
  text-align: center;
} 
.cd-main-content h1 {
  font-size: 20px;
  font-size: 1.25rem;
  color: #64788c;
  padding: 4em 0;
}
.cd-main-content .cd-btn {
  position: relative;
  display: inline-block;
  padding: 1em 2em;
  background-color: #89ba2c;
  color: #ffffff;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 50em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.no-touch .cd-main-content .cd-btn:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
}
@media only screen and (min-width: 1170px) {
  .cd-main-content h1 {
    font-size: 32px;
    font-size: 2rem;
  }
}

.cd-panel.externalClose {
    width: 100%;    
}

.cd-panel {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s 0.2s;
  -moz-transition: visibility 0s 0.2s;
  transition: visibility 0s 0.2s;
  z-index: 10;
}
.cd-panel::after {
  /* overlay layer */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: pointer;
  -webkit-transition: background 0.1s 0.1s;
  -moz-transition: background 0.1s 0.1s;
  transition: background 0.1s 0.1s;
}
.cd-panel.is-visible {
  visibility: visible;
  -webkit-transition: visibility 0s 0s;
  -moz-transition: visibility 0s 0s;
  transition: visibility 0s 0s;
}
.cd-panel.is-visible::after {
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: background 0.1s 0s;
  -moz-transition: background 0.1s 0s;
  transition: background 0.1s 0s;
}
.cd-panel.is-visible .cd-panel-close::before {
  -webkit-animation: cd-close-1 0.6s 0.3s;
  -moz-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;
  -moz-animation: cd-close-2 0.6s 0.3s;
  animation: cd-close-2 0.6s 0.3s;
}

.cd-panel-header {
  position: fixed;
  /*width: 90%;*/
  height: 50px;
  line-height: 50px;
  background: rgba(255, 255, 255, 0.96);
  z-index: 2;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  -webkit-transition: top 0.1s 0s;
  -moz-transition: top 0.1s 0s;
  transition: top 0.1s 0s;
}
.cd-panel-header h1 {
  font-weight: bold;
  color: #89ba2c;
  padding-left: 5%;
}
.cd-panel-header .back_nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 60px;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    display: none;
}
.cd-panel-header .back_nav span {
    font-size: 20px;
    vertical-align: baseline;
    padding-left: 10px;
}

.cd-panel-navbar .glyphicon {
    font-size: 18px;
    vertical-align: sub;
}

.cd-panel-navbar .fa.fa-address-book {
    font-size: 20px;
    vertical-align: sub;
}

.cd-panel .cd-panel-navbar {
    display: inline-block;
    width: 100%;
    padding: 51px 0 0;
    margin: 0px;
    height: 44px;
}

.cd-panel .cd-panel-navbar li {
    position: relative;
    display: inline-block;
    width: 16.65%;
    text-align: center;
    font-size: 22px;
    padding: 14px;
    cursor: pointer;
    float: left;
    height: 49px;
}

.cd-panel .cd-panel-navbar li:hover {
    background: #969696;
    color: white;    
}

.cd-panel .cd-panel-navbar li.active {
    background: #555;
    color: white;    
}

.from-right .cd-panel-header, .from-left .cd-panel-header {
  top: -50px;
}
.from-right .cd-panel-header {
  right: 0;
}
.from-left .cd-panel-header {
  left: 0;
}
.is-visible .cd-panel-header {
  top: 0;
  -webkit-transition: top 0.1s 0.25s;
  -moz-transition: top 0.1s 0.25s;
  transition: top 0.1 0.25s;
}                 
@media only screen and (max-width: 767px) {
  .cd-panel-header {
    /*width: 100%;*/
  }
}               
@media only screen and (min-width: 768px) {
  .cd-panel-header {
    /*width: 70%;*/
  }
}
@media only screen and (min-width: 1170px) {
  .cd-panel-header {
    /*width: 42%;*/
  }
}

.cd-panel-header-content .cd-panel-title {
    font-size: 17px;
    font-weight: bold;
    width: 100%;
    text-align: center;
    color: #337ab7;
}


.cd-panel-close {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 60px;
  font-size: 30px;
  color: #333;
  cursor: pointer;
  font-weight: bold;
}
.cd-panel-close::before, .cd-panel-close::after {
  /* close icon created in CSS */
  position: absolute;
  top: 22px;
  left: 20px;
  height: 3px;
  width: 20px;
  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);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cd-panel-close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.no-touch .cd-panel-close:hover {
  background-color: #424f5c;
}
.no-touch .cd-panel-close:hover::before, .no-touch .cd-panel-close:hover::after {
  background-color: #ffffff;
  -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;
}

.cd-panel-container {
  position: fixed;
  /*width: 90%;*/
  height: 100%;
  top: 0;
  background: #dbe2e9;
  z-index: 1;
  -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;
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.1s;
  box-shadow: 1px 1px 12px 0px #000;
  -moz-box-shadow: 1px 1px 12px 0px #000;
  -webkit-box-shadow: 1px 1px 12px 0px #000;
  -o-box-shadow: 1px 1px 12px 0px #000;
  filter:progid:DXImageTransform.Microsoft.Shadow(color='#000', Direction=134, Strength=12);
} 
.cd-panel-container .loader {
  display: none;
}

.cd-panel-container .loader img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
}

.from-right .cd-panel-container {
  right: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.from-left .cd-panel-container {
  left: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.is-visible .cd-panel-container {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}

@media only screen and (max-width: 767px) {
  .cd-panel-container {
    /*width: 100%;*/
  }
}
@media only screen and (min-width: 768px) {
  .cd-panel-container {
    /*width: 70%;*/
  }
}
@media only screen and (min-width: 1170px) {
  .cd-panel-container {
    /*width: 42%;*/
  }
}

.cd-panel-content {
  position: absolute;
  top: 100px;
  left: 0;
  bottom: 0;
  width: 100%;
  /*height: 100%;*/
  /*padding: 100px 0 0;*/
  overflow-y: auto;
  overflow-x: hidden;
  /* smooth scrolling on touch devices */
  -webkit-overflow-scrolling: touch;
}
.cd-panel-content p {
  font-size: 14px;
  font-size: 0.875rem;
  color: #424f5c;
  line-height: 1.4;
  margin: 2em 0;
}
.cd-panel-content p:first-of-type {
  margin-top: 0;
}
.cd-panel-content .empty-section {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.cd-panel-content .home-list .home-line {
    width: 100%;
    padding: 10px;
    background-color: #edf1f5;
    cursor: pointer;
}

.cd-panel-content .home-list .home-line .btn {
    min-width: 200px;
}

.cd-panel-content .home-news h4 {
    border-bottom: 1px solid #337ab7;
    margin-bottom: 15px;   
}

.cd-panel-content .home-news {
    list-style-type: none;    
}

.alert-guest-account {
    padding-bottom: 10px;
    color: #a94442;
    font-weight: bold;
}


@media only screen and (min-width: 768px) {
  .cd-panel-content p {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.6;
  }
}
