@import url( "globals.css" );
@import url( "colors.css" );
@import url( "fonts.css" );
@import url( "forms.css" );
@import url( "elements.css" );
@import url( "widgets.css" );
@import url( "structure.css" );
@import url( "section-homepage.css" );
@import url( "section-status-pages.css" );
@import url( "section-clipboard.css" );
@import url( "section-domains.css" );
@import url( "section-services.css" );
@import url( "section-settings.css" );


.status-page-badge{
}
	.status-page-badge img{
		float: left;
		margin-right: 8px;
		width: 54px;
		height: 54px;
	}

	.status-page-badge span{
		display: block;
		width: 100%;
	}

	.status-page-badge span.name{
		font-weight: bold;
	}


/*=== Structure ==============================================================*/
	body > header .btn.anti{
		margin-top: 12px;
		margin-left: -96px;
		border: 1px solid var( --dark-grey );
		height: 40px;
		color: var( --almost-white );
	}

		body > header ul.menu.h li{
			padding: 0 25px;
		}
			body > header ul.menu.h li.active-path a{
				color: var(--link-active);
			}

	body > header nav.user{
		display: flex;
		position: relative;
		width: 60px;
	}
		body > header nav i.fa{
			padding-right: 5px;
		}

		body > header ul.menu.user{
		}
			body > header ul.menu.h.user li{
				padding: 0 10px;
			}

		body > header nav .profile-img{
			margin: 10px 0 0 10px;
			border: 2px solid #DEDEDE;
			width: 40px;
			height: 40px;
			vertical-align: top;
			cursor: pointer;
		}

	#user-menu{
		position: absolute;
		top: 64px;
		right: 20px;
		border: 1px solid #333333;
		border-radius: 8px;
		background-color: white;
		padding: 0 0 8px;
		width: 270px;
		color: var( --main-black );
		text-align: center;
		overflow: hidden;
		z-index: 10;
	}
		#user-menu header{
			position: relative;
			margin-bottom: 40px;
			background-color: var( --primary-color );
			height: 70px;
		}
			#user-menu .profile-img{
				position: absolute;
				bottom: -30px;
				left: 50%;
				margin-left: -30px;
				width: 60px;
				height: 60px;
			}

		#user-menu span{
			display: block;
			padding: 8px 0;
			height: 30px;
			line-height: 14px;
			font-size: 1.4rem;
		}

		#user-menu .username{
			font-size: 2.1rem;
		}

		#user-menu ul{
			margin-top: 5px;
			border-top: 1px solid #666666;
			text-align: left;
			font-size: 1.6rem;
		}
			#user-menu li{
				height: 42px;
				line-height: 16px;
			}
				#user-menu li:before{
					content: "";
				}

				#user-menu li:hover{
					background-color: #EFEFEF;
				}

				#user-menu a{
					display: block;
					padding: 13px 10px;
					color: var( --main-black );
				}

	main > header{
	}
		main nav.sub ul{
			justify-content: center;
			font-size: 2.0rem;
			font-weight: 600;
		}
			main nav.sub ul.menu.h li{
				padding: 0 25px;
			}
				main nav.sub ul.menu.h li.active-path{
					border-bottom: 2px solid var(--purple);
				}

				main nav.sub ul a{
					color: var( --dark-grey );
				}

	footer .sidebar{
		padding: 0px 20px
	}

	footer .the-rest{
		padding: 0px 30px;
		width: 100%;
	}


.tooltip{
	position: relative;
	font-size: smaller;
}
	.tooltip::before{
		display: none;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 100%;
		margin-left: 15px;
		border-radius: 8px;
		background-color: black;
		padding: 10px;
		width: 200px;
		color: white;
		content: attr(data-text);
		text-align: center;
	}
	
	.tooltip::after{
		display: none;
		position: absolute;
		left: 100%;
		top: 50%;
		transform: translateY(-50%);
		margin-left: -5px;
		border: 10px solid black;
		border-color: transparent black transparent transparent;
		content: "";
	}
		.tooltip:hover:before,
		.tooltip:hover:after{
			display: block;
		}

table.design-1{
	margin: 0 auto;
	border-radius: 10px;
	background-color: #ffffff;
	width: 100%;
	border-collapse:separate;
}
	table.design-1 tr th:first-child{
		border-top-left-radius: 10px;
	}

	table.design-1 tr th:last-child{
		border-top-right-radius: 10px;
	}

	table.design-1 th, table.design-1 td{
		border-bottom: 1px solid #f4f6f7;
	}

	table.design-1 th{
		background-color: #f9fbfd;
		height: 55px;
		line-height: 55px;
	}

	table.design-1 td{
		height: 75px;
	}
		table.design-1 td:first-child{
			padding-left: 20px;
		}

		table.design-1 td:last-child{
			padding-right: 20px;
		}

		table.design-1 td.col-number{
			text-align: center;
		}

	table.design-1 a:visited{
		color: var(--main-black);
	}

		.widget span.number{
			font-size: 4.0rem;
		}

		.widget span.label{
			font-size: 2.0rem;
		}


	.impact-badge.Operational .status-circle{
		background-color: var( --status-operational );
	}

	.impact-badge.Under.Maintenance .status-circle{
		background-color: var( --status-maintenance );
	}

	.impact-badge.Degraded.Performance .status-circle{
		background-color: var( --status-degraded );
	}

	.impact-badge.Minor.Outage .status-circle{
		background-color: var( --status-minor );
	}

	.impact-badge.Major.Outage .status-circle{
		background-color: var( --status-major );
	}

.status-badge{
}

.modal-container{
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba( 0, 0, 0, 0.75);
	width: 100vw;
	height: 100vh;
}
	.modal-container .modal{
		background-color: white;
		padding: 40px 50px;
		width: 40%;
		min-width: 300px;
		min-height: 220px;
	}
		.modal-container .modal h3{
			margin-top: 0;
			font-size: 3.0rem;
		}

		.modal-container .modal p{
			font-size: 2.0rem;
		}
/*=== End Elements ===========================================================*/


/*=== Classes ================================================================*/

.card{
	border-radius: 10px;
	background-color: white;
	padding: 10px 20px;
	color: black;
}
	.card a{
		color: black;
	}

	.card.styled{
		border-left: 20px solid #DEDEDE;
	}
		.card.styled h3{
			margin: 6px 0 10px;
			font-size: 1.9rem;
		}

		.card.styled td:first-child{
			padding-right: 20px;
		}

/*===== End Classes ==========================================================*/

/*=== Sections ===============================================================*/
/* dashboard */
#section-dashboard header{
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
	font-size: 1.8rem;
	line-height: 27px;
}
	#section-dashboard header > div{
		width: 30%;
	}

	#section-dashboard .status-badge{
		text-align: center;
		font-size: larger;
	}
		#section-dashboard .status-badge .status.Operational{
			color: var( --status-operational );
		}

		#section-dashboard .status-badge .status.Degraded{
			color: var( --status-degraded );
		}

		#section-dashboard .status-badge .status.Minor.Outage{
			color: var( --status-minor );
		}

		#section-dashboard .status-badge .status.Major.Outage{
			color: var( --status-major );
		}

	#section-dashboard .incident-badge{
		text-align: right;
	}

	#section-dashboard .widget{
		display: flex;
		flex-direction: column;
		justify-content: center;
		border-radius: 12px;
		padding: 20px 40px;
		height: 180px;
	}
		#section-dashboard .widget span{
		}
			#section-dashboard .widget span.number{
				font-size: 4.0rem;
			}

			#section-dashboard .widget span.label{
				font-size: 2.0rem;
			}

#section-dashboard form #subdomain{
	width: 45%;
}

/* monitors */
#section-monitors .widget{
	padding: 20px;
	text-align: left;
}
	#section-monitors .widget:hover .context-menu-btn{
		visibility: visible;
	}

	#section-monitors .widget header{
		position: relative;
		display: flex;
		justify-content: space-between;
		line-height: 40px;
	}
		#section-monitors .widget img{
			width: 40px;
			height: 40px;
		}

		#section-monitors .widget header h2{
			flex-grow: 1;
			margin: 0;
			padding: 0 10px;
		}

		#section-monitors .widget header .context-menu-btn{
			visibility: hidden;
			margin-left: 8px;
			border-radius: 12%;
			width: 32px;
			height: 32px;
			text-align: center;
			line-height: 32px;
			font-size: 1.9rem;
			cursor: pointer;
		}
			#section-monitors .widget header .context-menu-btn[aria-expanded="false"]:hover{
				background-color: #dedede;
			}

			#section-monitors .widget header [aria-expanded="true"]{
				background-color: var( --primary-color );
				visibility: visible;
				border-bottom-left-radius: 0;
				border-bottom-right-radius: 0;
				color: white;
			}

		#section-monitors .widget header .context-menu{
			position: absolute;
			top: 32px;
			right: 0px;
			background-color: var( --primary-color );
			padding-left: 12px;
			width: 120px;
			height: 42px;
			list-style: none;
			color: white;
		}
			#section-monitors .widget header .context-menu:hover{
				background-color: #105e2f;
			}

	#section-monitors .widget .status-badges{
		display: flex;
		justify-content: space-evenly;
	}
		#section-monitors .widget.disabled .status-circle{
			background-color: grey;
		}

/* services */
	#section-services .widget:hover .context-menu-btn{
		visibility: visible;
	}

	#section-services .widget header{
		position: relative;
		display: flex;
		justify-content: space-between;
		line-height: 40px;
	}
		#section-services .widget img{
			width: 40px;
			height: 40px;
		}

		#section-services .widget header h2{
			flex-grow: 1;
			margin: 0;
			padding: 0 10px;
		}

		#section-services .widget header .context-menu-btn{
			visibility: hidden;
			margin-left: 8px;
			border-radius: 12%;
			width: 32px;
			height: 32px;
			text-align: center;
			line-height: 32px;
			font-size: 1.9rem;
			cursor: pointer;
		}
			#section-services .widget header .context-menu-btn[aria-expanded="false"]:hover{
				background-color: #dedede;
			}

			#section-services .widget header [aria-expanded="true"]{
				background-color: var( --primary-color );
				visibility: visible;
				border-bottom-left-radius: 0;
				border-bottom-right-radius: 0;
				color: white;
			}

		#section-services .widget header .context-menu{
			position: absolute;
			top: 32px;
			right: 0px;
			background-color: var( --primary-color );
			padding-left: 12px;
			width: 120px;
			height: 42px;
			list-style: none;
			color: white;
		}
			#section-services .widget header .context-menu:hover{
				background-color: #105e2f;
			}

/*============================================================================*/



.heart-switch {
	 --duration: 0.45s;
	 --stroke: #d1d6ee;
	 --stroke-active: #ec4472;
	 --fill: #dedede;
	 --fill-active: #ec638e;
	 --shadow: rgba(0, 9, 61, .25);
	 cursor: pointer;
	 position: relative;
	 transform: scale(var(--s, 1)) translateZ(0);
	 transition: transform 0.2s;
	 -webkit-tap-highlight-color: transparent;
}
 .heart-switch:active {
	 --s: 0.95;
}
 .heart-switch input {
	 -webkit-appearance: none;
	 -moz-appearance: none;
	 position: absolute;
	 outline: none;
	 border: none;
	 pointer-events: none;
	 z-index: 1;
	 margin: 0;
	 padding: 0;
	 left: 1px;
	 top: 1px;
	 width: 18px;
	 height: 18px;
	 border-radius: 50%;
	 background: #fff;
	 box-shadow: 0 1px 3px 0 var(--shadow);
}
 .heart-switch input + svg {
	 width: 36px;
	 height: 25px;
	 fill: var(--fill);
	 stroke: var(--stroke);
	 stroke-width: 1px;
	 stroke-linejoin: round;
	 display: block;
	 transition: stroke var(--duration), fill var(--duration);
}
 .heart-switch input:not(:checked) {
	 animation: uncheck var(--duration) linear forwards;
}
 .heart-switch input:checked {
	 animation: check var(--duration) linear forwards;
}
 .heart-switch input:checked + svg {
	 --fill: var(--fill-active);
	 --stroke: var(--stroke-active);
}
 @keyframes uncheck {
	 0% {
		 transform: rotate(-30deg) translateX(13.5px) translateY(8px);
	}
	 50% {
		 transform: rotate(30deg) translateX(9px);
	}
	 75% {
		 transform: rotate(30deg) translateX(4.5px) scaleX(1.1);
	}
	 100% {
		 transform: rotate(30deg);
	}
}
 @keyframes check {
	 0% {
		 transform: rotate(30deg);
	}
	 25% {
		 transform: rotate(30deg) translateX(4.5px) scaleX(1.1);
	}
	 50% {
		 transform: rotate(30deg) translateX(9px);
	}
	 100% {
		 transform: rotate(-30deg) translateX(13.5px) translateY(8px);
	}
}
 body .heart-switch {
	 margin: 12px 0;
}
