.page-preloader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1002;
    background-color: #fff;
}

.page-preloader-content-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

@-webkit-keyframes spinner-logo {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    50% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes spinner-logo {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    50% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.spinner-logo {
    display: inline-block;
    width: 15rem;
    vertical-align: text-bottom;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: spinner-grow 2s linear infinite;
    animation: spinner-grow 2s linear infinite;
}

.bg-logo{
    background: #f4f4f4;
}

.text-blue{
    color: #377dff!important;
}

.container-rs {
    position: fixed;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 100;
    padding-top: 80px;
}
.trigger {
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: color 0.2s, border 0.2s;
}
.trigger a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trigger a:hover {
    color: #21325b ;
}
.trigger i {
    font-size: 18px;
    line-height: 50px;
}
.trigger:hover {
    background: aliceblue;
}
.trigger.share-btn i {
    margin: 0 5px 0 0;
}
.share-window {
    overflow: hidden;
}
@media only screen and (max-width: 600px) {
    .share-window {
        display: none;
    }
}
.share-bar {
    position: relative;
    width: 102px;
    height: 50px;
    transition: width 0.4s ease 0.2s;
}
.share-bar:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #21325b ;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.share-bar:hover {
    width: 247px;
    transition: width 0.4s ease;
}
.share-bar:hover .trigger:nth-child(3) {
    left: 82px;
    transition: left 0.45s ease 0.06s, color 0.2s, border 0.2s;
}
.share-bar:hover .trigger:nth-child(4) {
    left: 123px;
    transition: left 0.45s ease 0.12s, color 0.2s, border 0.2s;
}
.share-bar:hover .trigger:nth-child(5) {
    left: 164px;
    transition: left 0.45s ease 0.18s, color 0.2s, border 0.2s;
}
.share-bar:hover .trigger:nth-child(6) {
    left: 205px;
    transition: left 0.45s ease 0.24s, color 0.2s, border 0.2s;
}
.share-bar .trigger {
    position: absolute;
    top: 0;
    width: 42px;
    transition: left 0s ease 0.45s, color 0.2s, border 0.2s;
}
.share-bar .trigger:nth-child(1) {
    left: 0;
}
.share-bar .trigger:nth-child(2) {
    left: 41px;
}
.share-bar .trigger:nth-child(3) {
    left: 102px;
}
.share-bar .trigger:nth-child(4) {
    left: 143px;
}
.share-bar .trigger:nth-child(5) {
    left: 184px;
}
.share-bar .trigger:nth-child(6) {
    left: 225px;
}