﻿@scope(.simulador__publico){
/*
' ===================================@FICHEIRO=====================================
' @DESC    Folha de estilo para o calendario.
' @AUTOR   DAC
' @VERSAO  2.00 2024-09-02
' @NOVO    Apricação das regras da acessibilidade
' ===================================@FICHEIRO.====================================
*/

#calendario {
	background-color: rgb(255, 255, 255);
	width: 270px;
	left: 0;
	top: 0;
	position: absolute;
	visibility: hidden;
	display: block;
	z-index: 200;
}

.cal-shadow {
	padding: 5px; 
			border-radius: 5px;
	   -moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.22), 0 4px 8px rgba(0, 0, 0, 0.31);
}
.cal-header {
	border: none;
	text-align: center;
	padding: 0 0 2px 0;
}
.cal-icon {
	color: rgb(37, 103, 191); /*azul-3*/
	display: inline-block;
	cursor: pointer;
	font-size: 1.25em;
	text-decoration: none;
}
.cal-icon:hover {
	color: rgb(1, 33, 105); /*azul-4*/
}

/* --- */
.cal-Table {
	background-color: rgb(255, 255, 255);
	border: 0 solid rgb(220,220,220); 
	width: 100%;
}
.cal-Table2 {
	border: 1px solid rgb(220, 220, 220);
	border-collapse: collapse;
	width: 100%;
}
.cal-HeadCell {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}
.cal-TextBox {
	background-color: transparent; 
	color: rgb(37, 103, 191); /*azul-3*/
	font-size: 16px;
	font-weight: normal;
	vertical-align: top;
	border: none;
	cursor: pointer;
}
.cal-GreyDate {
	background-color: rgb(255, 255, 255);
	color: rgb(200, 200, 200);
	font-size: 16px;
	text-decoration: none;
	text-align: center;
}
.cal-GreyInvalidDate {
	background-color: rgb(255,255,255);
	color: rgb(255,255,255);
	text-decoration: line-through;
	text-align: center;
}
.cal-WECell {
	background-color: rgb(240, 240, 240);
	text-align: center;
}
.cal-DayCell {
	background-color: rgb(255, 255, 255);
	text-align: center;
}
.cal-DayCellMarc {
	background-color: rgb(160, 203, 250); /*azul-1*/
	text-align: center;
}

/* --- */
a.cal-DayLink {
	background-color: transparent;
	color: rgb(0, 0, 0);
	font-size: 16px;
	font-weight: normal;
	text-decoration: none;
	text-align: center;
	display: block;
	padding: 2px;
}
a.cal-DayLink:hover {
	background-color: rgb(51, 145, 255); /*azul-2*/
	color: rgb(255, 255, 255);
	font-weight: bold;
			border-radius: 5px;
	   -moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

a.cal-TodayLink {
	color: rgb(230, 50, 50); /*vermelho-2*/
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	display: block;
	padding: 2px;
}
a.cal-TodayLink:hover {
	background-color: rgb(51, 145, 255); /*azul-2*/
	color: rgb(250, 150, 150); /*vermelho-1*/
			border-radius: 5px;
	   -moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}}