/*** added by GTI ***/

.romeo .main-banner-outer .main-banner-container .main-banner-brand {
    padding: 0 1rem;
    /* Additional customisation */
    background: none;
    border:0;
    box-shadow:none;
    /* End */
    }
.romeo .main-banner-outer .main-banner-container .main-banner-txt p {
    font-size: 2.5rem;
    color:#fff;
    }

#activity-modal .modal-dialog {
        width: 65%;
}

/***** CUSTOM PANE CSS, added by GTI / Graeme *****/
.romeo .dashboard-content .dashboard-custom .card h1.dash-card-header {
	/** hiding the custom pane title **/
	display:none;
}
@media (min-width: 992px) {
	.flex-dash-row .dash-card-custom .card-body {
		/** changing the height of the custom pane body **/
		max-height:700px;
	}
}
/***** CUSTOM PANE CSS END *****/

/* ADDED BY KIBBLEM - Dashboard custom css - start */

.app {
    display: grid;
    margin: 4px 0;
    grid-gap: 7.5px 15px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    text-shadow:0 0 3px #000;
}
.tile .tile-heading {
    text-align:center;
    transition: ease 0.3s;
    border:1px solid #343844;
}
.tile {
    min-height:150px;
}
.tile a {
    text-decoration:none;
}
.tile img {
    object-fit: contain;
}
.tile .tile-heading a {
    background-color:#343844;
    border:5px solid #343844;
    margin:0;
    color:#fff;
    padding:2em 10px;
    transition: ease 0.3s;
    font-family:"Montserrat",sans-serif,"Open Sans","Arial","Open Sans";
    display: inline-block;
    width: 100%;
}
.tile-container:hover > .tile-heading a {
    border-color:#fff;
    text-decoration:underline;
}

.romeo .tile a, .romeo .tile a:focus, .romeo .tile a:hover, .romeo .tile a:active {
    color:#fff;
}
  /* Dashboard custom css - end */
  
  /* Login customisations */
.btn-primary {
    background-color:#105165;
}

.target-connect.unauthorised:not(.login) header {
    background:transparent;
}

.client-logo, .site-logo, .section.cover .cover-client-content .cover-client-content-logo img {
 filter:drop-shadow(1px 1px 0 rgba(0,0,0,0.8));
}

.ext-user-dash div {
    display: inline-block; 
    width: 33%;
    min-width: 300px;
    margin-bottom: 7px;
}

.ext-user-button {
 vertical-align: top; 
 width: 99%; 
 height: 150px; 
 border: 0px; 
 background-color: #212529; 
 color: #ffffff; 
 text-align: center; 
 font-size: 24px;   
}

.ext-user-button:hover {
    text-decoration:underline;
    background-color:#00aee0;
}

/* chat icon styling */

#library-chat-widget {
    	position: fixed;
   	z-index: 1000;
	bottom: 0;
    	right: 0;
    	margin: 2.3rem;
    	font-size: 1.6em;
    	border: 5px solid;
    	padding: 0.6rem;
    	width: 70px;
    	height: 70px;
    	border-radius: 50%;
    	text-align: center;
    	background-color: white;
  	color: #5E779C;
	transition: 0.3s;
}

div#chat-animation\ {
    overflow: hidden;
    height: 70px;
    width: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius:50%;
}

#library-chat-widget:hover {
	transform: scale(1.2);
	outline:rgba(0,0,0,0.3) solid 2px;
}

#library-chat-widget i {
	color: #5E779C;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: 0.5s;
}

#library-chat-widget > i {
    left: calc(50px - 50%);
    top: calc(50px - 50%);
}

#library-chat-widget p {
color: #5E779C;
    margin: 0;
    position: absolute;
    top: 120%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 20px;
    transition: 0.5s;
}

#library-chat-widget:hover p {
    top:50%;
}
#library-chat-widget:hover i {
    top: -20px;
}


/* chat enhance */

.chat-online {
color:#0aaa87;
border-color:#0aaa87;
}
.chat-offline {
color:#5E779C;
border-color:#5E779C;
font-size: 30px;
}
.spin {
   animation: spin 1s infinite linear;
}
@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}

#chatStatus {
  position: relative;
    width: 15px;
    height: 15px;
    top: -10px;
    left: 40px;
    border-radius: 50%;
    background: #0aaa87;
    cursor: pointer;
    box-shadow: 0 0 0 rgb(106 190 165 / 40%);
    animation: pulse 2s infinite;
    z-index:10000;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
    box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
      box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
      box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}

/* Chat Enhanced styling */

.s-lib-box-std a, #s-lg-az-cols a {
    padding: 2px;
}
.s-lib-box-std a:hover, #s-lg-az-cols a:hover {
    color: #fff;
    text-decoration: underline;
    background: #002d6d;
}
