@font-face {
    font-family: montserrat;
    src: url(../fonts/Montserrat-Medium.ttf);
}

html, body {
  padding: 0;
  margin: 0;
  height: 100%;
  min-height: 100%;
  font-family: montserrat;
  color: #002634;
  overflow-x: hidden; 
}

.main-wrapper {
    width: 108%;
    position: absolute;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden; 
}

.header{
    height: 40px;
    background-color: #3a7f8e;
    position: fixed;
    color: #FFFFFF;
    text-align: center;
    font-size: 24px;
    width: 100%;
    z-index: 9980;
}

.app {
    position: relative;
    width: 98%;
    padding-left: 52px;
    min-height: 100vh;
    margin: 0 auto;
    left: 0;
    background-color: #e6f1f5;
    -webkit-box-shadow: 0 0 3px #ccc;
            box-shadow: 0 0 3px #ccc;
    -webkit-transition: left 0.3s ease, padding-left 0.3s ease;
    transition: left 0.3s ease, padding-left 0.3s ease;
    overflow: hidden;  
}

@media (min-width: 1200px) {
    .app .content {
        padding: 60px; 
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .app .content {
        padding: 60px; 
    } 
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .app .content {
        padding: 60px; 
    } 
}

@media (max-width: 767.98px) {
    .app .content {
        padding: 60px; 
    } 
}

@media (max-width: 991.98px) {
    .app .content {
        padding: 60px; 
    } 
}

@media (max-width: 991.98px) {
    .app.sidebar-open {
        left: 0; 
    } 
}

.app.blank {
    background-color: #667380; 
}

.sidebar .sidebar-menu > li.active 
{
    background-color: #002634 !important;
}

.sidebar .sidebar-menu > li.active > a 
{
    color: #002634;
    background-color: #83a2a6 !important;
}
.sidebar .sidebar-menu > li.active > a:hover 
{
    background-color: #83a2a6 !important;
}

.sidebar {
    background-color: #002634;
    width: 82px;
    padding-bottom: 60px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
    z-index: 9999;    
}

.sidebar-fixed .sidebar {
    position: fixed; 
}

.sidebar-open .sidebar {
    left: 0; 
}

.sidebar .sidebar-container {
    position: absolute;
    top: 0;
    bottom: 51px;
    width: 100%;
    left: 0;
    overflow-y: auto;
    overflow-x: hidden; 
}

.sidebar .sidebar-container::-webkit-scrollbar-track {
    background-color: #a7a8a8; 

}

.sidebar .label {
    font-size: .75em;
    display: inline-block;
    border-radius: .2em;
    padding: 2px 5px;
    background-color: #ccc;
    color: #000;
    margin: 0 3px; 
}

.sidebar .label-screenful {
    color: #fff;
    background-color: #6769d4;
}

.sidebar .sidebar-menu {
    font-size: 14px;
    list-style: none;
    margin: 0;
    padding: 0; 
}

.sidebar .sidebar-menu li a:focus,
.open .sidebar .sidebar-menu li a:focus {
    background-color: inherit; 
}

.sidebar .sidebar-menu ul {
    padding: 0;
    height: 0px;
    overflow: hidden; 
}

.loaded .sidebar .sidebar-menu ul {
    height: auto; 
}

.sidebar .sidebar-menu li.active ul {
    height: auto; 
}

.sidebar .sidebar-menu li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    display: block; 
}

.sidebar .sidebar-menu li a:hover,
.sidebar .sidebar-menu li.open > a,
.sidebar .sidebar-menu li.open a:hover {
    background-color: #6595a7; 
}

.sidebar .sidebar-menu .arrow {
    float: right;
    font-size: 18px;
    line-height: initial;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-right: 0; 
}

.sidebar .sidebar-menu .arrow:before {
    content: "\f105" !important; 
}

.sidebar .sidebar-menu li.open > a .arrow {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); 
}

.sidebar .sidebar-menu > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 15px; 
}

.sidebar .sidebar-menu > li.active > a,
.sidebar .sidebar-menu > li.active > a:hover {
    background-color: #16a7b8 !important;
    color: #ffffff !important; 
}

.sidebar .sidebar-menu > li.open > a {
    background-color: #333e48; 
}

.sidebar .sidebar-menu > li > a i {
    margin-right: 5px;
    font-size: 16px; 
}

.sidebar .sidebar-menu > li > a i.arrow {
    font-size: 20px; 
}

.sidebar .sidebar-menu > li > .sidebar-nav > li a {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 50px;
    padding-right: 15px;
    background-color: #333e48; 
}

.sidebar .sidebar-menu > li > .sidebar-nav > li.active a {
    color: #ffffff; 
}

.sidebar .sidebar-menu > li > .sidebar-nav > li > .sidebar-nav > li a {
    padding-left: 60px;
    padding-right: 15px; 
}

.sidebar .sidebar-menu > li > .sidebar-nav > li > .sidebar-nav > li > .sidebar-nav > li a {
    padding-left: 70px; 
}
  
.sidebar-overlay {
    position: absolute;
    display: none;
    left: 200vw;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 5;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    z-index: 15; 
}

@media (max-width: 991.98px) {
    .sidebar-overlay {
        display: block; 
    } 
}

@media (max-width: 767.98px) {
    .sidebar-overlay {
        background-color: rgba(0, 0, 0, 0.7); 
    } 
}

@media (max-width: 991.98px) {
    .sidebar-open .sidebar-overlay {
        left: 0;
        opacity: 1; 
    } 
}

.sidebar-mobile-menu-handle {
    display: none;
    position: absolute;
    top: 50px;
    background-color: transparent;
    width: 30px;
    bottom: 0;
    z-index: 10; 
}

@media (max-width: 991.98px) {
    .sidebar-mobile-menu-handle {
        display: block; 
    } 
}

.windowInfo {
    position: fixed;
    font-size: 12px;
    top: 0px;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9000;
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}

.windowInfo:target {
    opacity:1;
    pointer-events: auto;
}

.windowInfo > div {
    width: 500px;
	height: 570px;
	top: -100px;
    position: relative;
    margin: 15% auto;
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    color:#95d1e8;
    opacity:1;	
    background: -moz-linear-gradient(#002634, #021c26);
    background: -webkit-linear-gradient(#002634, #021c26);
    background: -o-linear-gradient(#002634, #021c26);
	-webkit-box-shadow: 0px 10px 20px #000000;
	-moz-box-shadow: 0px 10px 20px #000000;		
}

.windowSelect {
    position: fixed;
    font-size: 12px;
    top: 0px;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9000;
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;	
}

.windowSelect {
    position: fixed;
    font-size: 12px;
    top: 0px;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;	
}

.windowSelect:target {
    opacity:1;
    pointer-events: auto;
}

.windowSelect > div {
    width: 850px;
	height: 570px;
	top: -100px;
    position: relative;
    margin: 15% auto;
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    background: #fff;
    opacity:1;	
    background: -moz-linear-gradient(45deg, #93acaf, #d3d3d3);
    background: -webkit-linear-gradient(45deg, #93acaf, #d3d3d3);
    background: -o-linear-gradient(45deg, #93acaf, #d3d3d3);
	-webkit-box-shadow: 0px 10px 20px #000000;
	-moz-box-shadow: 0px 10px 20px #000000;		
}

.close {
    background: #ba0101;
    color: #FFFFFF;
    line-height: 25px;
    position: absolute;
    font-size: 12px;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
	cursor: pointer;
}

.close:hover 
{ 
	background: #e65050; 
	cursor: pointer;		
}

.app .content {
    min-height: 70vh;
}

.row {
    margin-bottom: 20px;
}

::-webkit-scrollbar 
{
    width: 15px;
}

::-webkit-scrollbar-thumb 
{
    border-radius: 0;
    background: #002634; 
    z-index: 9900;
}
  
::-webkit-scrollbar-thumb:window-inactive 
{
    background: #002634; 
    z-index: 9900;    
}

.scrollable-element {
    scrollbar-color: red yellow;
  }

.button {
    background: -moz-linear-gradient(#003142, #002634);
    background: -webkit-linear-gradient(#003142, #002634);
    background: -o-linear-gradient(#003142, #002634);
    border: none;
    color: #83a2a6;
    padding: 8px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;	
    cursor:pointer;
    border-radius: 15px;
}

.button:hover {
    background: -moz-linear-gradient(#c4c4c4, #ffffff);
    background: -webkit-linear-gradient(#c4c4c4, #ffffff);
    background: -o-linear-gradient(#c4c4c4, #ffffff);
    color: #002634;
}

.filbutton {
    border-color: #002634;
    border-width: 1px;
    border-style: solid;
    color: #002634;
    padding: 4px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;	
    cursor:pointer;
    border-radius: 10px;
}

.filbutton:hover {
    border-color: #dddddd;
    border-width: 1px;
    border-style: solid;
    color: #dddddd;    
}

.table .thead-dark th {
    background-color: #83a2a6;    
    border-color: #ffffff;    
    color: #002634;
    font-size: 10px;
    font-weight: normal;
    height: 30px;
}

table.dataTable td 
{
    padding: 4px;
    font-size: 10px;
}

table.dataTable tr.odd 
{ 
    background-color: #d5e1e3;     
    font-weight: normal;
    color: #002634;    
}

table.dataTable tr.even 
{ 
    background-color: #e3eff0; 
    font-weight: normal;    
    color: #002634;    
}

table.dataTable tr.odd:hover
{ 
    background-color: #669599; 
    color: #ffffff;
    cursor: pointer;
}

table.dataTable tr.odd.selected
{
    background-color:#003d54;
    color: #ffffff;    
}

table.dataTable tr.even:hover
{ 
    background-color: #669599; 
    color: #ffffff;
    cursor: pointer;    
}

table.dataTable tr.even.selected
{
    background-color:#002634;
    color: #ffffff;
}

table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled
{
    cursor:pointer;
    position:relative;
}

table.dataTable thead .sorting:before,table.dataTable thead .sorting:after,table.dataTable thead .sorting_asc:before,table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:before,table.dataTable thead .sorting_desc:after,table.dataTable thead .sorting_asc_disabled:before,table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc_disabled:before,table.dataTable thead .sorting_desc_disabled:after
{
    position:absolute;
    bottom:0.9em;
    display:block;
    opacity:0.3;
}

table.dataTable thead .sorting_asc:before,table.dataTable thead .sorting_desc:after
{
    opacity:1;
    font-weight: bold;
}

table.dataTable thead .sorting_asc_disabled:before,table.dataTable thead .sorting_desc_disabled:after
{
    opacity:0;
}

.table-responsive {
    font-size: 10px;
}

.buttonmini {
    background: -moz-linear-gradient(#003142, #002634);
    background: -webkit-linear-gradient(#003142, #002634);
    background: -o-linear-gradient(#003142, #002634);
    border: none;
    color: #83a2a6;
    padding: 0px 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;	
    cursor:pointer;
    border-radius: 15px;
}

.buttonmini:hover {
    background: -moz-linear-gradient(#c4c4c4, #ffffff);
    background: -webkit-linear-gradient(#c4c4c4, #ffffff);
    background: -o-linear-gradient(#c4c4c4, #ffffff);
    color: #002634;
}

#search
{
	width:195px;
	padding:10px;
	font-size:16px;
  	font-family: grang;
	color:#FFFFFF;
	background: #2a2a2a;
	background-image: -webkit-linear-gradient(top, #2a2a2a, #0f0f0f);
	background-image: -moz-linear-gradient(top, #2a2a2a, #0f0f0f);
	background-image: -ms-linear-gradient(top, #2a2a2a, #0f0f0f);
	background-image: -o-linear-gradient(top, #2a2a2a, #0f0f0f);
	background-image: linear-gradient(to bottom, #2a2a2a, #0f0f0f);
	opacity:0.8;		
}

#result_search
{
	position:relative;
	width:195px;
	padding:10px;
	display:none;
	overflow:hidden;
    background: #eeeeee;
}

.unshow
{
	padding:10px; 
	height:30px;
	color: #ce2424;
	font-size:14px;
} 

.show
{
	padding:2px 10px 2px 10px; 
	height:30px;
	color: #002634;
	font-size:13px;
}
.show:hover
{
	background: #002634;
  	color: #eeeeee;
	cursor:pointer;
}

.custom-select 
{
    position: relative;
    background-color: #eeeeee;    
    color: #002634;
    height: 30px;
    padding: 0px 6px;
    min-width: 80px;
}

.custom-select:disabled
{
    position: relative;
    background-color: #83a2a6; 
    color:#eeeeee;
}

.custom-input-file {
    color: #FFFFFF;
    background-color: #83a2a6;    
    display:inline-block;
    font-weight:400;
    text-align:center;
    vertical-align:middle;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
    border:1px solid transparent;
    padding:1px 10px 4px 10px;
    font-size:1rem;
    line-height:1.5;
    border-radius:.25rem;
    cursor: pointer;    
}    

.custom-input-file:hover {
    background-color: #6eacb4;
    border-color: #75a2a8;  
}

.custom-input-file .input-file {
    margin: 0;
    padding: 0;
    outline: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    cursor: pointer;
    width: 100px;
}

.dataTables_info {
    color: #000;
}

a:link {
    color: #000;
    text-decoration: none;
  }
  
  /* visited link */
  a:visited {
    color: #000;
    text-decoration: none;
  }
  
  /* mouse over link */
  a:hover {
    color: #000;
    text-decoration: none;
  }
  
  /* selected link */
  a:active {
    color: #000;
    text-decoration: none;
  }

  /* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 9999;
    height: 2em;
    width: 20em;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 150px;
    right: 0;
  }
  
  /* Transparent Overlay */
  .loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
  }

  .tagstruncate {
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .filter_alert {
    text-align: center;
    background-color: #e65050;
    color: #e6f1f5;
    padding: 2px 10px 2px 20px;
    -webkit-border-radius: 20px;    
    width: 160px;   
    cursor: pointer;   
    z-index: 9950; 
    visibility: collapse;
    position: absolute;
    top:10px;
    left:200px;
  }

 .filter_alert:hover { 
	background: #f38b8b; 
	cursor: pointer;		
 }

 .tableCont {
     width: 92%;
 }

 .close2 {
    background: #ba0101;
    color: #FFFFFF;
    line-height: 25px;
    font-size: 12px;
    margin: 0px 0px 0px 10px;
    text-align: center;
    width: 32px;
    padding: 4px 8px 4px 8px;    
    text-decoration: none;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
	cursor: pointer;
}

.grid_container {
  background-color: #FFF;
  -webkit-border-radius: 6px;  
  margin: 10px;
  height: 175px;
  font-size: 10px;
  padding: 4px;
  max-width: 325px;  
}

.grid_container_title {
    width:90%;
    position:relative;
    top:-11px;
    left:-25px;
    color: #3d3c38;
    background-color:#aea999; 
    padding-top: 10px;
    font-size: 14px;
    padding-bottom: 10px;
    margin: 10px;
    text-align: center;
    vertical-align: middle;
    -webkit-border-radius: 6px 6px 0px 0px;
    -moz-border-radius: 6px 6px 0px 0px;
    border-radius: 6px 6px 0px 0px;
}

.text-center {
    text-align: center;
}

.data_container {
    background-color: #FFF;
    -webkit-border-radius: 6px;  
    font-size: 12px;
    padding: 20px 20px 20px 20px;
  }

.rowkanban {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    margin-bottom: 20px;    
    margin-top: 20px;
    width: 102%;       
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        opacity: 1;
    }
}

.dataTables_filter {
    display: none;
}

.dataTables_select_row {
    background-color: #00F;
    color: #FFF;
  }

.td_dataproject {
    color: #000;    
    cursor: pointer;
}

.td_dataproject:hover {
    background-color: #b2dee4;
  }

.titleproject {
    font-size:9px;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    max-height: 14px;
    min-height: 14px;
    cursor:pointer;
    font-weight: normal;
}

.titleproject:hover {
    font-weight: bold;
}

.col_even {
    background-color: rgba(70, 108, 123, 0.1);
}

.menutxt {
    font-size: 8px;
    width: 72px;
    left: 0px;
    padding-top: 26px;
    position: absolute;
    text-align: center;
    z-index: 1000;
    pointer-events: none;
}

.menu_active{
	background-color: #466c7b;    
}

.menu_inactive{
	background-color: #002634;    
}

.menu_img{
    position:relative;
    top:-6px;
}

.menu_subimg{
    position:relative;    
    top:15px;    
    left:18px;        
}

.menu_sub{
    z-index:999;
    min-height:70px;
    background-color: #0e4663;
}

.menu_subtxt{
    font-size: 8px;
    width: 72px;
    left: -2px;
    padding-top: 50px;
    position: absolute;
    text-align: center;
    z-index: 1000;
    pointer-events: none;    
}

.btn_container {
    background-color: #466c7b;
    color: #FFF;
    -webkit-border-radius: 6px;  
    margin: 10px;
    height: 50px;
    font-size: 10px;
    padding: 4px;
    max-width: 200px; 
    cursor: pointer; 
    border-width: 3px;
    border-style: solid;
}

.btn_containertitle {
    font-size:10px;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    max-height: 13px;
    min-height: 13px;
}

.tabltext {
    text-align: center;
}

.wrap {
	height: 30em;
	width: 90%;
	background-color: #B5FFE1;
	padding: 2em;
}
.opensub {
	border-radius: 50%;
}
.opensub:hover,
.opensub.open--on:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.toolbar {
	display: none;
    position: absolute;
    margin-top: -20px;
}

.visibile {
	display: block;	
}

.tool {
	height: 20px;
	width: 20px;
	background-color: #002634;
	border: none;
	border-radius: 50%;
	float: right;
	cursor: pointer;
	margin-top: -6px;
	margin-right: 2px;
    z-index: 99999999;
    -webkit-box-shadow: 0 0 3px #000;
            box-shadow: 0 0 3px #000;                    
}

.tool:hover {
	background-color: #466c7b;
}

.SpaceBox {
    color: #999999;
    background-color:#FFFFFF; 
    padding-bottom: 20px;
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 10px;
    margin: 10px;
    -webkit-box-shadow: 0px 6px 8px 0px rgba(0,0,0,0.32);
    -moz-box-shadow: 0px 6px 8px 0px rgba(0,0,0,0.32);
    box-shadow: 0px 6px 8px 0px rgba(0,0,0,0.32);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.help-access {
	background-color:#000;
    color:#FFF;
}

.daterangepicker {
    z-index: 999999999;
}

select {
    appearance: none;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 0.5em 1em 0.5em 0;
    margin: 0;
    width: 100%;
    text-align: center;
    cursor: pointer;
  }

.pant_submenu {
    right: 7%;
    min-width: 50px;
    min-height: 100px;
    position: absolute;
    top: 60px;
    background-color: #3a7f8e;
    z-index: 999;
    margin-left: 8px;
    padding-top: 10px;
    margin-bottom: 8px;
    border-radius: 10px;
}

.btn_pant_submenu {
    border-radius: 10px;    
    background-color: #3a7f8e;    
}

.btn_pant_submenu:hover {
    border-radius: 10px;    
    background-color: #5499a8; 
    cursor: pointer;   
}

td.dt-control {
    text-align:center;
    cursor:pointer
}

td.dt-control:before {
    height:1em;
    width:1em;
    margin-top:-9px;
    display:inline-block;
    color:white;
    border:.15em solid white;
    border-radius:1em;
    box-shadow:0 0 .2em #444;
    box-sizing:content-box;
    text-align:center;
    text-indent:0 !important;
    font-family:"Courier New",Courier,monospace;
    line-height:1em;
    content:"+";
    background-color:#31b131
}

table.dataTable tr.dt-hasChild td.dt-control:before {
    content:"-";
    background-color:#d33333
}

.project_code {
    background-color: #397e8e;
    color: #FFF;
    font-size: 9px;
    padding: 4px 4px 4px 4px;
    border-radius: 4px;
}

.dot_rep_cl {
    height: 10px;
    width: 10px;
    background-color: #53823c;
    border-radius: 50%;
    display: inline-block;    
}

.dot_rep_clr {
    height: 10px;
    width: 10px;
    background-color: #bab522;
    border-radius: 50%;
    display: inline-block;    
}

.dot_rep_bu {
    height: 10px;
    width: 10px;
    background-color: #12295e;
    border-radius: 50%;
    display: inline-block;    
}

.dot_rep_gl {
    height: 10px;
    width: 10px;
    background-color: #911d8a;
    border-radius: 50%;
    display: inline-block;        
}

.pagebuttonsel {
    border-color: #fff;
    border-width: 1px;
    border-style: solid;
    color: #fff;
    max-width: 150px;
    min-width: 150px;    
    padding-top: 10px;
    padding-bottom: 10px;    
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;	
    cursor:pointer;
    background-color: #3a7f8e;    
}

.pagebuttonsel:hover {
    border-color: #dddddd;
    border-width: 1px;
    border-style: solid;
    color: #dddddd;    
    background-color: #002634;
}

.pagebutton {
    border-color: #3a7f8e;
    border-width: 1px;
    border-style: solid;
    color: #3a7f8e;
    max-width: 150px;
    min-width: 150px;    
    padding-top: 10px;
    padding-bottom: 10px;    
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;	
    cursor:pointer;
    background-color: #fff;    
}

.pagebutton:hover {
    border-color: #dddddd;
    border-width: 1px;
    border-style: solid;
    color: #dddddd;    
    background-color: #002634;
}