/* ===== FAIL SAFE TECHNOLOGIES  MAIN STYLE SHEET ===== */
* {
	box-sizing: border-box;
    transform-origin: 0 0;
    font-family:sans;
}

.row::after {
	content: "";
	clear: both;
	display: table;
}

.row .content {
    border-top:1px solid #999;
    border-bottom:2px dashed #999;
}

.row .content > strong {
    color: #555;
    text-align:center;
    border-bottom:2px dashed #555;
    font-size:2.5em;
    background-color:#ddd;
}


[class*="col-"] {
	float: left;
	padding: 5px;
}

[id*="panel-settings-"] {
    color:#777;
    font-size:.9em;
    vertical-align:middle;
    float:right;
}

[id*="panel-settings-"]:hover {
    color:#ca1818;
    border:2px dashed blue;
}

.flex-container {
	display: flex;
	flex-wrap: wrap;
	border-radius: 25px;
	justify-content: space-around;
	/*background-image: -webkit-radial-gradient(bottom right, #290505, #ca1818 65%, #290505)*/
}

.flex-container > div {
	background-color: rgba(26,26,26,0.95);
	border-radius: 20px;
	color:#ffffff;
	width: 512px;
	margin: 10px;
    padding: 10px;
	text-align: center;
	font-size: 1.25em;
	transition: all 1.25s ease-in-out;
}
	
.flex-container * { /* Apply to all elements within flex-container */
	cursor:pointer;
	font-size:0.95em;
}

.flex-container > div:hover {
	background-color: rgba(0,0,0,1);
	color:#ffffff;
	box-sizing: border-box;
	border:2px dashed lime;
	box-shadow: 5px 5px 1.5px rgba(187,187,187,0.25);
	/* transform: scale(1.15); */
}

.flex-container > div > strong {
    color:#fffdd0;
    border-bottom: 1px dashed #fffdd0;
}

.flex-icon {
    color:#fff;
    font-size:2.25em;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}

.flex-icon:hover {
	color:#ff9800;
	box-sizing: border-box;
    padding: 2px;
	border:1px solid #ff9800;
}

.flex-containerCSBDash {
	display: flex;
	flex-wrap: wrap;
	border-radius: 25px;
	justify-content: space-around;
	/*background-image: -webkit-radial-gradient(bottom right, #290505, #ca1818 65%, #290505)*/
}

.flex-containerCSBDash > div {
	background-color: #fff;
	border-radius: 20px;
	color:#00223f;
	width: 108px;
	margin: 10px;
    padding:4px;
	text-align: center;
	font-size: 0.85em;
	transition: all 1.25s ease-in-out;
    border-style:solid;
    border-width:2px;
    border-color: #00223f;
}
	
.flex-containerCSBDash * { /* Apply to all elements within flex-container */
	cursor:pointer;
	font-size:0.95em;
}

.flex-containerCSBDash i { /* Apply to all i elements within flex-container */
	color:inherit;
    font-size:3.5em;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}

.flex-containerCSBDash > div:hover {
	background-color: #00223f;
	color:#ffffff;
	box-sizing: border-box;
	border:2px solid #F9C784;
	box-shadow: 5px 5px 1.5px rgba(187,187,187,0.25);
	/* transform: scale(1.15); */
}

html {
	font-family: "Arial", "Lucida Sans", sans-serif;
}

body {
    margin:0;
    background: #eee;
}

main {
    margin: 136px 0 120px 0;
}

.aside {
	background-color: #002f0c;
	padding: 15px;
	color: #ffffff;
	text-align: center;
	font-size: 0.8em;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.ContentSec {
	padding:10px;
	background-color:#ffffff;
	min-height: 50%;
    width:85%;
    margin:64px 7.5%;
    overflow: auto;
  	border: solid 3px #a66156;
    border-top-left-radius:18px;
    border-bottom-right-radius:18px;
    box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.5);
}

/* For mobile phones: */
[class*="col-"] {
	width: 100%;
}

@media only screen and (min-width: 600px) {
	/* For tablets: */
	.col-s-1 {width: 8.33%;}
	.col-s-2 {width: 16.66%;}
	.col-s-3 {width: 25%;}
	.col-s-4 {width: 33.33%;}
	.col-s-5 {width: 41.66%;}
	.col-s-6 {width: 50%;}
	.col-s-7 {width: 58.33%;}
	.col-s-8 {width: 66.66%;}
	.col-s-9 {width: 75%;}
	.col-s-10 {width: 83.33%;}
	.col-s-11 {width: 91.66%;}
	.col-s-12 {width: 100%;}
}
@media only screen and (min-width: 768px) {
	/* For desktop: */
	.col-1 {width: 8.33%;}
	.col-2 {width: 16.66%;}
	.col-3 {width: 25%;}
	.col-4 {width: 33.33%;}
	.col-5 {width: 41.66%;}
	.col-6 {width: 50%;}
	.col-7 {width: 58.33%;}
	.col-8 {width: 66.66%;}
	.col-9 {width: 75%;}
	.col-10 {width: 83.33%;}
	.col-11 {width: 91.66%;}
	.col-12 {width: 100%;}
}

.btn {
	all:unset;
	background-color: #4CAF50; /* Green */
	border: none;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 0.7em;
	margin: 4px 2px;
	transition-duration: 0.4s;
	cursor: pointer;
	font-weight:bold;
	border-radius:10px;
}
		
.btn:hover {
    all:unset;
    background-color: white;
    color: #4CAF50;
    border: 2px solid #4CAF50;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 0.7em;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    font-weight:bold;
}
		
.btn-danger {background-color: #f44336;} /* Red */ 
		
.btn-danger:hover {
    all:unset;
    background-color: white;
    color: #ca1818;
    border: 2px solid #ca1818;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 0.7em;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    font-weight:bold;
}
		
.btn-info {background-color: #0b7dda;} /* Blue */ 
		
.btn-info:hover {
    all:unset;
    background-color: white;
    color: #0b7dda;
    border: 2px solid #0b7dda;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 0.7em;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    font-weight:bold;
}

.btn-warning {background-color: #ff9800;} /* Orange */
.btn-warning:hover {
    all:unset;
    background-color: white;
    color: #ff9800;
    border: 2px solid #ff9800;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 0.7em;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    font-weight:bold;
}

.alert {
	border: 3px solid #000000;
	padding:8px;
	margin:4px;
	background:rgba(0,0,0,0.35);
	font-weight:bold;
	font-size:1.5em;
	color:#000000;
	text-align:center;
	vertical-align:middle;
}

.alert-success {
	border: 3px solid #006009;
	background:rgba(208,255,212,0.95);
}

.alert-danger {
	border: 3px solid #ca1818;
	background:rgba(255,235,233,0.95);
}

.alert-warning {
	border: 3px solid #eed202 ;
	background:rgba(249,252,156,0.95);
}
