﻿/* .'.'.'.'.'.'.'.'.'.'.'.'.'.'.'..'.'.'.'.'..'. */

/* ---- Stylesheet for new base definitions ---- */

/* .'.'.'.'.'.'.'.'.'.'.'.'.'.'.'..'.'.'.'.'..'. */

/* Main EasiPermits Content wrapper */
#epMainContent, #epMainTitle{margin: 0; padding: 0;}

/* clear floated content */

.clearfix:before,
.clearfix:after {
    content: " "; 
    display: table;
}
.clearfix::after {
    clear: both;
}

/* Fade in/out keyframes for hi lighting dynamically displayed optional questions */

@-webkit-keyframes fadeIn { 0% { opacity:0; } 20% {opacity:1;} 40% {opacity:0;} 60% {opacity:1;} 80% { opacity:0; } 100% { opacity:1; } }
@-moz-keyframes fadeIn {  0% { opacity:0; } 20% {opacity:1;} 40% {opacity:0;} 60% {opacity:1;} 80% { opacity:0; } 100% { opacity:1; } }
@keyframes fadeIn {  0% { opacity:0; } 20% {opacity:1;} 40% {opacity:0;} 60% {opacity:1;} 80% { opacity:0; } 100% { opacity:1; } }


.fadeIn {
    top: 0;
    left:0;
    bottom:0;
    position: absolute;
    width: 100%;
    background-color: #ECF8FD;

    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:2000ms;
    -moz-animation-duration:2000ms;
    animation-duration:2000ms;
}

/* Permit quantity selection */
.newRenderedContent, .newRenderedContent .content
 {
   position: relative;  
    width: 98%;
    padding: 5px;
}

/* Process application overlay */

.modalOverlay
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index:100;
    background: url(../GlobalImages/Preloader.gif) center no-repeat rgba(0, 0, 0, 0.8);
    
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";       
    filter: alpha(opacity=80);  
    -moz-opacity: 0.8;          
    -khtml-opacity: 0.8;       
    opacity: 0.8;               
    
}

div.selectOptionList
{
    height: 190px;
    overflow-y: scroll;
}

.middle-inner {padding-bottom: 40px;}

.homeOptionsWrapper {
    /* width: 660px; */
    margin: 0 auto 25px auto;
    text-align: center;
}
.homeOptions
{
    /* float: left; */
    display:inline-block;
    width: 180px; 
    text-align:center;
    max-height: 140px; 
    margin: 10px 10px; 
    padding: 10px;
    background-color: #ccc;
    border-radius: 0px;
    margin-top: 10px;

}

    .homeOptions a span {
        display:inline-block;
        width:100%;
    }

    .homeOptions:hover {
        cursor:pointer;
        -webkit-animation: background-fadein ease-in 1s; /* Safari, Chrome and Opera > 12.1 */
        -moz-animation: background-fadein ease-in 1s; /* Firefox < 16 */
        -ms-animation: background-fadein ease-in 1s; /* Internet Explorer */
        -o-animation: background-fadein ease-in 1s; /* Opera < 12.1 */
        animation: background-fadein ease-in 1s;
        -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;
    }

    /* Reset any custom submit input styles */
    .homeOptions input[type="submit"] {
        background-color: transparent !important;
        background: none !important;
        background-repeat: no-repeat !important;
        background-position:center top !important;
        width: 160px;
        height: 110px;
        padding: 55px 0px 0px 0px;
        border: 0px;
        box-shadow: none !important;
        -moz-box-shadow: none !important;
        -webkit-box-shadow: none !important;
        color: #333;
        font-size: 1em;
    }

#applyfornewpermit {
    background-image: url('../../Images/application_icon.png') !important; 
}

#renewyourPermit {
    background-image: url('../../Images/renewal_icon.png') !important;
}

#payYourPermit {
    background-image: url('../../Images/payment_icon.png') !important;
}

#mobonIcon {
    background-image: url('../../Images/mobon-logo-l.png') !important;
}

@keyframes background-fadein {
    0% { background-color: none; } 100% {background-color: #b7b7b7;}  
    }

    /* Firefox < 16 */
    @-moz-keyframes background-fadein {
         0% { background-color: none; } 100% {background-color: #b7b7b7;}  
    }

    /* Safari, Chrome and Opera > 12.1 */
    @-webkit-keyframes background-fadein {
        0% {  background-color: none; } 100% { background-color: #b7b7b7;}  
    }

    /* Internet Explorer */
    @-ms-keyframes background-fadein {
         0% { background-color: none; } 100% { background-color: #b7b7b7;}  
    }

    /* Opera < 12.1 */
    @-o-keyframes background-fadein {
        0% { background-color: none; } 100% { background-color: #b7b7b7;}  
    }

    .icon-8-link{visibility:hidden;cursor:none;}


/* Default edit button for renewals */  
    .editButtonWrapper a
{
   
    display: inline-block;
    padding: 0 5px 0 5px;
    background: linear-gradient(#ccc,#ccc);
    /*border: 1px solid #888888;*/
    margin: 0 5px 0 5px ;
    -webkit-border-radius: 4px 4px 4px 4px;
    -moz-border-radius: 4px 4px 4px 4px;
    -ms-border-radius: 4px 4px 4px 4px;
    border-radius: 4px 4px 4px 4px;
    
}

.semanticNavigation div
{
    float: left;
}
.semanticNavigation input
{
    float: right;
}

.semanticNavigation input:first-of-type
{
    margin-left: 10px;
}

/* Vehicle search input */

.regLabelWrapper{
    float: left;
    margin-bottom: 20px;
}

.regLabelWrapper label{
    line-height: 28px;
}

.regValWrapper span{margin-left: 10px; line-height: 38px;}

.regWrapper {
    /*float: left;*/
    border:none;
    background-color: #ec0;
    background: -webkit-linear-gradient(#ec0, #ca0);
    background: -webkit-gradient(#ec0, #ca0);
    background: -moz-linear-gradient(#ec0, #ca0);
    background: -o-linear-gradient(#ec0, #ca0);
    background: -ms-linear-gradient(#ec0, #ca0);
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,.75);
    font-family:'Arial Black', Gadget, sans-serif;
    display: inline-block;
    width: 160px;
    color: black;
    margin-bottom: 20px;
    height: 38px;
}

#epMainContent .regWrapper{width: 170px}

.regSearchBtnWrapper{clear: both;}

#RegistrationSearch, #Registration, .lblVRMDisplay { 
   width:100%;
   height: 38px;
   font-size:1.5em;
   border:none;
   background-color: transparent;
   text-align:center;
   text-transform:uppercase;
   box-sizing: border-box;
   
}

.lblVRMDisplay{padding-top: 7px; padding-left: 7px;}

.VRMValMsg{padding: 5px 0 0 5px; display: inline-block}

.regWrapper .plateIcon {
    background: url(../GlobalImages/plate-icon.png) 3px -1px no-repeat #808080;
    width: 24px;
    height: 38px;
    display: block;
    position: absolute;
    overflow: hidden;
    border-radius: 4px 0 0 4px;
}

.regWrapper .plateNumber{line-height: 1.8em; font-size: 1.8em; padding-left: 30px;}

.htooltip
{
    position: absolute;
    border: 1px solid #666;
    border-radius: 5px 5px;
    padding: 5px;
    background-color: #efefef;
    z-index:999;  
}

.tooltipIcon:link, .tooltipIcon:visited, .tooltipIcon:active,.tooltipIcon:hover
{
    text-decoration: none;
}

.tooltipIcon {
	border:2px solid #666;
    border-radius: 50%;
    padding: 0 5px 0 5px;
	background-color:#fff;
	color:#666;
    font-weight:bold;
    font-size: 1.2em;
}

.navigationValMsg{ padding: 0.5em 2px 0 2px;}
.http404Wrapper{padding-bottom: 10px;}
.http404Wrapper img {
    margin: 10px auto;
    display:block;
}
/* Mobon styles */
.mobonSectionLink{padding: 0.4em 2em 0.4em 0em; width: 240px; cursor: pointer; font-weight: bold; font-size: 1.1em}
.mobonSectionLink::after{content: "   \25BC"; color: #ccc}
.mobonSectionLinkActive::after {content: "   \25B2"; color: #ccc}

.mobonUserLink{margin-top: 1em;}

/*general help icon*/
.ep_helpIcon {
    width: 30px;
    height: 30px;
    background-image: url(../GlobalImages/info-icon.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    cursor: pointer;
}


