/* ==========================================================================
   Custom NJMVC styles, and bootstrap overrides
   ========================================================================== */

:root {
    --logo-blue: #001f4e;
    --logo-green: #80c341;
    --bg-light-grey: #f1f1f1;
    --bg-md-grey: #a7a7a7;
    --bg-drk-grey: #6a6a6a;
    --bg-blue: #0068cb;
    --text-p: #000000d0;
    /*paragraph text at 87% opacity*/
    --text-h: #000000;
    /*heading text at 100% opacity*/
    --text-white: #ffffff;
    --text-white-50: #ffffff7c;
    --transparent: rgba(0, 0, 0, 0);
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

html,
body {
    height: 100%;
    font-family: 'proxima-nova', sans-serif;
    font-style: normal;
    font-weight: 100;
    font-size: 14px;
}


/* Linkable divs */

.clickable {
    border-color: #ffffff;
    color: #001f4e;
    /*for IE compatability, var do not work in IE*/
    color: var(--logo-blue);
}

.clickable:hover {
    background-color: #80c341;
    /*for IE compatability, var do not work in IE*/
    background-color: var(--logo-green);
    border-color: #ffffff;
    color: #001f4e;
    /*for IE compatability, var do not work in IE*/
    color: var(--logo-blue);
}

.clickable:active {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #001f4e;
    /*for IE compatability, var do not work in IE*/
    color: var(--logo-blue);
}

nav .container .nav-item .nav-link {
    width: 160px;
    border-color: #ffffff;
    color: #001f4e;
    /*for IE compatability, var do not work in IE*/
    color: var(--logo-blue);
    font-weight: 550;
    font-size: 16px;
}

.oldPage .container {
    padding-right: 0px !important;
}

nav .container .nav-item:hover .nav-link {
    background-color: #80c341;
    /*for IE compatability, var do not work in IE*/
    background-color: var(--logo-green);
    border-color: #ffffff;
    color: #ffffff;
    /*for IE compatability, var do not work in IE*/
    color: var(--text-white);
    font-weight: 550;
    font-size: 16px;
}

nav .container .nav-item:active .nav-link {
    background-color: #001f4e;
    /*for IE compatability, var do not work in IE*/
    background-color: var(--logo-blue);
    border-color: #ffffff;
    color: var(--text-white);
    font-weight: 550;
    font-size: 16px;
}

@media screen and (max-width: 990px) {
    #navbarNavDropdown {
        width: 100%;
        position: absolute;
        right: 0px;
        background-color: white;
        z-index: 1;
        padding: 12px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    }
    #nav-css-iso {
        padding: 0;
    }
    .navbar-nav {
        width: 100%;
    }
}

@media screen and (max-width: 770px) {
    .navbar-nav .nav-link {
        padding-right: 6px !important;
        padding-left: 6px !important;
    }
    #surchargetitle {
        font-size: 3rem;
    }
}


/* placeholder for before the nav loads */

#navload {
    min-height: 73px;
}


/* because we are using jquery, the whole document has to load before the menu loads, to make this less obvious we have added a transition */

#navload #nav-css-iso {
    -webkit-animation: fadeIn 0.5s;
    animation: fadeIn 0.5s;
}


/* Hero */

.quick-box {
    background-color: #ffffff;
}

.online-box {
    background-color: #ffffff;
    border: 1px solid #80c341;
}

@media only screen and (max-width: 990px) {
    .online-col {
        padding-top: 1rem;
        min-width: 100%;
    }
}

.jumbotron {
    background-color: #FFFFFf;
    /*for IE compatability, var do not work in IE*/
    background-color: #82C341;
    margin-bottom: 0px;
    /*background-image: url(/mvc/2019-update/img/homebg.jpg);*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media screen and (min-width: 1400px) {
    .jumbotron {
        background-position: 50% 30%;
    }
}


/* Hero */

.quick-box {
    background-color: #ffffff;
}

#agency-finder a {
    color: white;
}

.blend-mode-darken {
    mix-blend-mode: darken;
}

.jumbotron h2 {
    font-size: 3rem;
}

#beta-notice a {
    color: #fff;
}

#how-can-we-help-section {
    margin-bottom: 2rem !important;
}

.nj-header-h2 {
    color: #FFFFFF;
    /*for IE compatability, var do not work in IE*/
    /*color: var(--logo-blue);
    text-shadow: 1px 1px 10px #fff, 0px 0px 25px #fff, 0px 0px 40px #fff, 0px 0px 50px #fff;*/
    font-size: 5rem;
    font-weight: 800;
}

.no-shadow {
    color: white;
    text-shadow: none;
    font-size: 3rem;
    font-weight: 800;
}

@media screen and (min-width: 575px) {
    .no-shadow {
        font-size: 5rem;
    }
}

.nj-logo {
    max-height: 80px;
}

.full-width {
    width: 100%;
}


/* quick-link */

#quick-links .card {
    background-color: #001f4e;
    margin: 1rem;
    color: white;
    height: 100%;
    border: none;
}

#quick-links .card img {
    max-width: 100px;
}

.online-col {
    width: 33.3%;
    float: left;
}

.online-col {
    border-right: 1px solid #80c341;
    /*for IE compatability, var do not work in IE*/
    border-right: 1px solid var(--logo-green);
    border-left: 1px solid #80c341;
    border-left: 1px solid var(--logo-green);
    /*  border-top: 1px solid var(--logo-green);
    border-bottom: 1px solid var(--logo-green);*/
}

@media only screen and (max-width: 990px) {}

@media only screen and (max-width: 990px) {
    .faq-section .container-faq .col {
        min-width: 100%;
        border: 1px solid white;
    }
}

@media only screen and (max-width: 990px) {
    .online-col {
        min-width: 100%;
        border: 1px solid white;
    }
}

p.p-2 {
    color: #001f4e;
    /*for IE compatability, var do not work in IE*/
    color: var(--logo-blue);
}

h3.p-2 {
    color: #001f4e;
    /*for IE compatability, var do not work in IE*/
    color: var(--logo-blue);
}

a.p-2 {
    color: #001f4e;
    /*for IE compatability, var do not work in IE*/
    color: var(--logo-blue);
}

.border-top {
    border-top: 1px solid #001f4e;
    /*for IE compatability, var do not work in IE*/
    border-top: 1px solid var(--logo-blue) !important;
}

.border-bottom {
    border-color: #001f4e;
    border-top: 1px solid var(--logo-blue) !important;
    border-bottom: 1px solid var(--logo-blue) !important;
}

@media only screen and (max-width: 990px) {
    .visit-section {
        min-width: 100%;
    }
    nav .container .nav-item .nav-link {
        width: 100%;
        padding-top: 1rem;
    }
}

@media only screen and (min-width: 1200px) {
    nav .nav-item {
        margin-left: 1rem;
    }
}


/* visit section */

.visit-section p {
    margin-top: -10px;
    text-align: right;
}

.visit-title p {
    text-align: right;
}

.visit-section {
    margin-left: auto;
    margin-right: none;
    margin-top: auto;
    margin-bottom: auto;
}

#online-services-img {
    width: 120px;
    height: 120px;
}


/* footer */

footer {
    padding: 30px;
    border-top: 2px solid #c5d9e2;
    background-color: #001f4e;
    /*for IE compatability, var do not work in IE*/
    background-color: var(--logo-blue);
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 600;
}

footer ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

footer ul li {
    margin-top: 0.5rem;
}

footer i {
    margin-right: 0.5rem;
}

footer h5 {
    color: #82c341;
    /*for IE compatability, var do not work in IE*/
    color: var(--logo-green);
    font-weight: bold;
}

body {
    display: flex;
    flex-direction: column;
}

.wrapper {
    flex: 1 0 auto;
    max-width: 100%;
}

.social-small {
    height: 25px;
    width: 25px;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 4px 4px;
}

.social-small:hover {
    opacity: 0.5;
}

.text-bold {
    font-weight: 600;
}

.faq-section {
    background-color: #FFFFFf;
}

.container-online {
    background-color: #ffffff;
    width: 100%;
}

.online-col {
    width: 33.3%;
}

.footer a:hover {
    text-decoration: underline;
}

.transfer {
    background-image: url(../homepage/img/transfer.png);
    background-position: right bottom;
    background-repeat: no-repeat;
}

.container-faq .row {
    background-color: #ffffff;
}

.faq-section div h3 {
    text-transform: uppercase;
    font-size: 1.5rem;
}

.uppercase {
    text-transform: uppercase;
}

.font-sb {
    font-weight: 600;
}

.font-regular {
    font-weight: 400;
}

.footer a:hover {
    text-decoration: underline;
}

.transfer {
    background-image: url(../homepage/img/transfer.png);
    background-position: right bottom;
    background-repeat: no-repeat;
}

.license {
    background-image: url(../homepage/img/license.png);
    background-position: right bottom;
    background-repeat: no-repeat;
}

.address {
    background-image: url(../homepage/img/address.png);
    background-position: right bottom;
    background-repeat: no-repeat;
}

.registration {
    background-image: url(../homepage/img/registration.png);
    background-position: right bottom;
    background-repeat: no-repeat;
}

.bg-f7f3e7 {
    background-color: #f7f3e7;
}

.bg-f1f1f1 {
    background-color: #f1f1f1;
}

.h-80px {
    height: 80px;
}

#agency-finder h5 {
    color: var(--text-white);
    font-size: 12pt;
    text-align: center;
}

#agency-finder-sub a {
    color: var(--logo-blue);
    font-weight: 400;
    font-size: 12pt;
}

#online-services {
    background-color: var(--logo-blue) !important;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

#online-services a {
    color: var(--text-white);
}

.index-bar h5 {
    color: var(--logo-blue);
}

.index-bar {
    background-color: #001f4e !important;
    padding-top: 2rem !important;
    padding-bottom: 1.5rem;
}

#online-col-head h5 {
    color: var(--logo-blue);
}

#online-col-head {
    background-color: #F6F6F6 !important;
    padding-top: 1rem;
    padding-bottom: 1rem;
    width: 33.3%;
}

.form-inline {
    height: 80px;
}

img.seach-btn {
    width: 65px;
    height: 65px;
    position: relative;
    right: 25px;
}

.bg-0085c6 {
    background-color: #0085c6;
}

#agency-finder {
    background-color: #001f4e !important;
    background-color: var(--logo-blue) !important;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

#agency-finder a {
    color: white;
    color: var(--text-white);
}

img.seach-btn {
    width: 65px;
    height: 65px;
    position: relative;
    right: 25px;
}

header.sonj{
	background-color:#363636;
	color: #fff;
	padding: 4px 0;
	z-index: 1;
	margin-bottom: 0px;
	}

header.sonj #logo img {
	padding: 0;
	margin: 0 5px 0 0px;
	max-height: 41px;
	display: inline-block;
}
header.sonj #logo h1 {
	font-size: 1em;
	margin: 0;
	padding: 0 0 0 0;
	line-height: 1;
	width: auto;
	font-weight: normal;
	text-transform: uppercase;
	color: #fff;
}

header.sonj a {
	color: #ffffff;
  
}

header.sonj .gov-bar {
	font-size: .9375rem;
	font-weight: bold;
}
header.sonj .social  {
	font-size: .875rem;
}

header.sonj ul.statewide{ margin: 0px;}
header.sonj ul.statewide li {
	border-right: 1px solid #fff;
	font-size: 14px;
	display: inline-block;
	margin: 0;
	padding: 0 6px;
}
header.sonj ul.statewide li:last-of-type  {
	border-right: none;
	margin-right: 0;
	padding-right: 0;
}

header.sonj .statewide{
	position:relative;
}
header.sonj .statewide  .drop{
	position: absolute;
	right: 0px;
	/*top: 35px;*/
	background: #363636;	
	width:500px;
	display:none;
	z-index: 10;
}
/*XS only*/
@media  screen and (max-width: 575px) {
	body header.sonj .statewide  .drop{
		max-width:100%;
	}
}
header.sonj .statewide  .drop button.drop-close{
	color: #999999;
}

header.sonj .statewide .drop p.disclaimer{
	float:left;
	clear:left;
	width: 100%;
	text-align:left;
}

header.sonj .statewide .drop #google_translate_element{
	float:left;
	clear:left;
	width: 100%;
}



/* footer one */

@media screen and (max-width: 575px) {
    #nj-address {
        text-align: center !important;
    }
    #social {
        text-align: center;
        margin: auto;
        display: block !important;
    }
    .flex-off-mobile {
        display: block !important;
    }
    .text-center-mobile {
        text-align: center !important;
    }
}


/*FOOTER css straight from https://nj.gov/*/

footer.footer {
    background: #0066cc;
    padding: 15px 0;
    color: #fff;
    font-size: 0.875rem;
    word-wrap: break-word;
}

.footer a:link,
.footer a:focus,
.footer a:visited {
    text-decoration: none;
    color: #ffffff !important;
}

.footer a:hover {
    text-decoration: underline;
}

footer.nj {
    background: #333;
    padding: 15px 0;
    color: #fff;
    font-size: 0.875rem;
}

footer .nj {
    background-color: #333;
    color: #fff;
}

.card-columns {
   @include media-breakpoint-only(md) {
        column-count: 1;
    }

    @include media-breakpoint-only(lg) {
        column-count: 2;
    }
    @include media-breakpoint-only(xl) {
        column-count: 2;
    }
}

.ticker {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
}


/* search bar */

.input-group {
    max-height: 30px;
}

.active-pink input[type="text"] {
    border: 3px solid #82c341;
}

.search-bar {
    /* background-color: #001f4e;
  background-color: var(--logo-blue); */
}

.fas {
    color: #ffffff;
}

@media screen and (max-width: 575px) {
    #search {
        min-width: 100%;
    }
    @media screen and (max-width: 575px) {
        #search {
            min-width: 100%;
        }
    }
}

footer a {
    color: white;
}

.text-blue {
    color: #001f4e;
    /*for IE compatability, var do not work in IE*/
    color: var(--logo-blue);
}

.search-icon {
    position: relative;
    right: 2rem;
}

.footer-search,
.gsc-input-box {
    border-radius: 1.5rem;
    border: 0px solid #00000000;
    /*for IE compatability, var do not work in IE*/
    border: 0px solid var(--transparent);
    transition: border .2s;
}

.footer-search:hover,
.gsc-input-box:hover {
    border: 1px solid #82c341;
    transition: border .2s;
}

.footer-search:focus,
.gsc-input-box:focus {
    border: 2px solid #82c341;
    transition: border .2s;
}


/* --------------------------------------------------- */


/* Nav */


/* ------------------------------------------------ */

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 6px;
    top: .8em;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: .1rem;
    margin-right: .1rem;
}

#nav-css-iso .navbar {
    background-color: #ffffff;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

#nj-nav-logo {
    max-height: 60px;
}

#nj-footer-logo {
    max-width: 120px;
}

@media screen and (max-width: 1199px) {
    #nj-nav-logo {
        max-height: 35px;
    }
    #navload {
        min-height: 60px;
    }
}

@media screen and (max-width: 990px) {
    #nj-nav-logo {
        max-height: 50px;
        position: static;
        top: 0;
    }
    .footer-search,
    .gsc-input-box {
        border-radius: none;
    }
}

#nav-css-iso a {
    color: #001f4e;
    font-weight: 600;
    font-family: 'proxima-nova', sans-serif;
}

#nav-css-iso .dropdown-menu {
    border-radius: 0px;
}

#nav-css-iso .dropdown-item:hover>a {
    background-color: #001f4e;
    color: #ffffff !important;
}

#nav-css-iso .dropdown-item:hover {
    background-color: #001f4e;
}

.dropdown-toggle::after {
    content: none;
}

#nav-css-iso .blue-submenu .dropdown-item:hover {
    background-color: #82c341 !important;
}

#nav-css-iso a {
    text-decoration: none;
    font-weight: 400;
}

.blue-submenu {
    background-color: #001f4e;
}

.blue-submenu li {
    background-color: #001f4e;
}

.blue-submenu li a {
    color: white !important;
}

#nav-css-iso .dropdown-item:hover {
    color: white !important;
}


/* --------------------------------------------------- */


/* Nav end */


/* ------------------------------------------------ */


/* Quick links */

.card-header .btn .collapsable-icon {
    color: #80c341;
}

.move-7-r {
    position: relative;
    right: 7px;
}

.quicklinks {
    margin-bottom: 0 !important;
}

.quicklinks h6 {
    text-transform: uppercase;
    font-size: .9rem;
    color: #528330;
}

.logo-green {
    color: #80c341;
}

.logo-blue {
    color: #001f4e;
}

.quicklinks .icon {
    min-height: 25px;
    max-height: 40px;
    float: right;
}

.quicklinks .icon-big {
    min-width: 60px;
    float: right;
}

#quick-links .card:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color: #04214b;
    transition: background-color 1s;
}

#quick-links .card:active {
    background-color: #04214b;
    transition: background-color 1s;
}

#quick-links .col-sm {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

#quick-links {
    margin-bottom: 3rem;
}


/* index bg images */

#dad-driving {
    background-image: url(/mvc/2019-update/img/hp-man-driving.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

#woman-driving {
    background-image: url(/mvc/2019-update/img/hp-woman-driving.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.overflow-hidden {
    overflow: hidden;
}

.quicklinks-link {
    font-weight: 700;
    font-size: 1.2rem;
}

.list-group-item {
    border-top: 0;
    border-bottom: 0;
}


/* for google maps style  */

#map {
    width: 100%;
    min-height: 400px;
    background-color: grey;
}

#map-container {
    max-width: 100%;
    max-height: 400px;
    overflow: hidden;
}

#map-container img,
#map-container picture {
    width: 100%;
}

#search-page .btn {
    border: 1px solid #ced4da;
}

.card-back {
    position: absolute;
    display: block;
    height: 0;
    overflow-y: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: auto;
    color: #00000000
}

.card-back a,
.card-back i {
    color: rgba(0, 0, 0, 0);
    opacity: 0%;
}

.card-back ul {
    list-style: none;
}

/*card trans*/

.card:hover .card-back {
   background-color: #041c3f;
    height: 100%;
    color: white;
    transition-property: all;
    transition-duration: .5s;
    transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}

.card:hover .card-back a,
.card:hover .card-back i {
    color: white;
    opacity: 100%;
	}

@media screen and (max-width: 1000px) {
    .card-body {
        height: 250px;
    }
    .quicklinks-link {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768) {
    .card-body {
        height: auto;
    }
    .quicklinks-link {
        font-size: 1rem;
    }
    .card-back {
        height: 100%;
        position: relative;
        border-top: 1px solid white;
    }
    .card .card-back {
        background-color: #04214b;
        height: 100%;
        color: white;
        transition-property: none;
    }
}

@media screen and (max-width: 575px) {
    .card-body {
        height: auto;
    }
    .card-back {
        position: relative;
        border-top: 1px solid white;
    }
    .card .card-back a,
    .card .card-back i {
        color: white;
        opacity: 100%;
    }
    .card .card-back {
        background-color: #04214b;
        height: 100%;
        color: white;
        transition-property: none;
    }
    .hiddenmobile {
        opacity: 0;
    }
    .hide-mobile {
        display: none;
    }
    .card:hover .card-back:hover {
        background-color: #04214b;
        color: white;
        transition-property: all;
        transition-duration: .01s;
        transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
    }
}

#surcharge .btn {
    white-space: inherit;
    text-align: left;
}


/* nav styles */

.oldPage .navbar-nav .nav-link {
    padding-right: 0 !important;
    padding-left: 0 !important;
}






/* alert */

.alert-danger {
    color: #D1211C;
}

.alert {
    margin-top: 1rem;
}

.cse .gsc-control-cse,
.gsc-control-cse {
    border-color: #001f4e !important;
    background-color: #001f4e !important;
}

.gsc-results-wrapper-visible {
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
}

@media screen and (max-width: 990px) {
    .footer-search,
    .gsc-input-box {
        border-radius: 0;
    }

    .hide-mobile {
        display: none;
    }
}

input {
    color: #001f4e;
}


.alerta {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alerta h4 {
  margin-top: 0;
  color: inherit;
}

.alerta .alert-link {
  font-weight: bold;
}

.alerta > p,
.alerta > ul {
  margin-bottom: 0;
}

.alerta > p + p {
  margin-top: 5px;
}

.alerta-dismissable,
.alerta-dismissible {
  padding-right: 35px;
}

.alerta-dismissable .close,
.alerta-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alerta-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

.alerta-success hr {
  border-top-color: #c9e2b3;
}

.alerta-success .alert-link {
  color: #2b542c;
}

.alerta-primary {
    color:#004085;
    background-color:#cce5ff;
    border-color:#b8daff;
    padding-left: 1rem;
    padding-right: 1rem;
}
.alerta-primary hr {
    border-top-color:#9fcdff;
}

.alerta-primary .alerta-link  {
  color: #921B05;
}
.alerta-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}

.alerta-info hr {
  border-top-color: #a6e1ec;
}

.alerta-info .alert-link {
  color: #245269;
}

.alerta-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}

.alerta-warning hr {
  border-top-color: #f7e1b5;
}

.alerta-warning .alert-link {
  color: #66512c;
}
.map-responsive{
    overflow:hidden;
    padding-bottom:30%;
    position:relative;
    height:0;
}
.map-responsive iframe{
    left:0;
    top:0;
    height:700px;
    width:1000px;
    position:absolute;
}
/*RealID counter start*/
  .timerContainer {
  display: grid;
  background: #5a5b5d;
  position: relative;
  margin: auto;
  max-width: 750px;
  border-radius: 5px;
  
}

h2.countdown {
  text-align: center;
  margin-top: 1em;
  margin-left: 1em;
  margin-right: 1em;
  color: #ffffff;
}
 .tabletimer {
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
	}

  .timer {
  display: inline-block;
  color: #ffffff;
  font-size: 0.7em;
  letter-spacing: 5px;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}

#days, #hours, #minutes, #seconds {
 display: inline-block;
  padding: 20px;
  width: 150px;
  border-radius: 5px;
  /*margin-top: 10px;
  margin-left: 5px;
  margin-right: 5px;*/
	 margin: auto;
  background: #c0c2c4;
  color: #005288;
}
	
.numbers {
  color: #005288;
  font-size: 4em;
}

.timeText {
  color: #005288;
  font-size: 2em;
}
/*realID counter End/*


