﻿/* Spinner */
.spinner-container {
    position: relative;
}

.spinner-overlay {
    z-index: 1100;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(58, 63, 65, 0.8);
    width: 100%;
    height: 100%;
    filter: alpha(opacity=0);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
}

.spinner-overlay-content {
    z-index: 1200;
    left: 0;
    top: 20%;
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.spinner-loader {
    padding-top: 80px;
    width: 100%;
    height: 250px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.spinner-message {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    text-align: center;
    padding: 10px;
    background-color: #fff !important;
    background-image: none;
    color: #555;
    -webkit-border-top-left-radius: 0;
    border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    border-top-right-radius: 0;
    width: 400px;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
}

.spinner-message-row {
    text-align: center;
    color: white;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spinner-message-row__title {
    font-size: 24px;
    line-height: 32px;
    padding-bottom: 8px;
}

.spinner-message-row__description {
    font-size: 16px;
    line-height: 24px;
}

.spinner .spinWrap {
    width: 200px;
    height: 100px;
}

.spinner .loader, .spinner .spinnerImage {
    height: 100px;
    width: 100px;
    position: absolute;
    top: 0;
    left: 50%;
    opacity: 1;
    filter: alpha(opacity=100);
}

.spinner .spinnerImage {
    margin-left: -52px;
    margin-top: 22px;
    font-size: 50px;
    color: #cbcbca;
}

.spinner .loader {
    margin: 0 0 0 -55px;
    background-color: transparent;
    -webkit-animation: rotation .7s infinite linear;
    animation: rotation .7s infinite linear;
    border-left: 5px solid #cbcbca;
    border-right: 5px solid #cbcbca;
    border-bottom: 5px solid #cbcbca;
    border-top: 5px solid #2380be;
    border-radius: 100%;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}
