﻿@charset "utf-8";
/*
 * ==========================================================================
 *
 * webTicket.css
 *
 * ==========================================================================
 */
.nonDisp {
    display: none;
}

.ui-autocomplete {
    z-index: 215000000 !important;
}

.block {
    display: block;
}

a.tab_title {
    text-decoration: none; 
}
/**
 * ---------------------------------------------------
 * PageLoading
 * ---------------------------------------------------
 */
#PageLoading {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    background-color: rgba(255, 255, 255, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.spinner {
    /*position: fixed;*/
    /*position: relative;*/
    position: absolute;
    top: 40%;
    left: 50%;
    margin: 0;
    margin-left: -46.875%;
    z-index: 2100;
}
.loaded {
    opacity: 0;
    visibility: hidden;
}

/**
 ****************************************************
 *
 * screens smaller than 992
 *
 ****************************************************
 */
@media all and (max-width: 991px) {
	/**
	 * spinner
	 */
	.spinner {
		width: 50px;
		margin-left: -10%;
	}
}
/**
 ****************************************************
 *
 * screens larger than 991
 *
 ****************************************************
 */
@media all and (min-width: 992px) {
    /**
	 * spinner
	 */
    .spinner {
        width: 50px;
        margin-left: -40px;
    }
}