﻿body {
  padding-top: 50px;
}
.starter-template {
  padding: 40px 15px;
  text-align: center;
}

.row{
  
	border-radius:10px;
}

.col-md-8{
    margin-bottom: 15px;
}

.col-md-3{
    margin-bottom: 15px;
}

.btn {
	/*margin-top: 5px; */
}

.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.box {
	background-color: #f0f0f5;
/*	height: 100%; 
	overflow: auto;
	*/
	border-radius:10px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 10px;

}
.form-horizontal{
	padding-left: 10px;
}

.myFont1Class {
	-webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    font-weight:normal;
    line-height:100%;
}

.myFont2Class {
	-webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    font-weight:bold;
    line-height:100%;
}

.myFont3Class {
	-webkit-transform: scaleY(2);
    -moz-transform: scaleY(2);
    font-weight:normal;
    line-height:200%;
}

.myFont4Class {
	-webkit-transform: scaleY(2);
    -moz-transform: scaleY(2);
   	font-weight:bold;
	line-height:200%;
}

#documentsWindow {
	font-family:"Courier New", Courier, monospace;
	margin-top:20px;
	border-radius: 10px;
	border-color:#f0f0f5;
	border-style:solid;
	padding: 10px;
	height:500px;
    overflow:scroll;
    overflow-x:hidden;
}

/* 06/04/2021 Philip Barnett. Versione 4.00. Aggiunto white-space: nowrap */
th {
	text-align: center;
    white-space: nowrap;
}

@keyframes spinner {
  to {transform: rotate(360deg);}
}
 
.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 75%;
  left: 35%;
  width: 40px;
  height: 40px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 4px solid #ccc;
  border-top-color: #333;
  animation: spinner .6s linear infinite;
}

/* 07/05/2021 Philip Barnett. Versione 4.20. Aggiunto per evitare che la visualizzazione dei file di esito lotteria blocca lo scroll quando si ritorna al modal con la lista dei codici lotteria */
.modal {
	overflow-y:auto;
}