﻿@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

#sidebar {  
  animation: 2s ease-out 0s 1 slideInFromRight;
}
#sidebarMobile {display: none}

#sidebar {
    float: right;
    position: absolute;
    z-index: 20001;
    right: 0;
    top: 450px;
    width: 82px;
    height: auto;
    background-color: transparent;
}
.logo-container {
  background-color:#000;
  width: 100%;
  height: 70px;
  text-align: center;
  padding: 20px;
  border-top-left-radius: 4px;
  border-bottom-width: 0px;
}
.text-container {
  width: 100%;
  background-color: #0061b1;
  color:#fff;
  text-align: center;
  font-size: 1.33em;
  /* font-stretch: condensed; */
  padding: 15px 5px 10px 5px;
  font-weight: 500;
  border-bottom-left-radius: 4px;
}
p.container-link {
  line-height: 1.3em;
  margin:0 0 15px 0;
}
a.sidebar-link {
  color:#fff
}
a.sidebar-link:after {
  content:"\e611";
  font-family: icomoon;
  font-size:1.8em;
  padding-top: 15px;
  display:block;

}


@media (max-width:600px) {

@keyframes slideInFromBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}

#sidebar {
    top: 200px;
    width: 87px;
    height: auto;
}
.text-container {
    font-size: 1.425em;
}
#sidebarMobile {  
  animation: 2s ease-out 0s 1 slideInFromBottom;
}

#sidebarMobile {
    float: right;
    position: fixed;
    z-index: 9998;
    background-image: url(/Particulares/Contas/Caixadirecta/PublishingImages/New-layout/bg_aderir-mobile.png);
    /*! text-indent: -9999px; */
    display: block;
    background-position: center;
    width: 100%;
    height: 67px;
    bottom: 0;
    text-align: center;
}


}

