:root {
    --el-menu-active-color: #51E1E5 !important;
    --bs-main: #51E1E5 !important;
    --bs-main-dark: #001823 !important;
    --bs-main-accent: #BDCCD4 !important;
    --ct-tertiary-color: #6C757D !important;
}

h1, h2, h3, h4, h5, h6, span, p, strong, input, button, a {
    font-family: 'Montserrat', sans-serif !important;
}

.bg-main {
    --bs-bg-opacity: 1;
    background-color: var(--bs-main) !important;
}

.bg-main-dark {
    --bs-bg-opacity: 1;
    background-color: var(--bs-main-dark) !important;
}

.bg-main-accent {
    --bs-bg-opacity: 1;
    background-color: var(--bs-main-accent) !important;
}

.text-main {
    color: var(--bs-main) !important;
}

.text-main-dark {
    color: var(--bs-main-dark) !important;
}

.text-main-accent {
    color: var(--bs-main-accent) !important;
}

.cursor-pointer {
    cursor: pointer !important;
}

a {
    text-decoration: none;
}

.card {
    border: none;
}

input {
    border: none !important;
    background-color: #F0F3F8 !important;
    box-shadow: unset !important;
	min-height: 45px;
}

button {
	height: 45px;
}

.form-label {
	font-size: 13px;
}

.form-control:focus {
    box-shadow: unset !important;
}

body {
    font-family: 'Montserrat', sans-serif;
}

.el-sub-menu__title, .el-menu-item {
    font-size: 15px !important;
}

.el-menu--horizontal>.el-menu-item.is-active {
    border-bottom: 2px solid #51E1E5 !important;
    color: #51E1E5 !important;
}


@media only screen and (max-width: 600px) {
	.el-menu--collapse {
		width: 0px !important;
		overflow: hidden;
	}
	.el-main {
		min-width: 414px !important;
	}
}

.sidebar-menu .el-menu-item:not(is-active), .sidebar-menu .el-sub-menu:not(is-active) .el-sub-menu__title {
    font-weight: 400;
    color: #6A7686;
}

.sidebar-menu .el-menu-item.is-active {
    background-color: #00131b !important;
    color: #fff;
    font-weight: 400;
}

.el-menu-item.is-active i i {
    color: #51E1E5 !important;
}

.horizontal-bar .el-menu-demo {
    height: 70px;
}

#popup-overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 9998;
    display: block;
    overflow-y: hidden;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#chartdiv {
    width: 100%;
    height: 292px;
}

input.form-check-input[type="checkbox"]:checked {
    background-color: #727CF5 !important;
}

.contact-container {
    position: absolute;
}

@media screen and (max-width: 768px) {
    .contact-container {
        position: static;
    }
}

.badge {
    padding: 5px;
}


/* timeline css */

  .pulse {
	animation: pulse-animation 2s infinite;
  }
  
  @keyframes pulse-animation {
	0% {
	  box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
	}
	100% {
	  box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
	}
  }

 .timeline {
	 position: relative;
	 padding-left: 4rem;
	 margin: 0 0 0 30px;
	 color: white;
}
 .timeline:before {
	 content: '';
	 position: absolute;
	 left: 0;
	 top: 0;
	 width: 4px;
	 height: 100%;
	 background: #f3f3f3;
}
 .timeline .timeline-container {
	 position: relative;
	 margin-bottom: 2.5rem;
}
 .timeline .timeline-container .timeline-icon {
	 position: absolute;
	 left: -88px;
	 top: 15px;
	 width: 50px;
	 height: 50px;
	 border-radius: 50%;
	 text-align: center;
	 font-size: 2rem;
	 background: #4f537b;
}
 .timeline .timeline-container .timeline-icon i {
	 position: absolute;
	 left: 50%;
	 top: 50%;
	 transform: translate(-50%, -50%);
}
 .timeline .timeline-container .timeline-icon img {
	 width: 100%;
	 height: 100%;
	 border-radius: 50%;
}
 .timeline .timeline-container .timeline-body {
	 background: #f3f3f3;
	 border-radius: 3px;
	 padding: 20px 20px 15px;
     color:rgba(0, 0, 0, 0.685)
}
 .timeline .timeline-container .timeline-body:before {
	 content: '';
	 background: inherit;
	 width: 20px;
	 height: 20px;
	 display: block;
	 position: absolute;
	 left: -10px;
	 transform: rotate(45deg);
	 border-radius: 0 0 0 2px;
}
 .timeline .timeline-container .timeline-body .timeline-title {
	 margin-bottom: 1.4rem;
}
 .timeline .timeline-container .timeline-body .timeline-title .badge {
	 background: #4f537b;
	 padding: 4px 8px;
	 border-radius: 3px;
	 font-size: 12px;
	 font-weight: bold;
}
 .timeline .timeline-container .timeline-body .timeline-subtitle {
	 font-weight: 300;
	 font-style: italic;
	 opacity: 0.4;
	 margin-top: 16px;
	 font-size: 11px;
     color: #2a2a2a !important
}
 .timeline .timeline-container.primary .badge, .timeline .timeline-container.primary .timeline-icon {
	 background: var(--bs-main) !important;
}
 .timeline .timeline-container.info .badge, .timeline .timeline-container.info .timeline-icon {
	 background: #11cdef !important;
}
 .timeline .timeline-container.success .badge, .timeline .timeline-container.success .timeline-icon {
	 background: #0ACF97 !important;
}
 .timeline .timeline-container.warning .badge, .timeline .timeline-container.warning .timeline-icon {
	 background: #FFC35A !important;
}
.timeline .timeline-container.danger .badge, .timeline .timeline-container.danger .timeline-icon {
	 background: #fa5c7c !important;
}
.timeline .timeline-container.secondary .badge, .timeline .timeline-container.secondary .timeline-icon {
	background: #6c757d !important;
}
 .author {
	 font-family: inherit;
	 padding: 3em;
	 text-align: center;
	 width: 100%;
	 color: white;
}
 .author a:link, .author a:visited {
	 color: white;
}
 .author a:link:hover, .author a:visited:hover {
	 text-decoration: none;
}
 .author .btn:link, .author .btn:visited {
	 margin-top: 1em;
	 text-decoration: none;
	 display: inline-block;
	 font-family: inherit;
	 font-weight: 100;
	 color: white;
	 text-align: center;
	 vertical-align: middle;
	 user-select: none;
	 background-color: black;
	 padding: 1.5em 2rem;
	 border-radius: 1em;
	 transition: 0.5s all;
}
 .author .btn:link:hover, .author .btn:visited:hover, .author .btn:link:focus, .author .btn:visited:focus, .author .btn:link:active, .author .btn:visited:active {
	 background-color: #1a1a1a;
}
 