/* The device with borders */
.smartphone {
    position: relative;
    width: 360px;
    height: 640px;
    margin: auto;
    border: 16px black solid;
    border-top-width: 60px;
    border-bottom-width: 60px;
    border-radius: 36px;
    box-sizing: content-box;
  }
  
  /* The horizontal line on the top of the device */
  .smartphone:before {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #333;
    border-radius: 10px;
  }
  
  /* The circle on the bottom of the device */
  .smartphone:after {
    content: '';
    display: block;
    width: 35px;
    height: 35px;
    position: absolute;
    left: 50%;
    bottom: -65px;
    transform: translate(-50%, -50%);
    background: #333;
    border-radius: 50%;
  }
  
  /* The screen (or content) of the device */
  .smartphone .content {
    width: 360px;
    height: 640px;
    background: white;
  }
  
  .bottom-bar {
    position: fixed;
    z-index: 100; 
    bottom: 0; 
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7); /*semi-transparent*/
 }
  
/* CSS rule for phone dimensions */
@media only screen and (max-width: 600px) {
  .phone-only {
    display: block; /* Show the element */
  }
}

/* CSS rule for larger screens */
@media only screen and (min-width: 601px) {
  body{
    font-size: 1rem;
  }
  .content{
    padding-top: 0.35rem;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
  }
  .phone-only {
    display: none; /* Hide the element */
  }
}
  
@media only screen and (max-width: 600px) {
  body{
    font-size: 1.15rem;
  }
  .content{
    padding-top: 0.50rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .hidden-on-phone {
    display: none;
  }
} 

.pdf_container { 
  background: #ccc; 
  text-align: center; 
  display: none; 
  padding: 5px; 
  overflow: hidden; 
  overflow-y:auto;
}

.nowrap {
  white-space: nowrap;
}

.grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.blinkme {
  animation: blinker 2s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.clickable {
  cursor: pointer;
}

.statico {
  position:sticky;background:white;width:100%; top: 0; left: 52; z-index: 999;
}
