﻿@font-face {
    font-family: 'Core-icons';
    src: url('Fonts/Core-icons.eot');
    src: url('Fonts/Core-icons.svg#Core-icons') format('svg'), url('Fonts/Core-icons.eot?#iefix') format('embedded-opentype'), url('Fonts/Core-icons.woff') format('woff'), url('Fonts/Core-icons.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
#overlay {background: #666666; position: absolute; top: 0; left: 0; width: 100%; height: 100%;z-index: 42100; }
.loader {
    background-color: #a31726;
    display: block;
    color: #fff;
    padding: 16px 40px;
    z-index: 42100;
    cursor: pointer;  
}
.loader-text {
    padding-left: 8px;
    vertical-align: middle;
}
.icon-spinner:before {
    content: "\e61a";
}
.loader-icon {
    display: inline-block;
    font-family: "Core-icons";
    font-size: 24px;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    height: 24px;
    padding: 4px;
    width: 24px;
    vertical-align: middle;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.spinning {
    display: inline-block;
    -webkit-animation: spin 1.2s infinite linear;
    animation: spin 1.2s infinite linear;
}
