﻿img.wp-smiley,img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 .07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}

/*Loader*/
#section-loading {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 999999;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    text-align: center;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #183029;

    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.loading-container {
    position: relative;
}

.loading-wrapper {
    text-align: center;
    width: 210px;
    display: table;
    margin: 0 auto;
    position: relative;
}

.loading-text {
    padding-left: 5px;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 10px;
}

#infinite-loader {
    width: 100%;
    height: 3px;
    bottom: -10px;
    display: block;
    overflow: hidden;
    position: absolute;
    background-color: white;
}

#infinite-loader .indeterminate:before {
    top: 0;
    left: 0;
    bottom: 0;
    content: "";
    position: absolute;
    background: #fc00ff;
    will-change: left, right;
    background: -webkit-gradient(linear,
        left top,
        right top,
        from(#47a23fbd),
        to(#47a23f));
    background: linear-gradient(to right, #47a23fbd, #47a23f);
    background: -webkit-linear-gradient(to right, #47a23fbd, #47a23f);
    animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
    -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}

#infinite-loader .indeterminate:after {
    top: 0;
    left: 0;
    bottom: 0;
    content: "";
    position: absolute;
    background: #fc00ff;
    will-change: left, right;
    background: -webkit-gradient(linear,
        left top,
        right top,
        from(#47a23fbd),
        to(#47a23f));
    background: linear-gradient(to right, #47a23fbd, #47a23f);
    background: -webkit-linear-gradient(to right, #47a23fbd, #47a23f);
    animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    animation-delay: 1.15s;
    -webkit-animation-delay: 1.15s;
}

@-webkit-keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%;
    }

    60% {
        left: 100%;
        right: -90%;
    }

    100% {
        left: 100%;
        right: -90%;
    }
}

@keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%;
    }

    60% {
        left: 100%;
        right: -90%;
    }

    100% {
        left: 100%;
        right: -90%;
    }
}

@-webkit-keyframes indeterminate-short {
    0% {
        left: -200%;
        right: 100%;
    }

    60% {
        left: 107%;
        right: -8%;
    }

    100% {
        left: 107%;
        right: -8%;
    }
}

@keyframes indeterminate-short {
    0% {
        left: -200%;
        right: 100%;
    }

    60% {
        left: 107%;
        right: -8%;
    }

    100% {
        left: 107%;
        right: -8%;
    }
}

/*Loader*/
.form-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 999999;
}

.form-loader-content {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}