/*-----------------------------------------------------------------------------------*/
/*	0.	CSS Reset
/*-----------------------------------------------------------------------------------*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } :focus { outline: 0; } ins { text-decoration: none; } del { text-decoration: line-through; } table { border-collapse: collapse; border-spacing: 0; }

::selection      { background:rgba(124,196,255,0.7); }

@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) { 
  
  /* Retina-specific stuff here */

}

html, body {
	font-size:12px;
	width:100%;
	height:100%;
	overflow:hidden;
	margin:0;
	padding:0;
	-webkit-font-smoothing:antialiased;
}

body{
	-webkit-backface-visibility:visible!important;
	display:none;
}

* {
	user-select:none;
	outline:0;
}

ul, li, input, .input-group, p, label, div, section, textarea {
    float: none;
    text-align: left;
}

.list-inline li {
	display: inline-block;
}

.text-center {
	text-align:center;
}

.dropdown-content .container {
	overflow:auto;
}

/*-----------------------------------------------------------------------------------*/
/*	1.	APP
/*-----------------------------------------------------------------------------------*/

#window-boundaries {
	position: fixed;
	width: 240%;
	height: 155%;
	top: 0;
	left: -70%;
	padding-bottom: 30px;
}

#page {
	width:100%;
	height:100%;
	position:absolute;
	overflow:hidden;
	/*visibility:hidden;*/
}

#taskbar.top ~ #page {
	bottom:0;
}

#taskbar.bottom ~ #page {
	top:0;
}

#page.vis {
	visibility:visible;
	opacity:1;
	z-index:2;
	-webkit-animation:none;
}



/*-----------------------------------------------------------------------------------*/
/*	1.	DESKTOP
/*-----------------------------------------------------------------------------------*/

#desktop {
	height:100%;
	width:100%;
	padding:0;
	position:absolute;
}

#desktop ul {
    height: calc(100vh - 36px);
    width: calc(100vw - 4px);
    padding: 2px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: baseline;
}

#desktop ul li {
    margin: 7px;
    display: table;
    flex-basis: 2%;
    height: 66px;
	width: 72px;
}

#desktop ul li a {
    display: block;
    text-align: center;
    max-height: 66px;
    /* max-height: calc(100% + 2em); */
    /* min-height: 64px; */
    /* overflow: hidden; */
    /* border: 1px solid; */
    padding: 0;
    /* text-overflow: ellipsis; */
}

#desktop ul li a i {
	border:1px solid;
	margin-bottom: 3px;
	padding:4px;
}

#desktop ul li a span {
    font-size: 90%;
    font-weight: bold;
    padding: 1px 2px;
	/*max-height: 3em;
	width:68px;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-word;
    position: absolute;
    overflow: hidden;
    display: block;
    padding:2px;*/
}

#desktop .fa {
/*	font-size: 3em;
    padding: 4px;
    margin: 0;*/
	font-size: 3em;
    padding: 6px 4px;
    margin: 0 0 4px;
}


/*-----------------------------------------------------------------------------------*/
/*	2.	SYSTEM TASK AREA
/*-----------------------------------------------------------------------------------*/

#menu-dx {
	float:right;
/*	position:relative;
	width:150px;
	height: 29px;*/
    border-style: solid;
    border-width: 0 0 0 1px;
	float: right;
    /* position: relative; */
    /* height: 29px; */
    border-style: solid;
    border-width: 0 0 0 1px;
}

#menu-dx .fa {
    font-size: 1.25em;
    vertical-align: middle;
}

#show-desktop {
    float: right;
    width: 5px;
    height: 29px;
    border-style: solid;
    border-width: 0 0 0 1px;
}

#taskbar.bottom #menu-dx .dropdown-content {
	/*top: auto;*/
	bottom: 100%;
	margin-bottom: 0;
	right: -1px;
}

/*-----------------------------------------------------------------------------------*/
/*	2.	TASKBAR
/*-----------------------------------------------------------------------------------*/
#taskbar * {
	cursor:default;
}

#taskbar {
	position:fixed;
	margin:0;
	padding:0;
	width:100%;
	z-index: 99;
	height:30px;
}

#page.vis #taskbar {
	z-index:9999;
}

#taskbar.top {
	top:0;
}

#taskbar.top + #window-boundaries {
	padding: 30px 0 1px 0;
}

#taskbar.bottom {
	bottom:0;
}

#taskbar nav {
	margin:0;
	min-height:29px;
	height:29px;
    border-style: solid;
    border-width: 1px 0 0 0;
	user-select:none;
}

/* Dropdown Button */
#taskbar nav .dropbtn {
    position: relative;
    display: block;
	border: 1px solid;
	line-height: 26px;
    text-align: center;
	overflow:hidden;
	padding: 0;
}

/* The container <div> - needed to position the dropdown content */
#taskbar nav .dropdown {
    position: relative;
    display: inline-block;
	float:left;
}

/* Dropdown Content (Hidden by Default) */
#taskbar nav .dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    z-index: 1;
	-webkit-touch-callout: none;
	user-select: none;
	border:1px solid;
}

#taskbar.top .dropdown-content {
	top: 100%;
	bottom: auto;
	margin-top: 1px;
}

#taskbar.bottom .dropdown-content {
	top: auto;
	bottom: 100%;
	margin-bottom: 0;
}

/* Links inside the dropdown */
#taskbar nav .dropdown-content a {
    padding: 4px;
    display: block;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
#taskbar nav .show {
	display:block;
}

/*-----------------------------------------------------------------------------------*/
/*	2.	TASK MANAGER
/*-----------------------------------------------------------------------------------*/

.task-container {
	display:inline-block;
	width: calc(100% - 216px);
	white-space: nowrap;
}

#task-manager {
	margin-left: 3px;
}

#task-manager .ui-state-highlight { 
	width:150px;
	border: 1px solid;
	margin: 1px;
	padding: 2px;
	content:" ";
	height:26px;
}

#task-manager > li {
	position: relative;
    display: block;
	float:left;
	margin:0 1px;
}

#task-manager > li > a {
	width:150px;
	max-width:150px;
    border-style: solid;
    border-width: 1px 1px 2px 1px;
	margin: 1px 0;
	padding: 2px;
    white-space: nowrap;
	line-height: 20px;
	display: block;
	position:relative;
	overflow: hidden;
	text-decoration: none;
	text-overflow: ellipsis;
}

#task-manager.compress > li > a {
	
}

#task-manager > li.ui-state-highlight {
	width:150px;
	max-width:150px;
    border-style: solid;
    border-width: 1px 1px 2px 1px;
	margin: 1px 0;
	padding: 2px;
    white-space: nowrap;
	line-height: 20px;
	display: block;
    transition: background 0.25s ease-in-out;
}


/*-----------------------------------------------------------------------------------*/
/*	2.	CONTROL MENUS
/*-----------------------------------------------------------------------------------*/
/*#start-menu {
	width:65px;
}*/

#start-menu a.dropbtn {
	width:30px!important;
    overflow: hidden;
	margin-left:2px;
	border-bottom:2px;
}

#start-menu a.dropbtn::before {
	content: " ";
    background-image: url(../images/bolt_muted.svg);
    position: absolute;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    height: 22px;
    width: 30px;
	bottom:2px;
    background-size: 22px 22px;	
}

#start-menu a.dropbtn:hover::before, #start-menu a.dropbtn:focus::before, #start-menu a.dropbtn:active::before {
    background-image: url(../images/bolt.svg);
}

#startMenu-Content {
	height: 500px;
	width: 350px;
	overflow: hidden;
	overflow-x: auto;
}

#startMenu-Content h6 {
    font-size: 16px;
    line-height: 16px;
	overflow: hidden;
    display: inline-block;
    position: relative;
    padding: 4px;
    margin-left: 2px;
}

#startMenu-Content div {
	display: block;
    float: left;
	height: 100%;
	position:relative;
}

#startMenu-Content div.left-menu {
    width: 55%;
	overflow:hidden;
}

#startMenu-Content div.left-menu:hover {
	overflow-y: auto;
}

#startMenu-Content div ul li a {
	border: 1px solid;
	color:#fff;
}

#startMenu-Content div.right-menu {
	width: 45%;
    font-size: 85%;
}

#startMenu-Content div.right-menu > ul {
	position: absolute;
    width: 100%;
    bottom: 0;
}


#startMenu-Content div ul li.divider {
	margin: 5px 0;
    border-bottom: 1px solid;
}

#startMenu-Content div.right-menu li a i {
	display:none;
}

/*-----------------------------------------------------------------------------------*/
/*	01.	Window
/*-----------------------------------------------------------------------------------*/

.window {
    position:absolute;
	margin:0;
	padding-bottom: 8px;
	border:1px solid;
	z-index:0;
	visibility:hidden;
	opacity:0;
}

.window * {
	cursor:default;
}

.window iframe {
	height:100%;
	width:100%;
}

.window.focused iframe {
	
}

.window.maximized {
	margin-left:0!important;
	top:0!important;
	left:0!important;
	width:100%!important;
	height:calc(100% - 30px)!important;
	padding-bottom:0!important;
}

.window.maximized .ui-resizable-handle {
	display:none;
}



.window-container {
	position: absolute;
    padding: 5px 5px 26px;
    width: calc(100% - 10px);
    height: calc(100% - 42px);
}

.window.maximized .window-container {
	padding: 5px 5px 0;
	height: calc(100% - 33px);
}

/*.window.maximized .window-container {
	padding: 0;
	margin-top:0;
}*/

/*.window.maximized .window-container .container-inside {
	margin-top: 20px;
}*/

/*#head.top + #page > .window.maximized {
	bottom: 0;
	padding-top: 30px;
}

#head.bottom + #page > .window.maximized {
	bottom: 0;
	padding-top: 30px;
}*/

/*#head.top + #page > .window.maximized {
	margin-top: -20px;
}

#head.bottom + #page > .window.maximized {
	margin-top: -20px;
}*/

.window-title {
	position: relative;
	z-index: 1;
}

.container-inside {
	position:relative;
	height: 100%;
	width:100%;
	overflow:hidden;
}

.window-dropdown {
	float: left;
	margin-left: 3px;
	position:relative;
}

.window-dropdown a > .window-icon {
	line-height: 21px;
	width: 16px;
}

h1.titleInside {
	font-size:13px;
	line-height:21px;
	text-align:center;
	text-transform:capitalize;
	cursor:default;
}

/* Dropdown Content (Hidden by Default) */
.window-control-dropdown {
    display: none;
    position: absolute;
    min-width: 160px;
    z-index: 1;
	-webkit-touch-callout: none;
	user-select: none;
	border:1px solid;
    top: 100%;
    bottom: auto;
    margin-top: 0px;
    margin-left: -4px;
	padding: 4px;
}

.window-control-dropdown .fa {
	font-size:10px;
	vertical-align: top;
}

.window-control-dropdown ul li.divider {
    margin: 3px 0;
    border-bottom: 1px solid;
}

/* Links inside the dropdown */
.window-control-dropdown a {
    padding: 4px;
    display: block;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.window-control-dropdown.show {
	display:block;
}



nav.control-window {
	float: right;
	margin-right: 3px;
}

nav.control-window a {
	display: inline-block;
    line-height: 20px;
    width: 20px;
    height: 20px;
    cursor: default;
    text-align: center;
    font-size: 12px;
    padding: 0px;
    transition: background-color .2s ease-in-out 0s;
	vertical-align: -webkit-baseline-middle;
}
/*nav.control-window a:before {
    content: '';
    display: block;
    position: absolute;
    border-radius: 100%;
    box-shadow:inset 0 1px 4px rgba(0, 0, 0, .8);
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
}
nav.control-window a:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 1px;
    bottom: 1px;
    right: 1px;
    border-radius: 100%;
    background: -webkit-linear-gradient(white, rgba(255, 255, 255, .9) 2%, white, rgba(255, 255, 255, .4) 16%, rgba(255, 255, 255, 0) 43%, rgba(255, 255, 255, .74), rgba(255, 255, 255, .7) 122%, rgba(255, 255, 255, .7));
	background: -moz-linear-gradient(white, rgba(255, 255, 255, .9) 2%, white, rgba(255, 255, 255, .4) 16%, rgba(255, 255, 255, 0) 43%, rgba(255, 255, 255, .74), rgba(255, 255, 255, .7) 122%, rgba(255, 255, 255, .7));
    box-shadow: inset 0px -3px -5px 3px rgba(255, 255, 255, 0.2), inset 0px 2px -5px 3px rgba(255, 255, 255, 0.2);
}*/

nav.control-window a.maximize {
	font-size:10px;

}
nav.control-window a.close {
	float:none;
	opacity:1;
	cursor:default;
}

/*nav.control-window a.minimize {
    background: #F3BB55;
}
nav.control-window:hover a.minimize {
    background: #F3BB55 url(../images/buttons-hover.png) -9px 1px no-repeat;
}*/
/*nav.control-window a.minimize:active {
    background: #c7862c url(../images/buttons-hover.png) -9px 1px no-repeat;
}*/
/*nav.control-window a.maximize {
    background: #96D16F;
}
nav.control-window:hover a.maximize {
    background: #96D16F url(../images/buttons-hover.png) -19px 1px no-repeat;
}
nav.control-window a.maximize:active {
    background: #4a8e33 url(../images/buttons-hover.png) -19px 1px no-repeat;
}*/

.container-inside h2 {
	font-size:13px;
	font-weight:bold;
	line-height:13px;
	margin-bottom:15px;
}

.container-inside img {
	margin:0 0 10px 0;
}

.window.warning {
	width:400px;
	height:100px;
	left:50%;
	top:15%;
	margin:0px 0 0 -200px;
	display:none;
	z-index:999;
}
.tab {
	height:21px;
}
.container-alert {
    padding: 15px 20px;
    position: relative;
}
.container-alert img {
	float:left;
}

.about-alert:before {
	content: " ";
	background: url(../images/Alert.png) no-repeat;
	width:48px;
	height:48px;
	float:left;
	position:relative;
	margin-right:20px;
}
.about-alert {
	width:295px;
	position:relative;
	top:5px;
	display:inline-block;
	line-height:15px;
	margin-left:15px;
}
.about-alert p {
	font-size:10px;
	margin-top:5px;
	line-height:14px;
}


/*.ui-resizable-handle.ui-resizable-s {
	position:absolute;
	bottom:0;
	width: 100%;
	height: 3px;
	cursor: ns-resize;
	
}

.ui-resizable-handle.ui-resizable-e {
	position:absolute;
	right:0;
	height: 100%;
	width: 3px;
	cursor: e-resize;
	z-index:2;
}

.ui-resizable-handle.ui-resizable-se {
	position:absolute;
	right:0;
	bottom:0;
	height:6px;
	width:6px;
	cursor: se-resize;
}*/

/*.ui-resizable { position: relative;}*/
.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;}
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}
.ui-resizable-handle.ui-resizable-se {
	background:url(../images/handle.png) bottom right no-repeat;
	background-size: 8px 8px;
}


.mask {
	position: absolute;
	z-index: 2;
	left: 0pt;
	top: 0pt;
	right: 0pt;
	bottom: 0pt;
	display:block;
}

.window.focused .mask {
	display:none;
}

.window.ui-resizable-resizing .mask {
	display:block!important;
}

.window.ui-draggable-dragging .mask {
	display:block!important;
}

.modal {
	overflow:hidden;
}

.window-trigger {
	border: 2px solid;
	opacity: 0;
	position:absolute;
	top:10px;
	height:10px;
	width:10px;
}

.window-trigger.center {
	left:50%;
	margin-left:-10px;
}

.window-trigger.left {
	left:10px;
}

.window-trigger.right {
	right:10px;
}

.pulse-container {
	position: absolute;
	background: transparent;
	z-index:1000;
	opacity:0;
}

.pulse {
	width: 0px;
    height: 0px;
    top: 50%;
    left: 50%;
    background-color: transparent;
    z-index: 1000;
    position: absolute;
}

.dot {
    border-radius: 60px;
    height: 60px;
    width: 60px;
    position: absolute;
    top: -40px;
    left: -40px;
    z-index: 1;
    opacity: 0;
}

.dot.animate {
	animation: pulse-pointer .6s ease-out;
	animation-iteration-count: 1;
}

@-webkit-keyframes "pulse-pointer" {
 0% {
    -webkit-transform: scale(0);
    opacity: 0.0;
 }
 25% {
    -webkit-transform: scale(0);
    opacity: 0.1;
 }
 50% {
    -webkit-transform: scale(0.1);
    opacity: 0.3;
 }
 75% {
    -webkit-transform: scale(0.5);
    opacity: 0.5;
 }
 100% {
    -webkit-transform: scale(1);
    opacity: 0.0;
 }
}

/*-----------------------------------------------------------------------------------*/
/*	2.	DEBUGGER
/*-----------------------------------------------------------------------------------*/

#debugger {
	position: fixed;
    bottom: 40px;
    right: 10px;
    width: 600px;
    height: 350px;
    background: rgba(234, 53, 76, .6);
    padding: 3px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
    border-top-left-radius: 0;
    display: none;
    z-index: 99999;
}

#debugger .content {
	height:100%;
	width:100%;
	overflow-y:scroll;
}

#debugger:after {
	content:"Debugger";
	font-weight:bold;
	position:absolute;
	color:#000;
	top:-21px;
	left:-1px;
	padding:4px 10px;
	background: #fff;
	border:1px solid #fff;
	border-bottom:0;
	border-top-left-radius:4px;
	border-top-right-radius:4px;
}

/*-----------------------------------------------------------------------------------*/
/*	2.	SYSTEM APPLETS
/*-----------------------------------------------------------------------------------*/

#system-apps {
	list-style:none;
	float:left;
	padding: 0 2px;
}

#system-apps > li {
    display: inline-block;
	position: relative;
}

#system-apps > li > a:not(.dropbtn) {
    display: block;
    text-align: center;
	line-height:26px;
	border: 1px solid transparent;
	padding: 0 2px;
	overflow: hidden;
}

#system-apps .dropdown-content {
	right: calc(100% - 27px);
    padding: 4px;
}

/*-----------------------------------------------------------------------------------*/
/*	2.	CALENDAR CONTENT
/*-----------------------------------------------------------------------------------*/




#dropdown-calendar {
	-webkit-touch-callout: none;
	user-select: none;
	width:350px;
	right:-1px;
	padding: 4px;
}

#dropdown-calendar .calendar {
	margin:10px;
	width:160px;
	min-height:160px;
}

#dropdown-calendar .full-date {
	margin:10px;
	font-weight: bold;
	font-size: 18px;
}

#dropdown-calendar .clock {
	float:right;
	font-weight: bold;
}

#dropdown-calendar .calendar .table td a {
	display: inline-block;
	width: auto;
	height: auto;
	line-height: 12px;
}

#clock-menu {
	padding: 0 0 0 5px;
}

#clock-menu a {
	
}

#clock-menu a .point, #dropdown-calendar .point {
	margin:0 -3px;
}

#clock {
    background-image: url(../images/clock/modern/clock.png);
    background-size: cover;
    height: 600px;
    list-style: none;
    margin: 5px;
    padding: 0;
    position: relative;
    width: 600px;
}

#clock.small {
	width: 140px;
	height: 140px;
}

#pin {
    background: #fff;
    border-radius: 50%;
    height: 3%;
    left: 50%;
    margin: -1.5%;
    position: absolute;
    top: 50%;
    width: 3%;
    z-index: 10;
}

.clock-transitions {
    transition: all 1s cubic-bezier(0.01, 1, 0, 0.88);
}
      
#sec {
    background-image: url(../images/clock/modern/sechand.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    left: 45%;
    position: absolute;
    top: 0;
    width: 10%;
    z-index: 3;
}
           
#min {
    background-image: url(../images/clock/modern/minhand.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    left: 45%;
    position: absolute;
    top: 0;
    width: 10%;
    z-index: 2;
}
           
#hour {
    background-image: url(../images/clock/modern/hourhand.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    left: 45%;
    position: absolute;
    top: 0;
    width: 10%;
    z-index: 1;
}



#clndr {
	float:left;
	margin: 13px 0 5px 13px;
    width: auto;

}
#clndr .clndr {
  overflow: hidden;

}

#clndr .clndr .clndr-controls .clndr-previous-button,
#clndr .clndr .clndr-controls .clndr-next-button {
  width: 15%;
  padding-top: 3px;
  padding-bottom: 3px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.5s;
}

#clndr .clndr .clndr-controls .clndr-month {
  width: 66%;
  padding-top: 3px;
  padding-bottom: 3px;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}
#clndr .clndr .days-container {
  position: relative;
  width: 180px;
  height: 140px;
  display: inline-block;
}
#clndr .clndr .days-container .days {
  position: absolute;
  left: 0;
  width: 180px;
  height: 125px;
  transition: left 0.5s;
}
#clndr .clndr .days-container .days .day,
#clndr .clndr .days-container .days .empty {
  width: 23px;
  display: inline-block;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 12px;
  text-align: center;
}


#clndr .clndr .days-container .days .empty {
  height: 31px;
  vertical-align: bottom;
}
#clndr .clndr .days-container .days .headers {
  padding-top: 3px;
  padding-bottom: 3px;
}
#clndr .clndr .days-container .days .headers .day-header {
  width: 23px;
  display: inline-block;
  text-align: center;
}



.HotlineModal {
	position:absolute;
	display:block;
	box-shadow: 3px 3px 9px rgba(0,0,0,.45);
    border-radius: 0;
    background: #434857;
    
    width: 350px;
	height:160px;
	top:50%;
	left:50%;
	margin-top:-80px;
	margin-left:-175px;
    z-index: 9999;
    user-select: none;
    border: 1px solid;
	border-color: rgba(41,107,158,0.75);
	text-shadow: 1px 1px 3px #000;
	color:#cfd2da;
}

.HotlineModal::before {
	content: " ";
	position:fixed;
	height:100vh;
	width:100vw;
	background:rgba(0,0,0,0.5);
	top:0;
	left:0;
	z-index:-1;
}

.HotlineModal .header {
	font-size: 1.5em;
    border-bottom: 1px solid;
	border-color: #252830;
    margin-bottom: 6px;
    padding: 4px;
}

.HotlineModal .content {
	padding:4px;
}

.HotlineModal .footer {
    border-top: 1px solid;
    border-color: #252830;
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 4px);
    text-align: right;
    margin-top: 1px;
    padding: 4px 2px;
}


.hl-btn {
    margin: 0 2px 0 2px;
    border: none;
    border-radius: 0;
    overflow: visible;
    font: inherit;
    color: inherit;
    text-transform: none;
    display: inline-block;
    box-sizing: border-box;
    padding: 0 30px;
    vertical-align: middle;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: .1s ease-in-out;
    transition-property: color,background-color,border-color;
	background-color: rgba(255,255,255,0.5);
	color: #fff;
    border: 1px solid #252830;
}

.hl-btn:hover,.hl-btn:focus {
	
	background-color: rgba(41,107,158,0.95);
}

.hl-btn:active {
	background-color: rgba(41,107,158,0.75);
	box-shadow: inset -1px -1px 3px rgba(0,0,0,.25);
}