﻿@charset "utf-8";

/* Table of Contents
==================================================
	#Fonts
    #Login Styles
	#Site Styles
	#Page Styles
    #Form Styles
	#Navigation
	#Custom Colored Panels
	#Media Queries
	*/


/* #Fonts
================================================== */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800);

/* #Site Styles
================================================== */

html {
    height: 100% !important;
}


/*.loading {
    background-image: url(../images/loading.gif);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}*/

/*img.loading{
    text-align: center;
}*/

.hidden{
    display: none;
}

body {
    /*margin: 100px 0 0 0;*/
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #222;
    height: 100% !important;
}

.side-nav{
    margin-top: 38px !important;
}

@media screen and (min-width:992px) {
    body {
        margin-top: 90px;
    }
}

@media screen and (max-width:991px) {
    body {
        margin-top: 55px;
    }
}

.alignbottom{
    position: absolute;
    top: 25px;
}

.alignleft {
	float: left;
}

.alignright {
	text-align: right;
}

.aligncenter {
	text-align: center;
}

.light-gray-background {
    background-color: #999999;
}

.dark-green-background {
    /*background-color: #14d00e;*/
    background-color: #47d442;
}

.purple-background {
    background-color: #663a82;
    color: #fff !important;
}

.patina-gray-background {
    background-color: #669999;
}

.orange-background {
    background-color: #FFA64D;
}

.light-yellow-background {
    background-color: #eff087;
    color: #060302 !important;
}

.dark-red-background {
    background-color: #dd5b5b;
}

.light-blue-background {
    background-color: #8bace5;
}

a:link, a:visited, a:active, a:focus {
	color: #f26329;
	text-decoration: none;
	text-transform: none;
	-o-transition:.5s;
	-ms-transition:.5s;
	-moz-transition:.5s;
	-webkit-transition:.5s;
	transition:.5s;
}

a:hover {
	color: #222;
}

p {
	font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Open Sans', sans-serif;
}

h2 {
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #333;
	font-weight: 800;
}
.ms-choice, .ms-choice:focus { border: 0px solid #aaa !important;}

/* #General Styles
================================================== */

.disabledButton {
    pointer-events: none;
    opacity: 0.4;
}

/* #Login Styles
================================================== */

.hdr {
	position: relative;
}

header {
    width: 100%;
    height: auto;
	min-height: 100%;
    padding-bottom: 0;
    padding-left: 0%;
	position: absolute;
	visibility: visible;
	overflow: hidden;
	display: inline;
	margin:-100px 0 0 0;
    z-index: -1;

    -moz-animation-name: dropHeader;
    -moz-animation-iteration-count: once;
    -moz-animation-timing-function: ease-in;
    -moz-animation-duration: .9s;

    -webkit-animation-name: dropHeader;
    -webkit-animation-iteration-count: once;
    -webkit-animation-timing-function: ease-in;
    -webkit-animation-duration: .9s;

    animation-name: dropHeader;
    animation-iteration-count: once;
    animation-timing-function: ease-in;
    animation-duration: .9s;

}

header:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-left: 0px;
    border-bottom: 730px solid transparent;
    border-left: 1690px solid #ddd;
}

@-moz-keyframes dropHeader {0% { top: -1200px; } 100% {top: 0; }}
@-webkit-keyframes dropHeader {0% { top: -1200px; } 100% {top: 0; }}
@-o-keyframes dropHeader {0% { top: -1200px; } 100% {top: 0; }}
@keyframes dropHeader {0% { top: -1200px; } 100% {top: 0; }}


/* hide this container and remove the right margin at small screen sizes */
@media (max-width: 991px) {
    #LIEmployeesAtTheirDesks {
        margin-right: 0px;
    }
}

@media (min-width: 992px) {
    #LIEmployeesAtTheirDesks {
        margin-right: 160px;
    }
}

#login {
    padding-top: 50px;
    max-width: 735px;
    margin: 0 auto;
}

#login p {
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-family: 'Open Sans', sans-serif;
	font-size: 17px;
	margin: 20px auto 10px 0;
}
 
.fade-in {
    opacity:0;  /* make things invisible upon start */
    -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;
 
    -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
 
    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
}
 
.fade-in.fone {
-webkit-animation-delay: 0.7s;
-moz-animation-delay: 0.7s;
animation-delay: 0.7s;
}
 
.fade-in.ftwo {
-webkit-animation-delay: 1.2s;
-moz-animation-delay:1.2s;
animation-delay: 1.2s;
}
 
.fade-in.fthree {
-webkit-animation-delay: 1.6s;
-moz-animation-delay: 1.6s;
animation-delay: 1.6s;
}

@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.box {
	width: auto;
	height: 100%;
	min-height: 300px;
	background-color: rgba(255,255,255,.9);
	border: 10px solid rgba(0,0,0,.1);
	margin: 40px 0;
}

.box__dragndrop,
.box__uploading,
.box__success,
.box__error {
  display: none;
}

.box.is-dragover {
  background-color: grey;
}

.box.has-advanced-upload {
  background-color: white;
  outline: 2px dashed black;
  outline-offset: -10px;
}
.box.has-advanced-upload .box__dragndrop {
  display: inline;
}
.box.is-uploading .box__input {
  visibility: hidden;
}
.box.is-uploading .box__uploading {
  display: block;
}


.brand img {
    max-width: 100%;
}

#btm {
	color: #eee;
	font-size: 10px;
	letter-spacing: 1px;
}

#btm a:hover {
	color: #fff;
}

#sidebar-menu-toggle-button{
    position: absolute;
    top: 40px;
    cursor: pointer;
    font-size: 18px;
}

#sidebar > ul {
    display: block;
}

/* #Page Styles
================================================== */

@media screen and (min-width:992px) {
    /*#wrapper {
        padding-left: 225px;
    }*/

    #page-wrapper {
        padding: 0px 10px 10px 225px;
        min-height: 90vh;
    }

    .navbar-toggle {
        display: none;
    }

    /*#sidebar-menu-toggle-button{
        position: absolute;
        top: 40px;
        cursor: pointer;
        font-size: 18px;
    }*/
}

@media screen and (max-width:991px){
    /*#wrapper {
        padding-left: 0px;
    }*/

    #page-wrapper {
        width: 100%;
        padding-left: 0px;
        background-color: #F6F6F6;
    }

    .navbar-toggle {
        float: none;
    }

    #sidebar{
        padding-left: -225px;
    }

    #sidebar-menu-toggle-button{
        display: none;
    }
}

/* Overflow Viewport Height */

.huge {
    font-size: 50px;
    line-height: normal;
}

div#DIVDashboardTextMessageConversationContainer {
    max-height: 70vh;
    overflow-wrap: break-word;
    overflow-x: hidden;
}

div#DIVMPTextMessageConversationContainer {
    max-height: 70vh;
    overflow-wrap: break-word;
    overflow-x: hidden;
}

div#DIVNewTextMessageConversationContainer {
    max-height: 70vh;
    overflow-wrap: break-word;
    overflow-x: hidden;
}

div#DIVClientAssociateTextMessageConversationContainer {
    max-height: 70vh;
    overflow-wrap: break-word;
    overflow-x: hidden;
}

/* Tree Node CSS */

.ui-igtree {
    margin: 20px 0;
    border: 1px solid #eee;
}

.ui-igtree a {
    font-size: 18px;
}

.ui-igtree a.ui-state-hover, .ui-igtree a.ui-state-focus {
    border: none !important;
    background-color: #eeeeee !important;
}

.ui-igtree-expander {
    top: 1em;
    margin-top: -6px;
}

.spriteFolder {
    background-image: url('../images/folder_24.png');
    background-repeat: no-repeat;
    background-position: center;
    opacity: .9;
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-top: 5px;
    vertical-align: sub;
}      

.spriteDocument    {
    background-image: url('../images/file_24.png');
    background-repeat: no-repeat;
    background-position: center;
    opacity: .9;
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-top: 5px;
    vertical-align: sub;
}    
 


/* Footer */

footer a:hover {
    color: #eeeeee;
}



/* #Form Styles
================================================== */


.ui-iggrid > .btn {
    max-width: 34px;
    min-width: 34px;
    margin: 2px;
}

input:-webkit-autofill {
    -webkit-box-shadow:0 0 0 50px white inset;
    -webkit-text-fill-color: #333;
}

input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 50px white inset;
    -webkit-text-fill-color: #333;
}

.btn { 
    color: #eee !important;
    margin: 2px;
}

tbody > tr > td > .btn-sm {
    margin: 2px 0px 2px 0px;
    min-width: 32px;
    max-width: 32px;
    padding: 2px 7px;
    text-align: center;
    align-content: center;
    height: 32px;
}

tbody > tr > td > span > .btn-sm {
    margin: 2px 0px 2px 0px;
    min-width: 32px;
    max-width: 32px;
    padding: 2px 7px;
    text-align: center;
    align-content: center;
    height: 32px;
}

.btn-align-bottom {
    margin-top: 25px;
}

.btn-dropdown {
    background-color: transparent;
    color: #333 !important;
    text-align: left !important;
}

.btn-dropdown:hover {
    color: #606060 !important;
}


.tt-dropdown-menu {
    background-color: #F6F6F6;
    border: 1px solid #ccc;
    box-shadow: 0px 1px 2px rgba(74, 74, 74, 0.2);
    padding: 5px 0px;
    min-width: 100px;
    text-align: left;
}

.tt-dataset-search-results {
    padding: 3px;
    width: 500px;
    text-align: left;
    background-color: #fff;
}

.tt-hint {
    background: rgb(246, 246, 246) none repeat scroll 0% 0% !important;
}

.modal-content .tt-hint {
    background: #fff none repeat scroll 0% 0% !important;
}


.tt-dataset-search-results:active {
    background-color: #EAEAEA;
}

span.ui-iggrid-headertext {
    color: #fff !important;
}

.ui-widget-header {
    background: #454545 !important;
    color: #fff !important;
}

/* Captcha */

input#WebCaptcha1__editor {
    width: auto !important;
    padding: 6px 12px;
    border: 1px solid #CBCBCB;
    float: left;
    margin:5px 0;
}

.igc_CaptchaImageArea img {
    width: 100%;
}

.igc_RefreshAndAudioButtonsArea {
    text-align: right;
    margin: 7px 0;
}

.ig-grid-row-red-background {
    background-color: #C9001B !important;
    color: white;
}

.ig-grid-row-light-pink-background {
    background-color: #FFC8C8 !important;
}

.ig-grid-row-light-green-background {
    background-color: #C8FFCB !important;
}

.ig-grid-row-light-blue-background {
    color: white !important;
    background-color: #0E86D4 !important;
}

.logo-lg{
    display: block;
    max-width: 220px !important;
}

.logo-sm{
    display: block;
    width: 30px !important;
    margin: 0px;
    margin-left: 20px;
	padding-bottom: 10px;
}

#GRIDProjects td {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*#DIVASCServiceCallChecklist [type="checkbox"] {
    vertical-align: middle;
}*/


/* #Navigation
================================================== */

@media screen and (min-width: 992px){
    /*.logo-lg{
        display: block;
    }

    .logo-sm{
        display: none;
    }*/

    .top-nav {
        padding: 0 45px 0 15px;
	    min-height: 85px;
    }
}

@media screen and (max-width: 991px){
    /*.logo-lg{
        display: none;
    }

    .logo-sm{
        display: block;
        width: 30px !important;
        margin: 0px;
    }*/

    /*.logo-sm{
	    padding-bottom: 10px;
        margin-left: 20px;
    }*/

    .top-nav {
        padding: 0 10px 0 15px !important;
	    /*min-height: 85px;*/
    }
}

/*.logo {
	width: 225px;
	padding: 0;
    margin-left: 20px;
}*/

#LIMessageReminder{
    margin-top: 10px;
}

.logo img {
	width: 100%;
	padding: 0;
	margin-left: -17px;
}

.top-nav>li {
    display: inline-block;
}

.top-nav>li>a {
    /*padding-top: 15px;*/
    padding-bottom: 0px;
    line-height: 20px;
    color: #999;
}

.top-nav>li>a:hover,
.top-nav>li>a:focus,
.top-nav>.open>a,
.top-nav>.open>a:hover,
.top-nav>.open>a:focus {
    color: #fff;
    background-color: transparent;
}

.top-nav>.open>.dropdown-menu {
    float: left;
    position: absolute;
    margin-top: 0;
    border: 1px solid rgba(0,0,0,.15);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

.quick-action-dropdown{
    width: auto !important;
}

.top-nav>.open>.dropdown-menu>li>a {
    white-space: normal;
}

ul.message-dropdown {
    padding: 0;
    max-height: 250px;
    overflow-x: hidden;
    overflow-y: auto;
}

li.message-preview {
    width: 275px;
    border-bottom: 1px solid rgba(0,0,0,.15);
}

li.message-preview>a {
    padding-top: 15px;
    padding-bottom: 15px;
}

li.message-footer {
    margin: 5px 0;
}

ul.alert-dropdown {
    width: 300px !important;
    font-size: 11px;
    left: -60px;
}

ul#ULAlertDropDown {
    height: 450px;
    min-height: 100%;
    overflow-x: scroll;
}

@media (min-width: 992px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 991px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 992px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .navbar-nav.navbar-right:last-child {
    margin-right: -15px;
  }
}

/* Side Navigation */

@media(min-width:992px) {
    .side-nav {
        position: fixed;
        top: 90px;
        left: 225px;
        width: 225px;
        margin-left: -225px;
        border: none;
        border-radius: 0;
        overflow-y: auto;
        background-color: #222;
    }

    .side-nav>li>a {
        width: 225px;
    }

    .side-nav li a:hover,
    .side-nav li a:focus {
        outline: none;
        background-color: #000 !important;
    }
}

.side-nav>li>ul {
    padding: 0;
}

.side-nav>li>ul>li>a {
    display: block;
    padding: 10px 15px 10px 38px;
    text-decoration: none;
    color: #999;
}

.side-nav>li>ul>li>a:hover {
    color: #fff;
}


/* Custom Colored Panels */

.huge {
    font-size: 40px;
}

.panel-green {
    border-color: #5cb85c;
}

.panel-green .panel-heading {
    border-color: #5cb85c;
    color: #fff;
    background-color: #5cb85c;
}

.panel-green a {
    color: #5cb85c;
}

.panel-green a:hover {
    color: #3d8b3d;
}

.panel-red {
    border-color: #d9534f;
}

.panel-red .panel-heading {
    border-color: #d9534f;
    color: #fff;
    background-color: #d9534f;
}

.panel-red a {
    color: #d9534f;
}

.panel-red a:hover {
    color: #b52b27;
}

.panel-yellow {
    border-color: #f0ad4e;
}

.panel-yellow .panel-heading {
    border-color: #f0ad4e;
    color: #fff;
    background-color: #f0ad4e;
}

.panel-yellow a {
    color: #f0ad4e;
}

.panel-yellow a:hover {
    color: #df8a13;
}


/* Footer */

footer {
	color: #aaa;
	margin: 30px 0;
	clear: both;
}

.footer a {
	font-size: 10px;
}

/* #Media Queries
================================================== */

@media screen and (max-width: 1366px) , screen and (max-height: 768px) {
	header:after {
        border-bottom: 650px solid transparent;
        border-left: 1200px solid #eeeeee;
	}		
	#login {
        padding-top: 10px;
	}
}

	@media only screen and (max-width: 959px) {}

	@media only screen and (min-width: 768px) and (max-width: 959px) {
	header:after {
        border-bottom: 500px solid transparent;
        border-left: 800px solid #eeeeee;
	}
	.container {
		margin: 0 auto;
	}	
		}

	@media only screen and (max-width: 767px) {}


	@media only screen and (min-width: 480px) and (max-width: 767px) {
	header:after {
border-bottom: 500px solid transparent;
border-left: 600px solid #eeeeee;
	}	

	.container {
		margin: 0 0 0 7%;
	}		
		}


@media only screen and (max-width: 479px) {
    header:after {
        border-bottom: 500px solid transparent;
        border-left: 800px solid #eeeeee;
    }
    .navbar-header {
    width: 100px;
    float: right;
    }
    .alignleft {
        float: none;
        text-align: left;
    }

    .container {
        width: 100%;
        margin: 0 auto;
    }
}

/* z-index bug fix for date picker element */
.ui-datepicker{
    z-index: 1050 !important;
}

#GRIDDashboardTimeClockHours > tbody > tr > td:nth-child(3) {
    text-align: right;
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

.modal-xlg {
      width: 95% !important;
  }

#LIQuickActions > ul {
    width: 300px !important;
}

.badge-notify{
   background:red;
   position:relative;
   top: -7px;
   left: -8px;
}

.navbar-fixed-top, .navbar-fixed-bottom {
    position: absolute !important;
}

@media (min-width: 992px) {
    .side-nav {
        position: absolute !important;
    }
}

@media (max-width: 1660px) {
    #DIVEmployeesAtTheirDesks_Technicians {
        display: none;
    }

    #DIVEmployeesAtTheirDesks_Other {
        display: none;
    }
}

 .panel.panel-default > .panel-heading {
    cursor: pointer;
}















 /********************************* BEGIN CALENDAR **********************************/

.calendar-primary {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: 700;
}
.calendar-primary .clndr-controls {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 14px;
  padding-right: 14px;
  background-color: #414141;
  color: #fff;
  text-align: center;
}
.calendar-primary .clndr-controls .clndr-previous-button {
  float: left;
  text-align: left;
}
.calendar-primary .clndr-controls .clndr-next-button {
  float: right;
  text-align: right;
}
.calendar-primary .clndr-controls .clndr-previous-button,
.calendar-primary .clndr-controls .clndr-next-button {
  width: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  /* Chrome/Safari */

  -moz-user-select: none;
  /* Firefox */

  -ms-user-select: none;
  /* IE10+ */

}
.calendar-primary .clndr-controls .clndr-previous-button:hover,
.calendar-primary .clndr-controls .clndr-next-button:hover {
  opacity: 0.5;
}
.calendar-primary .clndr-grid {
  float: left;
  width: 100%;
  border-right: 2px solid #fff;
}
.calendar-primary .clndr-grid .days-of-the-week {
  width: 100%;
  background-color: #006383 ;
}
.calendar-primary .clndr-grid .days-of-the-week .header-day {
  float: left;
  width: 14.2857%;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 14px;
  padding-right: 14px;
  text-align: center;
  color: #fff;
}
.calendar-primary .clndr-grid .days {
  width: 100%;
}

    .calendar-primary .clndr-grid .days .day,
    .calendar-primary .clndr-grid .days .empty {
        float: left;
        width: 14.2857%;
        /*height: 190px;*/
        padding: 0px 0px 0px 5px;
        /*text-align: center;*/
        color: #4f4f4f;
        border-bottom: 2px solid #fff;
        background-image: url('../images/triangle.svg');
        background-size: cover;
        background-position: center;
        cursor: pointer;
        position: relative;
    }

    .calendar-primary .clndr-grid .days .day .event-list{
        width: 100%;
        max-height: 100%;
        overflow-y: auto;
        position: absolute;
        bottom: 0px;
        left: 0px;
    }

    .calendar-primary .clndr-grid .days .day .event-list .event-container{
        background-color: #add8e6;
        overflow: hidden;
        height: 22px;
        margin-top: 1px;
        margin-left: 6px;
        margin-right: 6px;
        padding-left: 4px;
        padding-right: 4px;
    }

    /*.calendar-primary .clndr-grid .days .day .event-list .event-container.general-event{
        background-color: #039BE5;
        color: white;
    }

    .calendar-primary .clndr-grid .days .day .event-list .event-container.technician-event {
        background-color: #298835;
        color: white;
    }

    .calendar-primary .clndr-grid .days .day .event-list .event-container.hr-event{
        background-color: #F4511E;
        color: white;
    }

    .calendar-primary .clndr-grid .days .day .event-list .event-container.web-event{
        background-color: #616161;
        color: white;
    }

    .calendar-primary .clndr-grid .days .day .event-list .event-container.programming-event {
        background-color: #414445;
        color: white;
    }

    .calendar-primary .clndr-grid .days .day .event-list .event-container.holiday-event{
        background-color: #8E24AA;
        color: white;
    }

    .calendar-primary .clndr-grid .days .day .event-list .event-container.vacation-event{
        background-color: #E67C73;
        color: white;
    }

    .calendar-primary .clndr-grid .days .day .event-list .event-container.birthday-event {
        background-color: #F6BF26;
        color: white;
    }

    .calendar-primary .clndr-grid .days .day .event-list .event-container.infrastructure-event {
        background-color: #FFA500;
        color: white;
    }*/

        .general-event {
            background-color: #039BE5 !important;
            color: white;
        }

.technician-event {
    background-color: #298835 !important;
    color: white;
}

.hr-event {
    background-color: #F4511E !important;
    color: white;
}

.web-event {
    background-color: #616161 !important;
    color: white;
}

.programming-event {
    background-color: #414445 !important;
    color: white;
}

.holiday-event {
    background-color: #8E24AA !important;
    color: white;
}

        .vacation-event {
            background-color: #E67C73;
            color: white;
        }

.birthday-event {
    background-color: #F6BF26 !important;
    color: white;
}

.infrastructure-event {
    background-color: #CC8400 !important;
    color: white;
}

    .calendar-primary .clndr-grid .days .day .event-list .event-container .event-node{
        font-size: 12px;
        vertical-align: middle;
        font-weight: normal !important;
    }

/*.calendar-primary .clndr-grid .days .day.event .day-number,
.calendar-primary .clndr-grid .days .empty.event .day-number {
  padding-bottom: 4px;
  border-bottom: 2px solid #28851E;
}*/

.calendar-primary .clndr-grid .days .day.adjacent-month .day-number,
.calendar-primary .clndr-grid .days .empty.adjacent-month .day-number {
  opacity: 0.3;
}

.day-number {
    font-size: 12px;
}

.calendar-primary .clndr-grid .days .today .day-number {
    border-radius: 50%;
    border: 3px solid black;
    font-weight: bold;
    padding: 2px;
}

.calendar-primary .clndr-grid .days .today {
  background-color: #fff;
  background-image: none;
}
.calendar-primary .event-listing {
  float: left;
  width: 35%;
}
.calendar-primary .event-listing .event-listing-title {
  padding: 14px;
  background-color: #414141;
  text-align: center;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.calendar-primary .event-listing .event-item {
  padding: 14px;
  color: #4f4f4f;
  cursor: pointer;
}
.calendar-primary .event-listing .event-item-location {
  font-weight: 400;
}
.noselect {
  -webkit-user-select: none;
  /* Chrome/Safari */

  -moz-user-select: none;
  /* Firefox */

  -ms-user-select: none;
  /* IE10+ */

}
@media all and (max-width: 768px) {
  .calendar-primary .clndr-grid {
    width: 100%;
    border: none;
  }
  .calendar-primary .event-listing {
    display: none;
  }

}



.clndr-color-container {
    display: block;
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
    margin: 8px;
    cursor: pointer;
    border-radius: 60%;
    border: 0;
}

    .clndr-color-container:hover {
        transform: scale(1.5);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }

.radio-toolbar input[type="radio"] {
    display: none;
}

/*.radio-toolbar input[type="radio"]:checked + label {
    transform: scale(1.5);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background-color: red;
    background-color: #bbb;
}*/




.clndr-color-txt {
    border-radius: 50%;
    font-size: 22px;
    font-family: monospace;
    padding: 4px 10px;

}

.zoom-in {
    transform: scale(1.5);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}






 
/********************************* BEGIN CALENDAR **********************************/

#DIVMaintenanceCalendar {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: 700;
}
#DIVMaintenanceCalendar .clndr-controls {
  padding: 14px;
  background-color: #414141;
  color: #fff;
  text-align: center;
}
#DIVMaintenanceCalendar .clndr-controls .clndr-previous-button {
  float: left;
  text-align: left;
}
#DIVMaintenanceCalendar .clndr-controls .clndr-next-button {
  float: right;
  text-align: right;
}
#DIVMaintenanceCalendar .clndr-controls .clndr-previous-button,
#DIVMaintenanceCalendar .clndr-controls .clndr-next-button {
  width: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  /* Chrome/Safari */

  -moz-user-select: none;
  /* Firefox */

  -ms-user-select: none;
  /* IE10+ */

}
#DIVMaintenanceCalendar .clndr-controls .clndr-previous-button:hover,
#DIVMaintenanceCalendar .clndr-controls .clndr-next-button:hover {
  opacity: 0.5;
}
#DIVMaintenanceCalendar .clndr-grid {
  float: left;
  width: 100%;
  border-right: 2px solid #fff;
}
#DIVMaintenanceCalendar .clndr-grid .days-of-the-week {
  width: 100%;
  background-color: #006383 ;
}
#DIVMaintenanceCalendar .clndr-grid .days-of-the-week .header-day {
  float: left;
  width: 14.2857%;
  padding: 14px;
  text-align: center;
  color: #fff;
}
#DIVMaintenanceCalendar .clndr-grid .days {
  width: 100%;
}

    #DIVMaintenanceCalendar .clndr-grid .days .day,
    #DIVMaintenanceCalendar .clndr-grid .days .empty {
        float: left;
        width: 14.2857%;
        height: 190px;
        padding: 5px 0px 0px 5px;
        /*text-align: center;*/
        color: #4f4f4f;
        border-bottom: 2px solid #fff;
        background-image: url('../images/triangle.svg');
        background-size: cover;
        background-position: center;
        cursor: pointer;
        position: relative;
    }

    #DIVMaintenanceCalendar .clndr-grid .days .day .event-list{
        width: 100%;
        position: absolute;
        bottom: 0px;
        left: 0px;
    }

    #DIVMaintenanceCalendar .clndr-grid .days .day .event-list .event-container{
        background-color: #add8e6;
        overflow: hidden;
        height: 22px;
        margin: 4px;
        padding-left: 3px;
        padding-right: 3px;
    }

    #DIVMaintenanceCalendar .clndr-grid .days .day .event-list .event-container .event-node{
        font-size: 14px;
        vertical-align: middle;
    }

/*#DIVMaintenanceCalendar .clndr-grid .days .day.event .day-number,
#DIVMaintenanceCalendar .clndr-grid .days .empty.event .day-number {
  padding-bottom: 4px;
  border-bottom: 2px solid #28851E;
}*/

#DIVMaintenanceCalendar .clndr-grid .days .day.adjacent-month .day-number,
#DIVMaintenanceCalendar .clndr-grid .days .empty.adjacent-month .day-number {
  opacity: 0.3;
}
#DIVMaintenanceCalendar .clndr-grid .days .today {
  background-color: #fff;
  background-image: none;
}
#DIVMaintenanceCalendar .event-listing {
  float: left;
  width: 35%;
}
#DIVMaintenanceCalendar .event-listing .event-listing-title {
  padding: 14px;
  background-color: #414141;
  text-align: center;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#DIVMaintenanceCalendar .event-listing .event-item {
  padding: 14px;
  color: #4f4f4f;
  cursor: pointer;
}
#DIVMaintenanceCalendar .event-listing .event-item-location {
  font-weight: 400;
}
.noselect {
  -webkit-user-select: none;
  /* Chrome/Safari */

  -moz-user-select: none;
  /* Firefox */

  -ms-user-select: none;
  /* IE10+ */

}
@media all and (max-width: 768px) {
  #DIVMaintenanceCalendar .clndr-grid {
    width: 100%;
    border: none;
  }
  #DIVMaintenanceCalendar .event-listing {
    display: none;
  }

}

.clndr-color-container-wrapper {
    display: flex;
    flex-wrap: wrap;
}

/*Calendar Header Colors CSS Classes*/

.color1-clndr-header {
    background-color: #7986cb !important;
    color: white;
}

.color2-clndr-header {
    background-color: #33b679 !important;
    color: white;
}


.color3-clndr-header {
    background-color: #8e24aa !important;
    color: white;
}

.color4-clndr-header {
    background-color: #e67c73 !important;
    color: black;
}

.color5-clndr-header {
    background-color: #f6c026 !important;
    color: white;
}

.color6-clndr-header {
    background-color: #f5511d !important;
    color: white;
}

.color7-clndr-header {
    background-color: #039be5 !important;
    color: black;
}

.color8-clndr-header {
    background-color: #616161 !important;
    color: white;
}



.color9-clndr-header {
    background-color: #3f51b5 !important;
    color: white;
}

.color10-clndr-header {
    background-color: #0b8043 !important;
    color: black;
}

.color11-clndr-header {
    background-color: #d60000 !important;
    color: white;
}

.color12-clndr-header {
    background-color: #daa520 !important;
    color: black;
}



.color13-clndr-header {
    background-color: #8b4513 !important;
    color: white;
}

.color14-clndr-header {
    background-color: #adff2f !important;
    color: black;
}

.color15-clndr-header {
    background-color: #ffa07a !important;
    color: white;
}

.color16-clndr-header {
    background-color: #000000 !important;
    color: white;
}

.dorkwood-clndr-header {
    background-color: #3D3F42 !important;
    color: white;
}











#DIVWebCalendar {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: 700;
}
#DIVWebCalendar .clndr-controls {
  padding: 14px;
  background-color: #414141;
  color: #fff;
  text-align: center;
}
#DIVWebCalendar .clndr-controls .clndr-previous-button {
  float: left;
  text-align: left;
}
#DIVWebCalendar .clndr-controls .clndr-next-button {
  float: right;
  text-align: right;
}
#DIVWebCalendar .clndr-controls .clndr-previous-button,
#DIVWebCalendar .clndr-controls .clndr-next-button {
  width: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  /* Chrome/Safari */

  -moz-user-select: none;
  /* Firefox */

  -ms-user-select: none;
  /* IE10+ */

}
#DIVWebCalendar .clndr-controls .clndr-previous-button:hover,
#DIVWebCalendar .clndr-controls .clndr-next-button:hover {
  opacity: 0.5;
}
#DIVWebCalendar .clndr-grid {
  float: left;
  width: 100%;
  border-right: 2px solid #fff;
}
#DIVWebCalendar .clndr-grid .days-of-the-week {
  width: 100%;
  background-color: #006383 ;
}
#DIVWebCalendar .clndr-grid .days-of-the-week .header-day {
  float: left;
  width: 14.2857%;
  padding: 14px;
  text-align: center;
  color: #fff;
}
#DIVWebCalendar .clndr-grid .days {
  width: 100%;
}

    #DIVWebCalendar .clndr-grid .days .day,
    #DIVWebCalendar .clndr-grid .days .empty {
        float: left;
        width: 14.2857%;
        height: 190px;
        padding: 5px 0px 0px 5px;
        /*text-align: center;*/
        color: #4f4f4f;
        border-bottom: 2px solid #fff;
        background-image: url('../images/triangle.svg');
        background-size: cover;
        background-position: center;
        cursor: pointer;
        position: relative;
    }

    #DIVWebCalendar .clndr-grid .days .day .event-list{
        width: 100%;
        position: absolute;
        bottom: 0px;
        left: 0px;
    }

    #DIVWebCalendar .clndr-grid .days .day .event-list .event-container{
        background-color: #add8e6;
        overflow: hidden;
        height: 22px;
        margin: 4px;
        padding-left: 3px;
        padding-right: 3px;
    }

    #DIVWebCalendar .clndr-grid .days .day .event-list .event-container .event-node{
        font-size: 14px;
        vertical-align: middle;
    }

/*#DIVWebCalendar .clndr-grid .days .day.event .day-number,
#DIVWebCalendar .clndr-grid .days .empty.event .day-number {
  padding-bottom: 4px;
  border-bottom: 2px solid #28851E;
}*/

#DIVWebCalendar .clndr-grid .days .day.adjacent-month .day-number,
#DIVWebCalendar .clndr-grid .days .empty.adjacent-month .day-number {
  opacity: 0.3;
}
#DIVWebCalendar .clndr-grid .days .today {
  background-color: #fff;
  background-image: none;
}
#DIVWebCalendar .event-listing {
  float: left;
  width: 35%;
}
#DIVWebCalendar .event-listing .event-listing-title {
  padding: 14px;
  background-color: #414141;
  text-align: center;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#DIVWebCalendar .event-listing .event-item {
  padding: 14px;
  color: #4f4f4f;
  cursor: pointer;
}
#DIVWebCalendar .event-listing .event-item-location {
  font-weight: 400;
}
.noselect {
  -webkit-user-select: none;
  /* Chrome/Safari */

  -moz-user-select: none;
  /* Firefox */

  -ms-user-select: none;
  /* IE10+ */

}
@media all and (max-width: 768px) {
  #DIVWebCalendar .clndr-grid {
    width: 100%;
    border: none;
  }
  #DIVWebCalendar .event-listing {
    display: none;
  }

}

/********************************* END CALENDAR **********************************/

.panel-group{
    margin-bottom: 15px !important;
}

.page-header{
    margin-top: 10px !important;
    margin-bottom: 15px !important;
    padding: 0px !important;
}

.disabled-div{
    cursor: not-allowed;
    background-color: #eee;
}

.bordered-div{
    border: 1px solid #ccc;
    padding: 10px;
}

li.nav-item.active > a.nav-link{
    background-color: #087fa6;
    color: white !important;
}

.input-group-addon{
    cursor: pointer !important;
}

.top-right-profile-pic{
    max-height: 35px;
    max-width: 35px;
}

#DIVEmployeesAtTheirDesks_Technicians > table > tbody > tr > td {
    font-size: 8pt;
}

#DIVEmployeesAtTheirDesks_Other > table > tbody > tr > td {
    font-size: 8pt;
}

.strike-through{
    text-decoration: line-through;
}

input.checkbox-md {
    transform: scale(1.5);
    margin-right: 5px !important;
}

.signature-pad {
    background-color: #fff;
    border: 2px solid black;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

.navbar-custom ul.nav.nav-tabs li:not(.active) > a {
    background-color: #fff !important;
    color: #087fa6 !important;
    font-weight: bold;
}

.navbar-custom ul.nav.nav-tabs li.active > a {
    background-color: #087fa6 !important;
    color: #fff !important;
    font-weight: bold;
}

.navbar-custom {
    padding-left: 0px;
    padding-right: 0px;
}

.navbar-custom .container-fluid {
    padding: 0px;
    margin: 0px;
}

.navbar-custom {
    /*font-family: "Open Sans", sans-serif !important;*/
    background-color: transparent !important;
    border-color: transparent !important;
}

@media (max-width: 991px) {
    .navbar-custom ul.nav.nav-tabs > li {
        margin-right: 15px;
        width: 100px !important;
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (min-width: 992px) {
    .navbar-custom ul.nav.nav-tabs > li {
        margin-right: 15px;
        width: 190px !important;
        text-align: center;
        margin-bottom: 10px;
    }
}

.ms-drop ul > li label.optgroup {
    padding-left: 5px !important;
}

.ms-drop ul > li label > span {
    padding-left: 3px !important;
}

.ms-drop input[type="checkbox"] {
    margin-top: 0px !important;
}

.multiple-select-indented-option {
    padding-left: 20px !important;
}

.ui-iggrid table th, .ui-iggrid table td {
    word-break: break-word;
}

div.ms-parent.form-control{
    width: 100% !important;
}










/*calendar single day style*/
#DIVCalendar_SingleDay {
    position: absolute;
    left: 50%;
    right: 50%;
    margin-left: 225px;
    width: 450px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border: 8px solid black
}


/* #MAP
================================================== */

.map {
    height: 400px;
    width: 100%;
    background-color: grey;
}


/* #Calendar Day View
================================================== */

.calendar_single_day {
    font-weight: 700;
    width: 600px !important;
    height: 600px !important;
    font-size: 20px;
}

.calendar_single_day_event_list {
    font-weight: 700;
    width: 100% !important;
    height: 580px !important;
    font-size: 25px !important;
    padding-left: 5px;
}

.calendar_single_day_event_node {
    font-weight: 700;
    width: 50% !important;
    height: 100% !important;
    font-size: 20px !important;

}

.calendar_single_day_number {
font-size: 20px !important;
}


.event-day-view {
    margin: 10px;
    cursor: pointer;
    border-radius: 15px;
    max-height: 200px;
    overflow-y: scroll;
}

.day-view-time {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 1.25em;
    font-weight: bold;
}

.day-view-client {
    padding-top: 8px;
    padding-bottom: 8px;
}

.day-view-employee-list {
    padding-top: 8px;
    padding-bottom: 8px;
}

.day-view-notes {
    padding-top: 16px;
    padding-bottom: 8px;
}
.day-view-title {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 1.25em;
    font-weight: bold;
}

#DIVCalendarContainer_DayView .clndr-controls-day-view {
    padding: 14px;
    background-color: #414141;
    color: #fff;
    text-align: center;
}

    #DIVCalendarContainer_DayView .clndr-controls-day-view .clndr-previous-button {
        float: left;
        text-align: left;
    }

    #DIVCalendarContainer_DayView .clndr-controls-day-view .clndr-next-button {
        float: right;
        text-align: right;
    }

#DIVCalendar_DayView .clndr-previous-button:hover,
#DIVCalendar_DayView .clndr-next-button:hover {
    opacity: 0.5;
}


/* #Calendar Week View
================================================== */

.event-week-view {
    margin: 10px;
    cursor: pointer;
    border-radius: 15px;
    height: 210px;
    padding-right: 8px !important;
    padding-left: 8px !important;
    overflow: hidden;
    font-size: 14px !important;
    left: 0px !important;
    right: 0px !important;
    margin-left: 1px !important;
    margin-right: 1px !important;
    margin-top: 3px !important;
    margin-bottom: 3px !important;
}

.week-view-time {
    padding-top: 3px;
    padding-bottom: 3px;
    font-weight: bold;
}

.week-view-date {
    padding-top: 3px;
    padding-bottom: 3px;
    font-weight: bold;
}

.week-view-client {
    padding-top: 3px;
    padding-bottom: 3px;
}

.week-view-employee-list {
    padding-top: 3px;
    padding-bottom: 3px;
}

.week-view-notes {
    padding-top: 16px;
    padding-bottom: 8px;
}

.week-view-title {
    padding-top: 8px;
    padding-bottom: 8px;
    font-weight: bold;
}

.single-day-container-week-view {
    padding: 3px;
}



#DIVCalendarContainer_WeekView .clndr-controls-week-view {
    padding: 14px;
    background-color: #414141;
    color: #fff;
    text-align: center;
}

    #DIVCalendarContainer_WeekView .clndr-controls-week-view .clndr-previous-button {
        float: left;
        text-align: left;
    }

    #DIVCalendarContainer_WeekView .clndr-controls-week-view .clndr-next-button {
        float: right;
        text-align: right;
    }

#DIVCalendar_WeekView .clndr-previous-button:hover,
#DIVCalendar_WeekView .clndr-next-button:hover {
    opacity: 0.5;
}


@media (max-width: 768px) {
    .calendar-week-view-container .calendar_full_week_view_container .col-md-1,
    .calendar-week-view-container .calendar_full_week_view_container .col-sm-1,
    .calendar-week-view-container .calendar_full_week_view_container .col-lg-1 {
        width: 100%;
        *width: 100%;
    }
}

@media (max-width: 992px) {
    .calendar-week-view-container .calendar_full_week_view_container .col-md-1,
    .calendar-week-view-container .calendar_full_week_view_container .col-sm-1,
    .calendar-week-view-container .calendar_full_week_view_container .col-lg-1 {
        width: 14.285714285714285714285714285714%;
        *width: 14.285714285714285714285714285714%;
    }
}

 
@media (min-width: 1200px) {
    .calendar-week-view-container .calendar_full_week_view_container {
        width: 100%;
    }
        .calendar-week-view-container .calendar_full_week_view_container .col-md-1,
        .calendar-week-view-container .calendar_full_week_view_container .col-sm-1,
        .calendar-week-view-container .calendar_full_week_view_container .col-lg-1 {
            width: 14%;
            *width: 14%;
        }
}

@media (min-width: 1200px) {
    .calendar-week-view-container .calendar_partial_week_view_container {
        width: 100%;
    }

        .calendar-week-view-container .calendar_partial_week_view_container .col-md-1,
        .calendar-week-view-container .calendar_partial_week_view_container .col-sm-1,
        .calendar-week-view-container .calendar_partial_week_view_container .col-lg-1 {
            width: 20%;
            *width: 20%;
        }
}



#DIVCalendarContainer_WeekView  .days-of-the-week {
    width: 100%;
    background-color: #006383 !important;
}

    #DIVCalendarContainer_WeekView  .days-of-the-week .header-day {
        float: left;
        width: 14%;
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 3px;
        padding-right: 3px;
        text-align: center;
        color: #fff;
    }

    #DIVCalendarContainer_WeekView .days-of-the-week .header-day-partial-week {
        float: left;
        width: 20%;
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 3px;
        padding-right: 3px;
        text-align: center;
        color: #fff;
    }

    .alert-extreme-danger {
        color: #FFF;
        background-color: red;
        border-color: red;
        /*color: #a94442;
        background-color: #f2dede;
        border-color: #ebccd1;*/
    }

    .alert-extreme-danger hr {
        border-top-color: #FFF;
        /*border-top-color: #e4b9c0;*/
    }

    .alert-extreme-danger .alert-link {
        /*color: #843534;*/
    }

    .force-full-width{
        width: 100% !important;
    }

 /*                     */

.required-field::after {
    content: "*"; /* Adds an asterisk after the label text, with a space */
    color: #c11414;    /* Sets the color of the asterisk to red */
    margin-left: 4px; /* Optional: adds a small space between the label and asterisk */
}

.has-error .error-block
{
    display: block;
    color: #a94442;
    position: absolute;
    bottom: -20;
    left: 0;
}

.error-block {
    display: none;
}

.field_100-33  {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .field_100-33 {

        width: 33.33333333%;
    }
}

@media (min-width: 1200px) {
    .field_100-33-20 {

        width: 20%;
    }
}

.flex {
    display: flex;
}
.flex-wrap {
    flex: 1;
    flex-wrap: wrap;

}

.btn-small {
    text-align: center !important;
    align-items: center !important;
    height: 34px !important;
    width: 34px  !important;
    margin: 0;
    padding: 4px 1px 0 0 !important;
    transform: translatey(0px) !important;
    border-radius: 5px;
}

.btn-light {
    background-color: #9f9f9f;
    border: 2px solid #555;
    color: #333 !important;
    opacity: 0.8;
    border-radius: 5px;
    margin: 0;
    transition: all 0.3s ease;
}
.btn-light:hover {
    background-color: #808080;
}

.btn-save {
    background-color: #23791f;
    border: 2px solid #23791f;
    color: whitesmoke !important;
    opacity: 0.8;
    border-radius: 5px;
    margin: 0;
    transition: all 0.3s ease;
}

.btn-save:hover {
     background-color: #144511;
}

.opacity-25 {
    opacity: 0.1 !important;
}


.thumbs-up-container {
    user-select: none;
    z-index: 9999;
    position: absolute;
    right:0;
    transform: translate(40px, -5px) ;
    opacity: 0 ;
    transition: all 0.3s ease;
    -webkit-animation:  show-thumbs-up 2s ;
    -moz-animation:  show-thumbs-up 2s ;
    animation:  show-thumbs-up 2s ;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    animation-delay: 0s;
}

@-webkit-keyframes show-thumbs-up {
    0%{
        transform: translate(40px, -5px) scale(1);
        opacity: 1;
    }
    90%{
        transform: translate(40px, -5px) scale(1);
        opacity: 1; 
    }
    100%{
        transform: translate(40px, -5px) scale(0);
        opacity: 0;
    }
}


.center {
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: 120px;
    margin: 0 auto;
    top: 50%;
    text-align: center;
    position: relative;
}
.center::after {
    clear: both;
    content: "";
    display: block;
}

.thumb {
    -webkit-animation: scale 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-animation: scale 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    animation: scale 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    /*-webkit-animation-iteration-count: infinite;*/
    /*-moz-animation-iteration-count: infinite;*/
    /*animation-iteration-count: infinite;*/
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    animation-delay: 0s;
    color: #bfbfbf !important;
    opacity: 0;
    font-size: 30px;
    text-decoration: none;
}

@-webkit-keyframes scale {
    0% {
       
        transform: scale(1);
    }
    1% {
        transform: scale(0);
        opacity: 1;
    }
    20% {
        transform: scale(0);
    }
    35% {
        transform: scale(1.4);
    }
    40% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    65% {
        transform: scale(1);
    }
    90% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
@-moz-keyframes scale {
    0% {
        
        transform: scale(1);
    }
    1% {
        transform: scale(0);
        opacity: 1;
    }
    20% {
        transform: scale(0);
    }
    35% {
        transform: scale(1.4);
    }
    40% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    65% {
        transform: scale(1);
    }
    90% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes scale {
    0% {
        
        transform: scale(1);
    }
    1% {
        transform: scale(0);
        opacity: 1;
    }
    20% {
        transform: scale(0);
    }
    35% {
        transform: scale(1.4);
    }
    40% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    65% {
        transform: scale(1);
    }
    90% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.circle-wrap {
    z-indez: -1;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    pointer-events: none;
}

.circle-lg {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border-style: solid;
    border-color: #bfbfbf;
    opacity: 0;
    -webkit-animation: scaleCircle 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-animation: scaleCircle 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    animation: scaleCircle 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    /*-webkit-animation-iteration-count: infinite;*/
    /*-moz-animation-iteration-count: infinite;*/
    /*animation-iteration-count: infinite;*/
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    animation-delay: 0s;
}

@-webkit-keyframes scaleCircle {
    0% {
        border-width: 50px;
        transform: scale(0);
    }
    15% {
        border-color: #f9e8a0;
        border-width: 50px;
    }
    30% {
        border-color: #a8ebc4;
        opacity: 1;
    }
    35% {
        border-color: #aef3d5;
    }
    50% {
        border-width: 0;
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        border-width: 0;
        transform: scale(1);
        opacity: 0;
    }
}
@-moz-keyframes scaleCircle {
    0% {
        border-width: 50px;
        transform: scale(0);
    }
    15% {
        border-color: #f9e8a0;
        border-width: 50px;
    }
    30% {
        border-color: #a8ebc4;
        opacity: 1;
    }
    35% {
        border-color: #aef3d5;
    }
    50% {
        border-width: 0;
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        border-width: 0;
        transform: scale(1);
        opacity: 0;
    }
}
@keyframes scaleCircle {
    0% {
        border-width: 50px;
        transform: scale(0);
    }
    15% {
        border-color: #f9e8a0;
        border-width: 50px;
    }
    30% {
        border-color: #a8ebc4;
        opacity: 1;
    }
    35% {
        border-color: #aef3d5;
    }
    50% {
        border-width: 0;
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        border-width: 0;
        transform: scale(1);
        opacity: 0;
    }
}
.dots-wrap {
    -webkit-transform: translate(-50%, -50%) rotate(3deg);
    -moz-transform: translate(-50%, -50%) rotate(3deg);
    -ms-transform: translate(-50%, -50%) rotate(3deg);
    -o-transform: translate(-50%, -50%) rotate(3deg);
    transform: translate(-50%, -50%) rotate(3deg);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    pointer-events: none;
}

.dot {
    width: 10px;
    height: 10px;
    position: absolute;
    border-radius: 50%;
    background: #00CCFF;
    margin: 0 auto;
    top: 105px;
    left: 0;
    right: 0;
    opacity: 0;
}
.dot:nth-child(6n+1) {
    background-color: #0CFBAB;
}
.dot:nth-child(6n+2) {
    background-color: #F3396B;
}
.dot:nth-child(6n+3) {
    background-color: #08D3FC;
}
.dot:nth-child(6n+4) {
    background-color: #FCDB17;
}
.dot:nth-child(6n+5) {
    background-color: #9b59b6;
}
.dot:nth-child(6n+6) {
    background-color: #34495e;
}

.dot--t {
    -webkit-animation: slideUp 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-animation: slideUp 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    animation: slideUp 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
    animation-delay: 2s;
}
@-webkit-keyframes slideUp {
    0% {
        -webkit-transform: translateY(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    55% {
        -webkit-transform: translateY(-125px) scale(1);
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-125px) scale(0);
    }
}
@-moz-keyframes slideUp {
    0% {
        -moz-transform: translateY(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    55% {
        -moz-transform: translateY(-125px) scale(1);
        opacity: 1;
    }
    100% {
        opacity: 0;
        -moz-transform: translateY(-125px) scale(0);
    }
}
@keyframes slideUp {
    0% {
        -webkit-transform: translateY(0) scale(1);
        -moz-transform: translateY(0) scale(1);
        -ms-transform: translateY(0) scale(1);
        -o-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    55% {
        -webkit-transform: translateY(-125px) scale(1);
        -moz-transform: translateY(-125px) scale(1);
        -ms-transform: translateY(-125px) scale(1);
        -o-transform: translateY(-125px) scale(1);
        transform: translateY(-125px) scale(1);
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-125px) scale(0);
        -moz-transform: translateY(-125px) scale(0);
        -ms-transform: translateY(-125px) scale(0);
        -o-transform: translateY(-125px) scale(0);
        transform: translateY(-125px) scale(0);
    }
}
.dot--tr {
    -webkit-animation: slideUpRight 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-animation: slideUpRight 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    animation: slideUpRight 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
    animation-delay: 2s;
}
@-webkit-keyframes slideUpRight {
    0% {
        -webkit-transform: translate(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    55% {
        -webkit-transform: translate(125px, -80px) scale(1);
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(125px, -80px) scale(0);
    }
}
@-moz-keyframes slideUpRight {
    0% {
        -moz-transform: translate(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    55% {
        -moz-transform: translate(125px, -80px) scale(1);
        opacity: 1;
    }
    100% {
        opacity: 0;
        -moz-transform: translate(125px, -80px) scale(0);
    }
}
@keyframes slideUpRight {
    0% {
        -webkit-transform: translate(0) scale(1);
        -moz-transform: translate(0) scale(1);
        -ms-transform: translate(0) scale(1);
        -o-transform: translate(0) scale(1);
        transform: translate(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    55% {
        -webkit-transform: translate(125px, -80px) scale(1);
        -moz-transform: translate(125px, -80px) scale(1);
        -ms-transform: translate(125px, -80px) scale(1);
        -o-transform: translate(125px, -80px) scale(1);
        transform: translate(125px, -80px) scale(1);
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(125px, -80px) scale(0);
        -moz-transform: translate(125px, -80px) scale(0);
        -ms-transform: translate(125px, -80px) scale(0);
        -o-transform: translate(125px, -80px) scale(0);
        transform: translate(125px, -80px) scale(0);
    }
}
.dot--br {
    -webkit-animation: slideDownRight 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-animation: slideDownRight 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    animation: slideDownRight 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
    animation-delay: 2s;
}
@-webkit-keyframes slideDownRight {
    0% {
        -webkit-transform: translate(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    55% {
        -webkit-transform: translate(125px, 80px) scale(1);
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(125px, 80px) scale(0);
    }
}
@-moz-keyframes slideDownRight {
    0% {
        -moz-transform: translate(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    55% {
        -moz-transform: translate(125px, 80px) scale(1);
        opacity: 1;
    }
    100% {
        opacity: 0;
        -moz-transform: translate(125px, 80px) scale(0);
    }
}
@keyframes slideDownRight {
    0% {
        -webkit-transform: translate(0) scale(1);
        -moz-transform: translate(0) scale(1);
        -ms-transform: translate(0) scale(1);
        -o-transform: translate(0) scale(1);
        transform: translate(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    55% {
        -webkit-transform: translate(125px, 80px) scale(1);
        -moz-transform: translate(125px, 80px) scale(1);
        -ms-transform: translate(125px, 80px) scale(1);
        -o-transform: translate(125px, 80px) scale(1);
        transform: translate(125px, 80px) scale(1);
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(125px, 80px) scale(0);
        -moz-transform: translate(125px, 80px) scale(0);
        -ms-transform: translate(125px, 80px) scale(0);
        -o-transform: translate(125px, 80px) scale(0);
        transform: translate(125px, 80px) scale(0);
    }
}
.dot--b {
    -webkit-animation: slideDown 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-animation: slideDown 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    animation: slideDown 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
    animation-delay: 2s;
}
@-webkit-keyframes slideDown {
    0% {
        -webkit-transform: translateY(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    55% {
        -webkit-transform: translateY(125px) scale(1);
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(125px) scale(0);
    }
}
@-moz-keyframes slideDown {
    0% {
        -moz-transform: translateY(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    55% {
        -moz-transform: translateY(125px) scale(1);
        opacity: 1;
    }
    100% {
        opacity: 0;
        -moz-transform: translateY(125px) scale(0);
    }
}
@keyframes slideDown {
    0% {
        -webkit-transform: translateY(0) scale(1);
        -moz-transform: translateY(0) scale(1);
        -ms-transform: translateY(0) scale(1);
        -o-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    55% {
        -webkit-transform: translateY(125px) scale(1);
        -moz-transform: translateY(125px) scale(1);
        -ms-transform: translateY(125px) scale(1);
        -o-transform: translateY(125px) scale(1);
        transform: translateY(125px) scale(1);
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(125px) scale(0);
        -moz-transform: translateY(125px) scale(0);
        -ms-transform: translateY(125px) scale(0);
        -o-transform: translateY(125px) scale(0);
        transform: translateY(125px) scale(0);
    }
}
.dot--bl {
    -webkit-animation: slideDownLeft 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-animation: slideDownLeft 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    animation: slideDownLeft 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
    animation-delay: 2s;
}
@-webkit-keyframes slideDownLeft {
    0% {
        -webkit-transform: translate(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    55% {
        -webkit-transform: translate(-125px, 80px) scale(1);
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-125px, 80px) scale(0);
    }
}
@-moz-keyframes slideDownLeft {
    0% {
        -moz-transform: translate(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    55% {
        -moz-transform: translate(-125px, 80px) scale(1);
        opacity: 1;
    }
    100% {
        opacity: 0;
        -moz-transform: translate(-125px, 80px) scale(0);
    }
}
@keyframes slideDownLeft {
    0% {
        -webkit-transform: translate(0) scale(1);
        -moz-transform: translate(0) scale(1);
        -ms-transform: translate(0) scale(1);
        -o-transform: translate(0) scale(1);
        transform: translate(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    55% {
        -webkit-transform: translate(-125px, 80px) scale(1);
        -moz-transform: translate(-125px, 80px) scale(1);
        -ms-transform: translate(-125px, 80px) scale(1);
        -o-transform: translate(-125px, 80px) scale(1);
        transform: translate(-125px, 80px) scale(1);
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-125px, 80px) scale(0);
        -moz-transform: translate(-125px, 80px) scale(0);
        -ms-transform: translate(-125px, 80px) scale(0);
        -o-transform: translate(-125px, 80px) scale(0);
        transform: translate(-125px, 80px) scale(0);
    }
}
.dot--tl {
    -webkit-animation: slideUpLeft 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-animation: slideUpLeft 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    animation: slideUpLeft 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
    animation-delay: 2s;
}
@-webkit-keyframes slideUpLeft {
    0% {
        -webkit-transform: translate(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    55% {
        -webkit-transform: translate(-125px, -80px) scale(1);
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-125px, -80px) scale(0);
    }
}
@-moz-keyframes slideUpLeft {
    0% {
        -moz-transform: translate(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    55% {
        -moz-transform: translate(-125px, -80px) scale(1);
        opacity: 1;
    }
    100% {
        opacity: 0;
        -moz-transform: translate(-125px, -80px) scale(0);
    }
}
@keyframes slideUpLeft {
    0% {
        -webkit-transform: translate(0) scale(1);
        -moz-transform: translate(0) scale(1);
        -ms-transform: translate(0) scale(1);
        -o-transform: translate(0) scale(1);
        transform: translate(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    55% {
        -webkit-transform: translate(-125px, -80px) scale(1);
        -moz-transform: translate(-125px, -80px) scale(1);
        -ms-transform: translate(-125px, -80px) scale(1);
        -o-transform: translate(-125px, -80px) scale(1);
        transform: translate(-125px, -80px) scale(1);
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-125px, -80px) scale(0);
        -moz-transform: translate(-125px, -80px) scale(0);
        -ms-transform: translate(-125px, -80px) scale(0);
        -o-transform: translate(-125px, -80px) scale(0);
        transform: translate(-125px, -80px) scale(0);
    }
}



#pageAlertMessages{
    position: absolute;

    bottom: 1rem;
    padding: 2rem;
    right: 0;
    z-index: 10000;
    user-select: none;
    pointer-events: none;
    /*background-color: rgba(0,0,0,0.5);*/
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    border: none;
    outline: none;

}

#pageAlertMessages > div.show{
    opacity: 1;
    transform: translateY(0);
    transition: all .2s ease-in-out;

}
#pageAlertMessages > div{
    opacity: 0;
    transform: translateY(50%);
    transition: all 1s ease-in-out;
}


.toastMessage{
    padding: 15px;

    border-radius: 5px;
    margin-bottom: 1rem;
}

.toastMessage-error {
    background-color: #f44336;
    color: white;
}
