@charset "UTF-8";

.myAlert {
	display: none;
	position: fixed;
	overflow: auto; /* Enable scroll if needed */
	background-color: rgba(0,0,0,0.4);
}

.myAlert-content {
	height: auto; 
	position: relative;
	background-color: #fefefe;
	margin: auto;
	align-items: center;
	justify-content: center;
}

.myAlert-header {
	background-color: var(--mainColor);
	display:flex;
	justify-content:space-between;
	align-items: center;
	color:white
}

.myAlert-title {
	color: black;
	font-weight: bold;
	font-family: 'COMIC';
}

.myAlert-close { 
	color: white;
	font-weight: bold;
 	font-family: 'SOLID';
}

.myAlert-close:hover {
	color: var(--lightColor);
	text-decoration: none;
	cursor: pointer;
}

.myAlert-close:focus {
	color: var(--lightColor);
	text-decoration: none;
	cursor: pointer;
}

.myAlert-body {
	height: auto; 
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	align-content: center;
}

.myAlert-footer {
	background-color: black;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: center;
	color:white
}

.myAlert-cancel {
    background-image: linear-gradient(var(--colorDarkRed), var(--colorRed), var(--colorDarkRed));
	font-weight: bold;
	cursor: pointer;
	color: var(--colorUltraDarkRed);
	font-family: 'COMIC';
}

.myAlert-accept {
	background-image: linear-gradient(var(--colorDarkGreen), var(--colorGreen), var(--colorDarkGreen));
	font-weight: bold;
	cursor: pointer;
	color: var(--colorUltraDarkGreen);
	font-family: 'COMIC';
}

.myAlert-info-title {
	font-weight: bold;
	font-family: 'COMIC';
	color: var(--darkColor);
	display: flex;
	justify-content: center;
	text-align: center;
}

.myAlert-info-subtitle {
	font-style: italic;
	font-weight: normal;
	font-family: 'COMIC';
	color: grey;
	display: flex;
	justify-content: center;
	text-align: center;
}

.myAlert-info-error {
	font-weight: bold;
	font-family: 'COMIC';
	color: darkred;
	display: flex;
	justify-content: center;
	text-align: center;
}

.myAlert-info-image {
	display: flex;
	align-content: center;
	justify-content: center;
}

.myAlert-info-description {
	font-style: italic;
	font-weight: normal;
	font-family: 'COMIC';
	color: grey;
	display: flex;
	justify-content: center;
	text-align: center;
}

.myAlert-row {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.myAlert-row-label {
	background-image: linear-gradient(#8e8e8eff, lightgrey, #8e8e8eff);
	color: black;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	font-family: 'COMIC';
	font-weight: bold;
}

.myAlert-row-input {
	border-top-color: darkgrey;
	border-right-color: lightgray;
	border-bottom-color: lightgray;
	border-left-color: darkgrey;
	border-style: inset;
	float: right;
	font-weight: normal;
	font-style: italic;
	font-family: 'COMIC';
	text-align: center;
	color: black;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
}

.myAlert-row-input {}

.myAlert-radios-container {
	border-top-color: darkgrey;
	border-right-color: lightgray;
	border-bottom-color: lightgray;
	border-left-color: darkgrey;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	align-content: space-between;
	justify-content: space-between;
	vertical-align: middle;
}

.myAlert-radios-container-centered {
	border-top-color: darkgrey;
	border-right-color: lightgray;
	border-bottom-color: lightgray;
	border-left-color: darkgrey;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	align-content: space-between;
	justify-content: center;
	vertical-align: middle;
}

.myAlert-radio-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.myAlert-radio-container-centered {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.myAlert-radio-button {

}

.myAlert-radio-label {
	font-family: 'COMIC';
}

.myAlert-radio-icon {

}

.myAlert-map {
	width: 100%;
	height: 200px;
	display: flex;
}

.myAlert-table {
	background-color: #F9F9FA;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: center;
	border-top-color: darkgrey;
	border-right-color: lightgray;
	border-bottom-color: lightgray;
	border-left-color: darkgrey;
	border-style: inset;
}

.myAlert-table-bycolumns {
	background-color: #F9F9FA;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	align-content: center;
	border-top-color: darkgrey;
	border-right-color: lightgray;
	border-bottom-color: lightgray;
	border-left-color: darkgrey;
	border-style: inset;
}

.myAlert-table-header {
	background-image: linear-gradient(#8e8e8eff, lightgrey, #8e8e8eff);
	color: black;
	font-family: 'COMIC';
	font-weight: bold;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	align-content: center;
}

.myAlert-table-header-data {
	color: black;
	font-family: 'COMIC';
	font-weight: bold;
}

.myAlert-table-column-start {
	display: flex;
	flex-direction: column;
	justify-content: start;
}

.myAlert-table-column-center {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.myAlert-table-column-end {
	display: flex;
	flex-direction: column;
	justify-content: end;
}

.myAlert-table-header-column-start {
	background-image: linear-gradient(#8e8e8eff, lightgrey, #8e8e8eff);
	color: black;
	font-family: 'COMIC';
	font-weight: bold;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.myAlert-table-header-column-center {
	background-image: linear-gradient(#8e8e8eff, lightgrey, #8e8e8eff);
	color: black;
	font-family: 'COMIC';
	font-weight: bold;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.myAlert-table-header-column-end {
	background-image: linear-gradient(#8e8e8eff, lightgrey, #8e8e8eff);
	color: black;
	font-family: 'COMIC';
	font-weight: bold;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.myAlert-table-column-data-start {
	color: black;
	font-family: 'COMIC';
	font-weight: normal;
	display: flex;
	justify-content: start;
}

.myAlert-table-column-data-center {
	color: black;
	font-family: 'COMIC';
	font-weight: normal;
	display: flex;
	justify-content: center;
}

.myAlert-table-column-data-end {
	color: black;
	font-family: 'COMIC';
	font-weight: normal;
	display: flex;
	justify-content: end;
}

.myAlert-table-row {
	color: black;
	font-family: 'COMIC';
	font-weight: normal;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	align-content: center;
}

.myAlert-table-row-data {
	color: black;
	font-family: 'COMIC';
	font-weight: normal;
}

.myAlert-info-line {
	font-style: normal;
	font-weight: normal;
	font-family: 'COMIC';
	color: black;
	text-align: justify;
}

@media only screen and (max-device-width: 640px) {
	
	.myAlert {
		width: 100%;
		z-index: 10; 
		background-color: rgba(0,0,0,0.4);
	}

	.myAlert-content {
		width: 95%;
		max-width: 1000px;
		max-height: 80%;
		border: 0px solid #888;
		border-radius: 1.5rem;
	
		box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
		z-index: 11; 
	}

	.myAlert-title {
		margin: 0px 0px 0px 0px;		
		font-size: 1.4rem;
	}

	.myAlert-close { 
		padding: 4px 4px 4px 4px;
		font-size: 1.2rem;
	}

	.myAlert-header {
		flex-shrink:0;
		padding: 16px 16px;
		border-bottom:1px solid #dee2e6;
		border-top-left-radius:calc(1.5rem - 1px);
		border-top-right-radius:calc(1.5rem - 1px);
	}

	.myAlert-body {
		padding: 16px 12px 16px 12px;
	}

	.myAlert-footer {
		flex-shrink:0;
		padding: 8px 16px 8px 8px;
		border-top:1px solid #dee2e6;
		border-bottom-right-radius:calc(1.5rem - 1px);
		border-bottom-left-radius:calc(1.5rem - 1px);
	}

	.myAlert-cancel {
		height: 2.3rem;
		margin: 0px 0px 0px 0px;
		padding: 0.3rem 1rem 0.3rem 1rem;
		border-radius: 1.5rem;
		border-width: 1px;
		font-size: 1rem;
		box-shadow: 0.1rem 0.1rem 0.1rem 0rem rgba(0, 0, 0, 0.3);
	}

	.myAlert-accept {
		height: 2.3rem;
		margin: 0px 0px 0px 0px;
		padding: 0.3rem 1rem 0.3rem 1rem;
		border-radius: 1.5rem;
		border-width: 1px;
		font-size: 1rem;
		box-shadow: 0.1rem 0.1rem 0.1rem 0rem rgba(0, 0, 0, 0.3);
	}
	
   	.myAlert-info-error {
		width: 100%;
		margin: 0rem 0rem 0.5rem 0rem;		
		font-size: 1.6rem;
	}

	.myAlert-info-title {
		width: 100%;
		margin: 0rem 0rem 0.5rem 0rem;		
		font-size: 1.6rem;
	}

	.myAlert-info-image {
		width: 12rem;
		height: 12rem;
		margin: 0rem 0rem 0rem 0rem;
		padding: 0rem 0rem 0rem 0rem;
	}
	
	.myAlert-info-description {
		width: 100%;
		margin: 0.5rem 0.5rem 0rem 0.5rem;	
		padding: 0rem 0.5rem 0rem 0.5rem;
		font-size: 1.2rem;
	}
	
	@-webkit-keyframes animatetop2 {
		from {top:-300px; opacity:0} 
		to {top:0; opacity:1}
	}

	@keyframes animatetop2 {
		from {top:-300px; opacity:0}
		to {top:0; opacity:1}
	}
}

@media only screen and (min-device-width: 640px) {
	
	.myAlert {
		width: 100%;
		height: 100%;
		z-index: 100; 
		background-color: rgba(0,0,0,0.4);
	}

	.myAlert-content {
		width: 95%;
		max-width: 800px;
		height: auto;
		border: 0px solid #888;
		border-radius: 1.5rem;
	
		box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
		-webkit-animation-name: animatetop2;
		-webkit-animation-duration: 0.4s;
		animation-name: animatetop2;
		z-index: 110; 
	}

	.myAlert-title {
		margin: 0px 0px 0px 0px;		
		font-size: 1.4rem;
	}

	.myAlert-close { 
		padding: 4px 4px 4px 4px;
		font-size: 1.3rem;
	}

	.myAlert-header {
		flex-shrink:0;
		padding: 16px 16px;
		border-bottom:1px solid #dee2e6;
		border-top-left-radius:calc(1.5rem - 1px);
		border-top-right-radius:calc(1.5rem - 1px);
	}

	.myAlert-body {
		padding: 16px 12px 24px 12px;
	}

	.myAlert-footer {
		flex-shrink:0;
		padding: 8px 16px 8px 8px;
		border-top:1px solid #dee2e6;
		border-bottom-right-radius:calc(1.5rem - 1px);
		border-bottom-left-radius:calc(1.5rem - 1px);
	}

	.myAlert-cancel {
		margin: 0px 0px 0px 0px;
		padding: 0.1rem 1.2rem 0.3rem 1.2rem;
		border-radius: 1.5rem;
		border-width: 1px;
		font-size: 1.1rem;
		box-shadow: 0.1rem 0.1rem 0.1rem 0rem rgba(0, 0, 0, 0.3);
	}

	.myAlert-accept {
		margin: 0px 0px 0px 0px;
		padding: 0.2rem 1.2rem 0.2rem 1.2rem;
		border-radius: 1.5rem;
		border-width: 1px;
		font-size: 1.1rem;
		box-shadow: 0.1rem 0.1rem 0.1rem 0rem rgba(0, 0, 0, 0.3);
	}
	
	.myAlert-info-error {
		width: 100%;
		margin: 0rem 0rem 0.5rem 0rem;		
		font-size: 1.6rem;
	}

	.myAlert-info-title {
		width: 100%;
		margin: 0rem 0rem 0.5rem 0rem;		
		font-size: 1.6rem;
	}

	.myAlert-info-subtitle {
		width: 100%;
		margin: 1.5rem 0.5rem 0rem 0.5rem;
		padding: 0rem 0.5rem 0rem 0.5rem;
		font-size: 1.2rem;
	}

	.myAlert-info-image {
		width: 12rem;
		height: 12rem;
		margin: 0rem 0rem 0rem 0rem;
		padding: 0rem 0rem 0rem 0rem;
	}
	
	.myAlert-info-description {
		width: 100%;
		margin: 0.5rem 0.5rem 0rem 0.5rem;	
		padding: 0rem 0.5rem 0rem 0.5rem;
		font-size: 1.2rem;
	}

	.myAlert-row {
		width: 80%;
		height: auto;
		margin: 0.5rem 0rem 0.5rem 0rem;
	}

	.myAlert-row-label {
		width: 30%;
		height: 32px;
		margin: 0rem 0rem 0rem 0rem;
		padding: 0rem 1rem 0rem 1rem;
		border-top-left-radius: 1rem;
		border-bottom-left-radius: 1rem;
		font-size: 1rem;
	}

	.myAlert-row-input {
		width: 70%;
		height: 32px;
		margin: 0rem 0rem 0rem 0rem;
		padding: 0rem 1rem 0rem 1rem;
		border-radius: 0rem 1rem 1rem 0rem;
		border-width: var(--borderWidthPc);
		font-size: 1.2rem;
	}

	.myAlert-radios-container {
		width: 80%;
		margin: 0.5rem 0rem 0.5rem 0rem;
		padding: 0rem 0rem 0rem 0rem;
		border-width: var(--borderWidthPc);
		border-top-right-radius: 1rem;
		border-bottom-right-radius: 1rem;
	}

	.myAlert-radios-container-centered {
		width: 80%;
		margin: 0.5rem 0rem 0.5rem 0rem;
		padding: 0rem 0rem 0rem 0rem;
		border-width: var(--borderWidthPc);
		border-top-right-radius: 1rem;
		border-bottom-right-radius: 1rem;
	}

	.myAlert-radio-container {
		margin: 0rem 0rem 0rem 0rem;
		padding: 0rem 0rem 0rem 0rem;
	}

	.myAlert-radio-container-centered {
		margin: 0rem 1.5rem 0rem 1.5rem;
		padding: 0rem 0rem 0rem 0rem;
	}

	.myAlert-radio-button {
		margin: 0rem 0rem 0rem 0rem;
		padding: 0rem 0rem 0rem 0rem;
	}

	.myAlert-radio-label {
		margin: 0rem 0rem 0rem 0.3rem;
		padding: 0rem 0rem 0rem 0rem;
		font-size: 1rem;
	}

	.myAlert-radio-icon {
		width: auto;
		height: 1rem;
		margin: 0rem 0rem 0rem 0.2rem;
	}

	.myAlert-table {
		width: 80%;
		height: auto;
		margin: 0.5rem 0rem 1rem 0rem;
		padding: 0rem 0rem 0.7rem 0rem;
		border-radius: 1rem;
		border-width: var(--borderWidthPhone);
	}

	.myAlert-table-bycolumns {
		width: 80%;
		height: auto;
		margin: 0.5rem 0rem 1rem 0rem;
		padding: 0rem 0rem 0.7rem 0rem;
		border-radius: 1rem;
		border-width: var(--borderWidthPhone);
	}

	.myAlert-table-header {
		width: 100%;
		height: auto;
		padding: 0.5rem 1.5rem 0.5rem 1.5rem;
		border-top-left-radius: 1rem;
		border-top-right-radius: 1rem;
	}

	.myAlert-table-header-data {
		width: auto;
		height: auto;
		margin: 0rem 0rem 0rem 0rem;
		padding: 0rem 0rem 0rem 0rem;
		font-size: 1rem;
	}

	.myAlert-table-column-start {
		width: 200%;
		height: auto;
		padding: 0rem 0rem 0rem 0rem;
	}

	.myAlert-table-column-center {
		width: 100%;
		height: auto;
		padding: 0rem 0rem 0rem 0rem;
	}

	.myAlert-table-column-end {
		width: 100%;
		height: auto;
		padding: 0rem 0rem 0rem 0rem;
	}

	.myAlert-table-header-column-start {
		width: 100%;
		height: auto;
		padding: 0.5rem 0rem 0.5rem 0rem;
		border-top-left-radius: 1rem;
		font-size: 1.2rem;
	}

	.myAlert-table-header-column-center {
		width: 100%;
		height: auto;
		padding: 0.5rem 0rem 0.5rem 0rem;
		font-size: 1.2rem;
	}

	.myAlert-table-header-column-end {
		width: 100%;
		height: auto;
		padding: 0.5rem 0rem 0.5rem 0rem;
		border-top-right-radius: 1rem;
		font-size: 1.2rem;
	}

	.myAlert-table-column-data-start {
		width: auto;
		height: auto;
		margin: 0.3rem 0rem 0.3rem 0.5rem;
		padding: 0rem 0rem 0rem 0rem;
		font-size: 1.2rem;
	}

	.myAlert-table-column-data-center {
		width: auto;
		height: auto;
		margin: 0.3rem 0rem 0.3rem 0rem;
		padding: 0rem 0rem 0rem 0rem;
		font-size: 1.2rem;
	}

	.myAlert-table-column-data-end {
		width: auto;
		height: auto;
		margin: 0.3rem 0.5rem 0.3rem 0rem;
		padding: 0rem 0rem 0rem 0rem;
		font-size: 1.2rem;
	}

	.myAlert-table-row {
		width: 100%;
		height: auto;
		padding: 0.5rem 1.5rem 0rem 1.5rem;
	}

	.myAlert-table-row-data {
		width: auto;
		height: auto;
		margin: 0rem 0rem 0rem 0rem;
		padding: 0rem 0rem 0rem 0rem;
		font-size: 1.2rem;
	}

	.myAlert-info-line {
		width: 100%;
		margin: 1rem 0rem 0rem 0rem;
		padding: 0rem 5rem 0rem 5rem;
		font-size: 1.2rem;
	}

	@-webkit-keyframes animatetop2 {
		from {top:-300px; opacity:0} 
		to {top:0; opacity:1}
	}

	@keyframes animatetop2 {
		from {top:-300px; opacity:0}
		to {top:0; opacity:1}
	}
}

