
@charset "utf-8";

/*************************
Import Files
***************************/
@import url("../fonts/font.css");

/*************************
Reset CSS
***************************/
:root {
    --theme-color: #202d5a;
    --secondary-theme-color: #e1ddd5;
    --theme-grey: #e9e9e9;
    --theme-light-color: #2e5dbc;
    --theme-dark: #013250;
    --white-color: #ffffff;
    --black-color: #000000;
    --btn-grey: #ececec;
    --border-grey: #ced4da;
    --hover-grey: #dfdfdf;

}

a {
    letter-spacing: 0px;
    outline: none;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

html,
body {
    min-height: 100% !important;
    height: 100%;
    font-family:"Merriweather", serif;
}

body {
    padding-top: 0 !important;
    color: #333;
    width: 100%;
    overflow-x: hidden;
    font-weight: 400;
    /*font-family: 'Poppins';*/
    font-family: "Merriweather", serif;
    font-size: 15px;
    font-weight: 500;
    background: #f8f9fb;
    -webkit-animation-delay: 0.1s;
    -webkit-animation-name: fontfix;
    -webkit-animation-duration: 0.1s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;
}

::-webkit-input-placeholder {
    color: #a0a0a0;
    font-size: 15px;
    font-weight: 400;
    /*font-family: 'Poppins';*/
    font-family: "Merriweather", serif;
}

:-moz-placeholder {
    color: #a0a0a0;
    opacity: 1;
    font-size: 15px;
    font-weight: 400;
    /*font-family: 'Poppins';*/
    font-family: "Merriweather", serif;
}

::-moz-placeholder {
    color: #a0a0a0;
    opacity: 1;
    font-size: 15px;
    font-weight: 400;
    /*font-family: 'Poppins';*/
    font-family: "Merriweather", serif;
}

:-ms-input-placeholder {
    color: #a0a0a0;
    opacity: 1;
    font-size: 15px;
    font-weight: 400;
    /*font-family: 'Poppins';*/
    font-family: "Merriweather", serif;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
    /*font-family: 'Poppins';*/
    font-family: "Merriweather", serif;
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

strong {
    font-weight: 600;
}

html[xmlns] .clearfix {
    display: block;
}

html {
    -ms-overflow-style: scrollbar;
}

* html .clearfix {
    height: 1%;
}

ul,
li {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    border: 0;
    outline: none;
    color: var(--theme-color);
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    /*font-family: 'Poppins';*/
    font-family: "Merriweather", serif;
}

p,
div {
    /*font-family: 'Poppins';*/
    font-family: "Merriweather", serif;
    /*font-size: 15px;*/
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    font-weight: 400;
}

.defaultFont-Family {
    font-family: "Merriweather", serif;
}

li:hover a {
    text-decoration: none;
}


a,
img {
    border: 0;
    outline: none;
}
.bold { font-weight: 600; }

.close:not(:disabled):not(.disabled) {
    outline: none;
}
.white-color { color: var(--white-color); }

/*************************
Common Utility Styles
***************************/
.rotate-90 { 
-ms-transform: translateY(90px);
-webkit-transform: translateY(90px);
-moz-transform: translateY(90px);
-o-transform: translateY(90px);
transform: translateY(90px);
 }

/*************************
Reset CSS
***************************/
/* .bg-primary.bg-soft { background-color: rgba(85,110,230,.25)!important; } */
.form-control {
    border: 1px solid var(--border-grey);
    font-size: 15px;
    height: 38px;
    border-radius: 0;
}

.form-check-input:focus {
    box-shadow: none;
}

.form-check-input[type=checkbox] {
    font-size: 18px;
    
}
input[type=checkbox]:checked {
    background-color: var(--theme-dark);
    border-color: var(--theme-dark);
}

.tab-content p {
    line-height: 24px;
}

.header li a {
    color: #fff;
}

/* header */

.header {
    background-color: #0a1220;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, .1);
}

    .header ul {
        margin: 0;
        padding: 0;
        list-style: none;
        overflow: hidden;
        background-color: #fff;
    }

    .header li a {
        display: block;
        padding: 17px 18px;
        text-decoration: none;
    }

        .header li a:hover,
        .header .menu-btn:hover {
            background-color: #f4f4f4;
            color: #0a1220;
        }

    .header .menu {
        background-color: #0a1220;
    }

    /* menu */

.header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}

.header .menu li{
    padding-top:0px;
    padding-bottom:0px;
}

.header .menu li a {
    font-size: 15px;
    font-family: Verdana;
}

.logo-sec {
    background-image: url(../images/mainmasthead-elections.jpg);
    background-repeat: no-repeat;
    background-position: center;
    border-bottom: 1px solid #7c7e80;
    display: none;
}

    .logo-sec img {
        top: 0.5rem;
        position: relative;
        padding: 10px;
    }

.searchBar {
    border-top: 6px solid #9c1a34;
    padding-top: 8px;
    width: 100%;
    height: 3rem;
}

#search_form input[type="text"] {
    max-width: 65%;
    padding: 5px 10px;
    height: 26px;
}

input.search_ico {
    background: url(../images/search_icon.png) top center no-repeat #9c1a34;
    width: 40px !important;
    height: 29px;
    text-indent: -5000px;
    overflow: hidden;
    border: 0;
}

.small-screen-image {
    display: inline;
    height:6rem;
}

/* menu icon */

.header .menu-icon {
    cursor: pointer;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
    margin-top: .5rem;
}

    .header .menu-icon .navicon {
        background: #fff;
        display: block;
        height: 2px;
        position: relative;
        transition: background .2s ease-out;
        width: 18px;
    }

        .header .menu-icon .navicon:before,
        .header .menu-icon .navicon:after {
            background: #fff;
            content: '';
            display: block;
            height: 100%;
            position: absolute;
            transition: all .2s ease-out;
            width: 100%;
        }

        .header .menu-icon .navicon:before {
            top: 5px;
        }

        .header .menu-icon .navicon:after {
            top: -5px;
        }

/* menu btn */

.header .menu-btn {
    display: none;
}

    .header .menu-btn:checked ~ .menu {
        max-height: fit-content;
    }

    .header .menu-btn:checked ~ .menu-icon .navicon {
        background: transparent;
    }

        .header .menu-btn:checked ~ .menu-icon .navicon:before {
            transform: rotate(-45deg);
        }

        .header .menu-btn:checked ~ .menu-icon .navicon:after {
            transform: rotate(45deg);
        }

    .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
    .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
        top: 0;
    }

/* 48em = 768px */

@media (min-width: 1200px) {

    .header li {
        float: left;
    }

        .header li a {
            padding: 17px 20px;
        }

    .header .menu {
        display: flex;
        justify-content: space-around;
        max-height: none;
    }

    .header .menu-icon {
        display: none;
    }

    .logo-sec {
        display: block;
        padding: 5px 0px;
    }

    .small-screen-image {
        display: none;
    }
}


/* footer styles */

.footer-top {
    padding: 35px 0 0px;
    background-color: #191919;
    color: #d7d7d7;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-style: italic;
    line-height: 22px;
    font-size: 14px;
}

.footer-top h2 {
    font-family: 'Georgia';
    font-size: 24px;
    font-style: normal;
}

    .footer-top h2 span {
        font-family: 'Great Vibes', cursive;
        font-size: 2.5rem;
    }

    .footer-top p {
        font-size: 14px !important;
        font-family:'Georgia';
        font-style: italic;
    }

    section#footer {
        background-color: #000;
        border-top: 1px solid #000;
        padding: 15px 0;
        text-align: center;
        color: #fff;
    }

#footer>p {
    padding: 0rem 1rem;
    line-height:22px;
}

.footerNav {
    padding-top: 8px;
    width: 100%;
    /* height: 34px; */
}

.footerNav a {
    text-decoration: none;
}

.footerNav ul.footermenu {
    margin: 0;
    padding: 0;
    z-index: 9999;
    /*margin-left: 30px;*/
    margin-top: 5px;
}

.footerNav ul.footermenu>li {
    display: inline;
    list-style: none;
    padding-bottom: 5px;
}

.footerNav ul.footermenu>li>a,
.footerNav ul.footermenu>li>a:hover {
    color: #CCC;
    font-size: 12px;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    font-style:normal;
}

.footerNav ul.footermenu li.devider {
    color: #CCC;
    top: -1px;
    padding: 0;
    font-size: 8px;
    position: relative;
    margin: 0 9px 0 5px;
    font-family: Tahoma;
    border-right: solid 1px #bbb;
}

.footerNav select {
    display: none;
}

span.footer-exception{
    font-size:10px;
}

a.text-yellow{
    color:yellow;
}

select {
    width: 220px;
    border: 1px solid #ccc;
    background-color: #fff;
}

div.header-top-sec {
    background-image: url("../images/header-image.jpg");
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center;
    width:100%;
    height:150px;
}

    div.header-top-sec img {
        height: 150px;
        padding: 10px;
        position: absolute;
        left: 4rem;
    }

/* menubar */
.menubar {
    background: #ffffff;
    height: 65px;
    padding: 0 60px;
    -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}

.sticky {
    background-color: #0c1f49;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
}

/*.menubar .logo {
    text-decoration: none;
    color: #122f48;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
}*/

/* nav menu button */

.nav-btn {
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    z-index: 2;
}

.menubar .nav-btn__lines::before,
.menubar .nav-btn__lines::after {
    content: "";
    position: absolute;
}

.menubar .nav-btn__lines,
.menubar .nav-btn__lines::before,
.menubar .nav-btn__lines::after {
    width: 1.5rem;
    height: 0.1rem;
    background: #132f48;
    transition: all 0.4s ease-in-out;
}

    .menubar .nav-btn__lines::before {
        transform: translateY(-0.5rem);
    }

    .menubar .nav-btn__lines::after {
        transform: translateY(0.5rem);
    }

.menubar .nav-items {
    display: flex;
    align-items: center;
    position:absolute;
    top:.5rem;
}

.menubar ul li {
    list-style: none;
    transition: 0.3s ease;
}

    .menubar ul li .arrow {
        transition: all 0.3s ease-out;
    }

    .menubar ul li a {
        text-decoration: none;
        color: #0b57d2;
        font-weight: 800;
    }

/* dropdown menu */

.menubar .dropdown {
    position: relative;
}

.expand-btn:after {
    content: " \25BE";
    opacity: 0.4;
    margin-left: 5px;
}

.menubar .dropdown-menu,
.menu-right {
    position: absolute;
    background: #e9ecef;
    width: 190px;
    line-height: 30px;
    border-radius: 0 0 5px 5px;
    top: 65px;
    border-top: 1px solid white;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}

.menubar .menu-right {
    top: 0;
    left: 100%;
}

.menubar .dropdown-menu,
.menu-left {
    left: unset;
    right: 0;
}

.menubar .menu-left {
    left: -100%;
}

.menubar .nav-item {
    display: flex;
    justify-content: space-between;
    /*width: 100%;*/
    padding: 0.5rem 2rem;
    font-size: 14px;
}

    .menubar .nav-item:hover {
        color: #ff5722;
    }

.nav-item.first-item {
    padding: 0.5rem 0.5rem;
}

.nav-parent-link{
    color:#fff !important;
    font-weight:900;
}

.menubar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.menubar .dropdown-right:hover .menu-right {
    left: 100%;
    opacity: 1;
    visibility: visible;
}

.menubar .dropdown-right:hover .menu-left {
    left: -100%;
}

/* container */
.container {
    padding: 0 15px;
    max-width: 1200px;
}

.container-custom-margin {
    margin: 80px auto !important;
    /*text-align: center !important;*/
}

footer .footer-top p {
    color: #d7d7d7;
}

h1 {
    /*font-weight: 700;*/
    /*line-height: 10vw;*/
    /*color: #ffffff;
    text-transform: uppercase;*/
}


/* animation menu hamburger */
.nav-btn.open .nav-btn__lines {
    transform: translateX(1rem);
    background: transparent;
}

.nav-btn.open .nav-btn__lines::before {
    transform: rotate(45deg) translate(-0.5rem, 0.5rem);
    background: #132f48;
}

.nav-btn.open .nav-btn__lines::after {
    transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
    background: #132f48;
}


.nav-tabs li {
    text-align: center;
    width: 50%;
}

.nav-tabs li a:hover {
    text-decoration: none;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: var(--theme-color);
    color: #ffffff;
}

.nav-tabs .nav-link {
    background-color: var(--btn-grey);
    color: #000;
}
.nav-tabs .nav-link { border-color: var(--bs-border-color-translucent); }
.nav-tabs .nav-link:not([aria-selected='true']):hover { background-color: var(--hover-grey); border-color: var(--bs-border-color-translucent); }
.card, .card-header, .card-header:first-child, .card-body { border-radius: 0; }
.custom-panel-card-group { max-width: 1500px; }
.custom-panel-card-group .card-body { display: flex; align-items: center; justify-content: center; }
.custom-panel-card-group .card { position: relative; width: 250px; height: 130px; }
.step-forward-arrow { text-align: center; }
.step-forward-arrow img { width: 100%; height: 100%; min-width: 25px; max-width: 50px; }

.elections-div {
    display: flex;
    justify-content: flex-start;
}
.elections-combo {
    flex-grow: 1;
    margin-left: 10px;
    padding-left: 10px;
}
.ContactLocalAuthority {
    margin-top: 50px;
}
/*************************
Animation CSS
***************************/
.zoom-in-out-box {
    animation: zoom-in-zoom-out 1.6s ease infinite;
}
  
  @keyframes zoom-in-zoom-out {
    0% {
      transform: scale(1, 1);
    }
    50% {
      transform: scale(1.1, 1.1);
    }
    100% {
      transform: scale(1, 1);
    }
  }


/*************************
Button CSS
***************************/
.btn {
    line-height: 27px;
    font-size: 15px;
    height: 40px;
    border-radius: 0;
}

.btn-check:focus+.btn,
.btn:focus {
    color: #ffffff;
    text-decoration: none;
    outline: none;
    box-shadow: none;
}
button.btn:focus {
    background-color: var(--theme-light-color);
}

.hyperlink,
.hyperlink:focus,
.hyperlink:hover, a:hover, a:focus {
    color: var(--theme-color);
}
.btn.btn-grey {
    background-color: var(--btn-grey);
    border-color: var(--btn-grey);
}
.btn.btn-grey:focus, .btn.btn-grey:hover  {
    background-color: var(--hover-grey);
    border-color: var(--bs-border-color-translucent);
}
.input-group .btn { border-top-left-radius: 0; border-bottom-left-radius: 0; border-top-right-radius: .375rem; border-bottom-right-radius: .375rem; }


/*************************
Color CSS
***************************/
.theme-bg {
    background-color: var(--theme-color);
    color: #ffffff;
}

.secondary-theme-bg {
    background-color: var(--secondary-theme-color);
    color: #ffffff;
}
.grey-theme-bg {
    background-color: var(--theme-grey);
}


.grey-bg {
    background-color: var(--btn-grey);
}

.btn.theme-bg:hover {
    color: #ffffff;
    background-color: var(--theme-light-color);
}

.theme-clr {
    color: var(--theme-color);
}

/*************************
Table & Form Styles
***************************/
.form-control:focus { border-color: var(--theme-color); outline: none; box-shadow: none; }
.form-label {
    margin-bottom: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: 38px;
    font-size: 15px;
}

/*************************
Select2 Styles
***************************/
.select2-container--default .select2-selection--single { height: 38px; border-color: var(--border-grey); border-radius: 0; }
.select2-dropdown, .select2-container--default .select2-search--dropdown .select2-search__field { border-color: var(--border-grey); }
.select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 38px; color: var(--black-color); font-size: 15px; }
.select2-container--default .select2-selection--single .select2-selection__arrow { top: 8px; right: 5px; }

/*************************
Custom Styles
***************************/
.login-panel-card, .full-panel-card {
    width: 620px;
    height: 100%;
    top: 0;
    right: 0;
    border-radius: 0;
    margin: 0 auto;
}
.login-panel-card {
    width: 620px;
}
.full-panel-card {
    width: 100%;
}
.login-panel-card a:hover {
    text-decoration: underline;
}
.login-panel .tab-content {
    height: calc(100vh - 325px);
    overflow: auto;
    border-width: 0px 1px 1px 1px;
    border-color: var(--bs-border-color-translucent);
    border-style: solid;
    padding: 15px;
    border-radius: 0 0 0.375rem 0.375rem;
}


.nav-link[aria-selected="true"] .white-icon,
.nav-link[aria-selected="false"] .black-icon {
    display: block;
}

.nav-link[aria-selected="true"] .black-icon,
.nav-link[aria-selected="false"] .white-icon {
    display: none;
}

/** Tracking Style **/
.tracking-icon { 
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    top: 150px;
    left: auto;
    right: auto;
    background-color: var(--theme-grey);
    z-index: 999;
 }
 .tracking-icon p { color: #000; }
 .tracking-icon:after { 
    position: absolute;
    content: "";
    width: 260px;
    height: 1px;
    background-color: #cfcfcf;
    left: 45px;
    top: 23px;
    z-index: 0;
 }
 .custom-panel-card-group .card:last-child .tracking-icon:after {
    width: 0;
 }

.Error-Message-MS {
    border: 3px solid #e12728;
    color: #e12728;
    background-color: white;
}

 @media only screen and (min-width: 1600px) {
    .tracking-icon:after { width: 280px; } 

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .login-panel-card { left: 0; margin: 15px auto; }
    .login-panel-card { height: auto; }
    .login-panel .tab-content { height: auto; max-height: calc(100vh - 325px); }
    .custom-panel-card-group { max-width: 500px; margin: 0 auto; }

}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .custom-panel-card-group { max-width: 620px; }
}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {
    .step-forward-arrow img { max-width: 40px; }
    .custom-panel-card-group .card { width: 170px; height: 170px; }
   
    .tracking-icon:after { width: 220px; }
    .tracking-icon { top: 200px; margin-bottom: 50px; }

}

@media only screen and (max-width: 1199px) {
    .custom-panel-card-group { margin: 0 auto; }
    .custom-panel-card-group .card { text-align: center; height: auto; margin: 0 auto; width: 100%; }
    .step-forward-arrow img { 
        -ms-transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .tracking-icon { top: auto; left: -80px; }
    .tracking-icon:after { width: 35px; }
  
    .custom-panel-card-group .card:last-child .tracking-icon:after {
        width: 35px;
     }
     .zoom-in-out-box { animation: none; }

}


@media only screen and (max-width: 767px) {
    .tracking-panel-with-icon .login-panel-card { width: 90%; padding: 15px 0; }
    .tracking-panel-with-icon .custom-panel-card-group { margin: 0; float: right; width: calc(100% - 90px); }

}

.AddressSearchImage{
    padding-top: 15px;
    width: 50%;
}