﻿/* Spinner */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

      .social-icon {
        display: inline-block;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #0F5132;
        color: #fff;
        text-align: center;
        line-height: 38px;
        margin-right: 8px;
        text-decoration: none;
        font-size: 14px;
      }