#blaze-demos-popup {
    position: fixed;
    z-index: 999999;
    display: flex;
    right: -360px;
}

.preview-tab {
    position: relative;
}

#demos-trigger {
    position: absolute;
    top: 258px;
    right: 0;
    height: 36px;
    font-size: 14px;
    width: 75px;
    font-weight: bold;
    text-align: center;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    line-height: 40px;
    cursor: pointer;
    box-shadow: rgb(0 0 0 / 14%) -3px 3px 5px -2px;
    background-color: #ffffff;
    color: #000;
}

#demos-trigger .dashicons {
    font-size: 32px;
}

.blaze-demos-list-wrap {
    background-color: #ffffff;
    height: 100vh;
    width: 360px;
    scroll-behavior: auto;
    z-index: 9999999;
}

.blaze-demos-list-wrap .blaze-demos-list-header {
    padding: 35px 50px;
    text-align: center;
}

.blaze-demos-list-wrap-inner {
    padding: 2px;
    flex-wrap: wrap;
    justify-content: flex-start;
    height: 95%;
    overflow-y: scroll;
    width: 100%;
    text-align: center;
}

.blaze-demos-list img{
    margin-bottom: 10px;
}
.blaze-demos-list a {
    padding: 0px 2px;
    position: relative;
    height: 185px;
    display: inline-block;
}

.blaze-demos-list a:hover {
    opacity: 0.3: 
}

.blaze-demos-list a .tag.free {
    content: 'free';
    background-color: #4476f3;
}

.blaze-demos-list a .tag.pro {
    content: 'pro';
    background-color: #f70505;
}

.blaze-demos-list a .tag {
    top: 6px;
    color: #ffffff;
    right: 0px;
    position: absolute;
    padding: 2px 4px;
    text-transform: capitalize;
}

.blaze-demos-list a .tag.free::before {
    border-color: #4476f3 #4476f3 #4476f3 transparent;
}

.blaze-demos-list a .tag.pro::before {
    border-color: #f70505 #f70505 #f70505 transparent;
}

.blaze-demos-list a .tag::before {
    content: "";
    border-style: solid;
    top: 0px;
    left: -11px;
    border-width: 14px 6px;
    position: absolute;
}

.blaze-demos-list a img {
    width: 160px;
    border: 1px solid rgb(168 167 167);
    height: 175px;
}

.preview-tab .preview_img_holder {
    position: fixed;
    top: 150px;
    right: 360px;
    width: 360px;
    height: 600px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(232, 232, 232);
    box-shadow: rgb(0 0 0 / 14%) -3px 0px 50px -2px;
    opacity: 1;
    display: none;
}

.link-actions a.pro-link {
    color: #000000;
    padding: 5px 15px;
    display: inline-block;
    border: 1px solid #428bca;
    border-radius: 25px;
    margin-right: 15px;
    font-size: 13px;
    margin-bottom: 10px;
}

.link-actions a.pro-link:hover {
    background-color: #ea2e49;
    border-color: #ea2e49;
    color: #ffffff;
}

.link-actions a.documentation-link:hover {
    background: #428bca;
    border-color: #428bca;
    color: #ffffff;
}

.link-actions a.documentation-link{
    color: #000000;
    padding: 5px 15px;
    display: inline-block;
    border: 1px solid #428bca;
    border-radius: 25px;
    margin-right: 15px;
    font-size: 13px;
}

.theme-name {
    font-size: 22px;
    margin-bottom: 10px;
    color: #ea2e49;
}

.txt_demo {
    font-size: 15px;
    padding-top: 20px;
}

.blaze-demos-list-wrap-inner::-webkit-scrollbar {
  width: 7px;
}

/* Track */
.blaze-demos-list-wrap-inner::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
.blaze-demos-list-wrap-inner::-webkit-scrollbar-thumb {
  background: #ea2e49; 
  border-radius: 20px;
}

/* Handle on hover */
.blaze-demos-list-wrap-inner::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
}

@media only screen and (max-width: 1400px){
    .preview-tab .preview_img_holder {
        top: 50px;
    }
}


/** blink **/
.rim_wrap_outer {
    position: relative;
    top: 30px;

}
.rim_wrap {
        position: absolute;
        width: 32px;
        height: 31px;
        overflow: hidden;
        top: 15%;
        left: 25%;
        border-radius: 50%;
    }

    .local-news-ticker.layout--two .rim_wrap {
        right: 10%;
        left: initial;
    }

    .local-news-ticker.layout--two .rim_wrap {
        top: 6%;
    }


    .rim-1, .rim-2, .rim-3{
      position: absolute;
      top: 20%;
      left: 0%;
      border-radius: 50%;
      width: 0em;
      height: 0em;
      border: white 0.2em solid;
        background: #d95f3d6e;
    }
    .rim-1 {
      -webkit-animation: expand 3s linear infinite;
    }
    .rim-2 {
      -webkit-animation: expand 3s linear 0.5s infinite;
    }
    .rim-3 {
      -webkit-animation: expand 3s linear 1s infinite;
    }

    @-webkit-keyframes expand {
      0% {
        top: calc(50% - .5em);
        left: calc(50% - .5em);
        width: 1em;
        height: 1em;
        border: white .1em solid;
        opacity: 1;
      }
      100% {
        top: calc(50% - 5.5em);
        left: calc(50% - 5.5em);
        width: 11em;
        height: 11em;
        border: white .2em solid;
        opacity: 0;
      }
    }