@import url('font-awesome.min.css');


* {
	touch-action: pan-x pan-y;
}


body {
	padding-top: 4.5rem;
	background-color: #adb5bd;
}


/**************************
*:not(.form-control):not(.form-select):not(.form-select) {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
*/


/***************************/
body.modal-open {
  /* height: 100vh; */
  position: fixed;
  overflow-y: hidden;
}


/*
main.container {
    display: block;
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    top: 55px;
    padding: 15px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
*/


/***************************/
body.login:before {
	content: "";
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -10;
	background: url(/img/bg_sign_1.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
@media (max-width: 768px) {
	body.login:before {
		background: url(/img/bg_sign_1.jpg);
	}
}



/***************************/
.footerCookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}
.footerCookie .content {
    display: none;
}


/***************************/
select, textarea, input, a, a:active, a:focus, button, button:focus, button:active, .btn, .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn.focus:active, .btn.active.focus {
    outline: none !important;
	box-shadow: none !important;
}
input::-moz-focus-inner {
    border: 0 !important;
}



/***************************/
.loaderBody {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 2000;
    background-color: rgba(0,0,0,0.5);
    display: none;
}
.loaderBody .spinner {
	margin-left: auto;
	margin-right: auto;
	margin-top: 50vh;
	margin-bottom: auto;

	border: 5px solid #f3f3f3;
	border-top: 5px solid #555;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	-webkit-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}


/***************************/
.alertSlider {
	display: none;
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2001;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    border-radius: 4px;
    min-width: 150px;
	max-width: 50%;
}


/***************************/
.underline {
	text-decoration: underline;
}
.overline {
	text-decoration: overline;
}