@media screen and (max-width:575px){
    #scroll-top {
    visibility: visible !important;
    }
    }
    
    #scroll-top .fas {
        font-size: 22px;
    }
    
    .screen-reader-text {
        position: absolute;
        top:-9999em;
        left:-9999em;
    }
    
    /* Text meant only for screen readers. */
    .screen-reader-text {
      border: 0;
      clip: rect(1px, 1px, 1px, 1px);
      clip-path: inset(50%);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
      word-wrap: normal !important;
    }
    
    .screen-reader-text:focus {
      background-color: #eee;
      clip: auto !important;
      clip-path: none;
      color: #444;
      display: block;
      font-size: 1em;
      height: auto;
      left: 5px;
      line-height: normal;
      padding: 15px 23px 14px;
      text-decoration: none;
      top: 5px;
      width: auto;
      z-index: 50; /* Above WP toolbar. */
    }
    
    /*scroll to top*/
    #scroll-top{
      background:#252525;
      border:2px solid #252525;
      color:#fff;
      cursor:pointer;
      width:65px;
      height:65px;
      transition: opacity .5s;
      opacity: 0;
      position:fixed;
      bottom:60px;
      right:20px;
      z-index:50;
      -webkit-border-radius:0;
      -moz-border-radius:0;
      border-radius:0;
      font-size:20px;
      clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    }
    
    #scroll-top.fadein {
        opacity: 0.5;
    }