/* Индикатор загрузки для Ajax-запросов с помощью jQuery */
div#ajax-loading-tpu {
    background-image: url("../images/ajax/ajax-loader-tpu.gif");
    background-repeat: no-repeat;
    position: fixed;
    width: 64px;
    height: 64px;
    z-index: 999999;
}

/*-----------------------------------------------------------------*/

/* Модальное окно для вывода сообщения об ошибке при Ajax-запросе */

/* Подложка модального окна */
div.my-ajax-modal-cover {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    z-index: 999910;
}

div.my-ajax-modal-window {
    /* Скрыть модальное окно по умолчанию */
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    overflow-x: auto;
    overflow-y: scroll;
    padding: 20px;
    z-index: 999920;
}

/* Содержимое модального окна */
div.my-ajax-modal-content {
    width: 100%;
    min-width: 200px;
    position: relative;
    background-color: #FAFAFA;
    padding: 50px 0;
    z-index: 999930;
}

/*-----------------------------------------------------------------*/