#masthead
{
    position: relative;
}

#code-loader
{
    margin-top: 20px;
    text-align: center;
    background-color: #333;
    padding: 5px;
    border-radius: 0px;
    transform-origin: center bottom;
    animation: bounce 0.8s infinite;
    display: inline-block;
    overflow: hidden;
    width: 60px;
    height: 60px;
}

#code-loader img
{
    height: 50px;
}

.cf-title
{
    text-align: center;
}

.cf-logo
{
    background: #333;
    height: 48px;
}

.cf-footer-logo
{
    height: 48px;
}

code
{
    position: relative;
    font-weight: bold;
    border-radius: 10px;
}

code.hljs:before
{
    position: absolute;
    content: attr(data-title);
    display: block;
    right: 0;
    top: 0;
    /* background: red; */
    padding: 1px 8px;
    border-radius: 50px;
    margin-right: 2px;
    margin-top: 2px;
    font-size: 11.5px;
}

.cf-blog-img
{
    width: 350px;
}

blockquote
{
    position: relative;
}

blockquote i.fa-youtube-play
{
    color: #f44336;
    position: absolute;
    z-index: 99;
    left: 50%;
    transform: translateX(-50%);
    top: 30%;
    font-size: 55px;
    border: 2px solid #FFF;
    padding: 0px 10px;
    padding-bottom: 30px;
    border-radius: 20px 20px 0 0;
    animation: shake 2s infinite;
    background: white;
}

#cf-unlock
{
    color: #FFF;
    font-weight: bold;
    border: none;
    position: absolute;
    z-index: 99;
    left: 50%;
    transform: translateX(-50%) translateY(-20%) rotate(0deg);
    top: 50%;
    box-shadow: 0 2px 32px #f44336;
    background: #f44336 !important;
    font-size: 25px;
}

#cf-unlock1
{
    background: #2196f3;
    color: #FFF;
    font-weight: bold;
    border: none;
    position: absolute;
    z-index: 99;
    left: 50%;
    transform: translateX(-50%) translateY(-70%);
    top: 50%;
    padding: 10px 65px;
    border-radius: 15px;
    font-size: 24px;
    box-shadow: 0 2px 32px #03a9f4;
}

#cf-unlock:hover
{
    opacity: 0.95;
}

#cf-unlock1 i
{
    font-size: 32px;
    display: inline-block;
    border: 2px solid #FFF;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    line-height: 50px;
    box-shadow: 1px 0 2px rgb(0 0 0 / 30%), -1px 0 2px rgb(0 0 0 / 30%);
    background-color: rgba(255,255,255,1);
    margin-bottom: 10px;
    color: #2196f3;
}

@keyframes shake {
  10% {
    transform:  translateX(-50%) translateY(-20%) rotate(15deg);
  }
  20% {
    transform:  translateX(-50%) translateY(-20%) rotate(-15deg);
  }
  30% {
    transform:  translateX(-50%) translateY(-20%) rotate(15deg);
  }
  50% {
    transform:  translateX(-50%) translateY(-20%) rotate(0deg);
  }
}

@keyframes bounce {
  
  0% {
    transform:  scaleY(1);
  }
  50% {
    transform:  scaleY(0.8);
  }
  100% {
    transform:  scaleY(1);
  }
}

.post-timer-div{
    display: none;
    color: #e91e63;
    font-weight: bold;
    font-size: 20px;
}

.cf-btn.disabled
{
    cursor: not-allowed;
    opacity: 0.6;
}

#btnDownload,
#btnDownload1
{
    font-weight: bold;
    font-size: 18px;
    background-color: #4caf50 !important;
    text-transform: uppercase;
}

#btnDownload{
    animation: 2.5s shake infinite alternate;
}

.entry-header
{
    position: relative;
    overflow: hidden;
    padding-top: 30px;
}

.cf_marquee
{
    position: absolute;
    overflow: hidden;
    white-space: nowrap;
    font-size: 16px;
    padding-left: 650px;
    display: block;
    animation: marquee 30s linear infinite;
    top: 0;
    color: #fa1822;
}
#cf_search_ip
{
    border-radius: 100px;
    position: relative;
    width: 100%;
    padding-left: 15px;
}

#cf_search_box
{
    position: absolute;
    width: 100%;
    right: 0;
    margin-top: 16px;
    z-index: 99999;
}

#cf_search_btn
{
    position: absolute;
    background-color: #333333;
    color: #fff;
    height: 40px;
    right: 0px;
    margin-top: -0.5px;
}

.cf_site_update
{
    position: absolute; 
    right: 0;
    margin-top: -34px;
}

.cf_site_update span
{
    background-color: #eee;
    padding: 2px 6px;
    display: inline-block;
    min-width: 215px;
}

.cf_site_update span.nu
{
    background-color: #8bc34a;
    color: #000;
}

.site-content
{
    margin-top: 20px;
}

@keyframes shake {
  0% {
    transform: skewX(-15deg) rotate(-10deg);
  }
  5% {
    transform: skewX(15deg) rotate(10deg);
  }
  10% {
    transform: skewX(-15deg) rotate(-10deg);
  }
  15% {
    transform: skewX(15deg) rotate(10deg);
  }
  20% {
    transform: skewX(0deg) rotate(0deg);
  }
  100% {
    transform: skewX(0deg) rotate(0deg);
  }
}

@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}