﻿/* Import of CSS Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@100;200;300;400;500;600;700;800&display=swap');

@font-face {
    font-family: WhitneyBook;
    src: url(/efile-ui/fonts/WhitneyCondensed-Light.otf);
    font-weight: 300;
}
@font-face {
    font-family: WhitneyBook;
    src: url(/efile-ui/fonts/WhitneyCondensed-Book.otf);
    font-weight: 400;
}
@font-face {
    font-family: WhitneyBook;
    src: url(/efile-ui/fonts/WhitneyCondensed-Medium.otf);
    font-weight: 500;
}
@font-face {
    font-family: WhitneyBook;
    src: url(/efile-ui/fonts/WhitneyCondensed-Semibold.otf);
    font-weight: 600;
}
@font-face {
    font-family: WhitneyBook;
    src: url(/efile-ui/fonts/WhitneyCondensed-Black.otf);
    font-weight: 700;
}
/* End Import of CSS Fonts */

/* CSS Variables */
:root {
    --efile-green: #63C000;
    --efile-blue: #28396B;
    --efile-blue-hover: #28396B;
    --accent-color: #FFD712;
    --accent-color-hover: #EFC702;
    --main-font-size: 17px;
    --white: #ffffff;
    --black: #000000;
    --light-blue: #FAFAFA;
    --border-gray: #dedede;
    --heading-font: 'WhitneyBook', sans-serif;
    --body-font: 'Fira Sans', sans-serif;
}
/* End CSS Variables */

/* General */
html{
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    /* background-color: #FAFAFA; */
    font-family: var(--body-font) !important;
    font-size: 17px !important;
}
body > form{
    margin-bottom: 0px;
}
article#page-content h1{
    font-family: var(--heading-font);
} 
article#page-content h2, 
article#page-content h3, 
article#page-content h4, 
article#page-content h5, 
article#page-content h6 {
    font-family: var(--body-font);
}
article#page-content h2 {
    font-size: 28px !important;
}
article#page-content h3 {
    font-size: 24px !important;
}
article#page-content h4 {
    font-size: 20px !important;
    font-weight: 500 !important;
}
article#page-content h2.home-heading{
    font-family: var(--heading-font) !important;
    margin-top: 0 !important;
    color: var(--efile-blue);
}
.line{
    border-top: 1px dashed var(--border-gray);
}
.extra-small {
    font-size: 11px;
}
/* End General */

/* Base.Master */
.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    height: 665px;
    z-index: 1;
}

.top {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 50px 1fr;
    grid-template-areas: "topbar" "pagetitle";
}

/* Possible Top Menu Structure */
.menu-button {
    font-size: 32px;
    position: relative;
    top: 7px;
}
.search__column {
    padding-left: 50px;
}
.menu-display.navbar-toggler.active .mixicon-menu.menu-button{
    font-size: 45px;
    top: -4px;
}
.menu-display.navbar-toggler.active .mixicon-menu:before{
    content: "×";
}
.dropdown-header{
    display: none;
}
.dropdown-toggle::after {
    content: none !important;
    display: none;
}

.dropdown-toggle .arrow::after {
    font-family: 'Mixicon' !important;
    content: "\e909";
}
.dropdown-menu li a.dropdown-toggle .arrow::after{
    content: "\e909" !important;
}
.dropdown-menu li a.dropdown-toggle::after {
    content: none !important;
    display: none;
}

.dropdown-menu li a.dropdown-toggle .arrow::after {
    font-family: 'Mixicon' !important;
    content: "\e900" !important;
}

ul.dropdown-menu li a {
    padding-left: 0 !important;
    display: flex;
    color: var(--black);
    font-weight: 400;
    font-family: var(--body-font) !important;
    text-decoration: none;
}

.dropdown-menu {
    min-width: 150px !important;
    top: 95%;
    background-color: var(--white) !important;
    border: none !important;
    border-radius: 5px;
    -webkit-box-shadow: 0 2px 6px 0 rgba(31,31,35,0.3);
    -moz-box-shadow: 0 2px 6px 0 rgba(31,31,35,0.3);
    box-shadow: 0 2px 6px 0 rgba(31,31,35,0.3);
    z-index: 9999 !important;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #F6F5FF !important;
}

.dropdown-item:hover, .dropdown-item:focus {
    color: var(--black);
    text-decoration: none;
    background-color: #F6F5FF;
}

.dropdown-item, .dropdown-item a {
    font-size: 15px;
    color: var(--black);
    font-weight: 300;
}
.navbar-nav .dropdown.nav-item .nav-link{
    display: flex !important;
    align-items: end;
    font-family: var(--body-font) !important;
}
.navbar-nav .dropdown.nav-item .nav-link .arrow{
    margin-left: 5px;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--white);
    font-size: 15px;
    font-weight: 300;
}

.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, .5);
    border-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        margin-right: 20px !important;
    }
}
@media only screen and (max-width: 1500px){
    .bg{
        height: 700px;
    }
}
@media (max-width: 991px) {
    .dropdown-header{
        display: block;
    }
    .navbar-nav .dropdown-header{
        background: transparent;
        position: absolute;
        top: 0;
        padding: 6px 0 6px 13px;
    }
    .navbar-nav .dropdown-header .btn{
        border-radius: 5px;
    }
    .bg{
        height: 650px;
    }
}
@media (max-width: 767px) {
    .bg {
        height: 850px;
        overflow: hidden;
    }
}
@media only screen and (max-width: 540px) {
    .bg {
        height: 1000px;
        overflow: hidden;
    }
}
.navbar-expand-lg .navbar-nav .nav-link {
    margin-right: 15px !important;
}

@media (max-width: 1024px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        margin-right: 12px !important;
        font-size: 14px !important;
    }
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 4px 0px 6px 0px;
    margin-right: 25px;
    font-size: 15px;
    font-weight: 400;
}

.navbar-expand-lg .navbar-nav .active .nav-link {
    padding-top: 2px !important;
    border-top: 2px solid #FFF !important;
}

@media (max-width:991px) {

    .menu-button {
        font-size: 32px;
        position: absolute;
        top: 8px;
        right: 15px;
        color: #fff;
    }

    .search__column {
        padding-left: 15px;
    }

    /* Mobile Menu Fixes */
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 15px 0px 15px 0px;
        margin-right: 25px;
        font-size: 15px;
        font-weight: 400;
    }

    .navbar-expand-lg .navbar-nav .active .nav-link {
        padding-top: 15px !important;
        border-top: none !important;
    }
}

@media (max-width: 991.98px) {
    .offcanvas-collapse {
        position: fixed;
        top: 50px; /* Height of navbar */
        bottom: 0;
        left: 100%;
        width: 50%;
        overflow-y: auto;
        visibility: hidden;
        background-color: var(--white);
        transition-timing-function: ease-in-out;
        transition-duration: .3s;
        transition-property: left, visibility;
        z-index: 1;
        border-radius: 5px;
    }

        .offcanvas-collapse.open {
            left: 50%;
            visibility: visible;
            display: initial !important;
        }

        .offcanvas-collapse .navbar-nav .active > .nav-link {
            border-top: 0px;
        }

        .offcanvas-collapse .pull-right {
            float: left;
        }

        .offcanvas-collapse ul li a {
            padding-left: 1rem !important;
        }

        .offcanvas-collapse ul li.active a {
            background-color: var(--black);
        }

        .offcanvas-collapse ul li ul li a {
            background-color: transparent !important;
        }

        .offcanvas-collapse ul.dropdown-menu li a {
            color: var(--black);
        }

    .dropdown-menu {
        min-width: 150px !important;
        background-color: var(--white) !important;
    }

    .dropdown-item.active, .dropdown-item:active {
        background-color: #F6F5FF !important;
    }

    .dropdown-item {
        padding: 0.35rem 1.5rem;
    }

    .dropdown-toggle::after {
        float: none;
    }

    .navbar-dark .navbar-toggler {
        color: rgba(255, 255, 255, 1);
        border-width: 0px;
        position: relative;
        top: -5px;
        right: -15px;
        padding-right: 15px;
    }

    .dropdown-item:hover, .dropdown-item:focus {
        background-color: #F6F5FF;
    }

    .dropdown-item .dropdown-menu {
        max-width: 175px !important;
    }

    .dropdown-item .dropdown-item {
        white-space: normal !important;
    }
    .navbar-nav .dropdown-menu {
        -webkit-box-shadow: 0 2px 6px 0 rgb(31 31 35 / 30%);
        -moz-box-shadow: 0 2px 6px 0 rgb(31 31 35 / 30%);
        box-shadow: 0 2px 6px 0 rgb(31 31 35 / 30%);
    }
    /* new css navbar*/
    .offcanvas-collapse .navbar-nav .nav-link {
        padding: 10px 15px 10px 0px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--black);
        margin-right: 0px !important;
    }
    .navbar-nav .dropdown.nav-item, 
    .navbar-nav .dropdown.nav-item .dropdown-item{
        border-bottom: 1px solid var(--border-gray);
    }

    .navbar-nav .dropdown-item .dropdown-menu {
        max-width: 100% !important;
    }
    .navbar-nav .dropdown-item {
        padding: 0rem 0rem !important;
    }
    .navbar-nav ul li a{
        padding: 10px 15px 10px 15px !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .offcanvas-collapse ul li.active > a {
        background-color: #F6F5FF;
        color: var(--black) !important;
    }

    .navbar-nav .dropdown.nav-item.show{
        background-color: var(--white);
        position: absolute;
        z-index: 9;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        border: 0px;
    }
    .navbar-nav .dropdown.nav-item.show > a{
        justify-content: end;
        margin-right: 0px !important;
        margin-bottom: 4px;
        border-bottom: 1px solid var(--border-gray);
        background-color: var(--white);
        color: var(--black);
        text-align: end;
        padding-left: 90px !important;
    }
    .navbar-nav .dropdown-menu{
        box-shadow: none;
        background: transparent !important;
        padding-top: 0;
    }
    .navbar-nav .dropdown-item.dropdown-submenu.show .dropdown-menu.show{
        box-shadow: none;
        background-color: var(--white) !important; 
        transition-timing-function: ease-in-out;
        transition-duration: .3s;
        transition-property: left, visibility;
    }
    .navbar-nav  .dropdown-item.dropdown-submenu.show{
        width: 50%;
        height: 100%;
        position: fixed;
        top: 50px;
        right: 0;
        background: var(--white);
        z-index: 1;
        overflow: auto;
        transition-timing-function: ease-in-out;
        transition-duration: .3s;
        transition-property: left, visibility;
        padding-top: 0 !important;
    }
    .navbar-nav .dropdown-item.dropdown-submenu.show.active{
        background-color: var(--white) !important;
    }
    .navbar-nav  .dropdown-item.dropdown-submenu.show > a{
        justify-content: end;
        margin-right: 0px !important;
        margin-bottom: 5px;
        border-bottom: 1px solid var(--border-gray);
        padding: 10px 15px 10px 90px !important;
        text-decoration: none;
        overflow-x: scroll;
        white-space: break-spaces;
        text-align: end;
    }
    .navbar-nav .dropdown.nav-item.show>a .arrow {
        display: none;
    }
    .navbar-nav .dropdown-item.dropdown-submenu.show>a .arrow {
        display: none;
    }
}

@media only screen and (max-width: 540px) {
    .navbar-nav  .dropdown-item.dropdown-submenu.show{
        width: 100%;
    }
    .offcanvas-collapse {
        border-radius: 0 !important;
    }
    .offcanvas-collapse.open {
        left: 0% !important;
    }
    .offcanvas-collapse {
        width: 100% !important;
    }
}
/* End Possible Top Menu Structure */


/* Possible Sub Menu Structure */
#subnav {
    padding-left: 126px !important;
}

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
    }

#subnavSection a {
    color: #ffffff;
}

#subnav li a:link, #subnav li a:visited, #subnav li a:hover, #subnav li a:active {
    color: #ffffff;
}

#subnavSection ul.dropdown-menu li a {
    padding-left: 0 !important;
    color: #4b4c4c;
}

#subnav li::before {
    font-family: 'Mixicon' !important;
    content: "\e918";
    margin: 0 5px 0 -10px;
    color: #fff;
}

/* End Possible Sub Menu Structure */

/* Top Page Message Styles and Menu Overrides */
.top__bar__bg {
    height: 50px;
    width: 100%;
    display: block;
    position: fixed;
    background: var(--efile-blue);
    z-index: 1040;
}
/* .top .top__bar__bg.active{
    background: var(--efile-blue) !important;
} */
.top__bar {
    grid-area: topbar;
    width: 100%;
    z-index: 1040;
    height: 50px;
    display: grid;
    grid-template-columns: 100px 1fr 260px;
    grid-template-areas: "logo nav toplinks";
    max-width: 1140px;
    margin: 0 auto;
}

.top__logo {
    grid-area: logo;
}

    .top__logo .logo {
        float: left;
        width: 65px;
        margin-right: 35px;
        margin: 10px 0 0 15px;
    }

.top__nav {
    grid-area: nav;
    position: relative;
    top: 0px;
}

.top_right_links {
    grid-area: toplinks;
    padding-right: 15px;
    text-align: right;
    padding-top: 9px;
}

    .top_right_links .btn-link {
        top: 1px !important;
        position: relative !important;
    }

    .top_right_links a, .top_right_links a:hover {
        font-weight: 400;
        color: #fff;
        font-size: 15px;
        text-decoration: none;
    }
    .top_right_links a.btn-link.search-link {
        padding: 0 !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        text-decoration: none;
    }

.page__title {
    grid-area: pagetitle;
    padding: 60px 100px 85px;
    background-color: var(--efile-blue) !important;
}

    .page__title h1 {
        color: var(--white);
        font-size: 42px;
        text-rendering: optimizeLegibility;
        text-transform: none;
        line-height: 1;
        text-align: start;
        font-weight: 600;
        font-family: var(--heading-font) !important;
    }

.sub__title {
    grid-area: subtitle;
    border-bottom: 1px solid #EEE;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: #fff;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* .efile-collapse#faq-accordion .b-top.collapse{ */
.efile-collapse [data-parent]{
    border-top: 3px solid var(--accent-color) ;
}
.efile-collapse [data-toggle="collapse"]{
    font-weight: 500;
    position: relative;
    padding-right: 1.5rem !important;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.efile-collapse [data-toggle="collapse"]:after{
    font-weight: 400;
    font-size: 24px;
    display: flex;
    align-items: center;
    line-height: normal;
    position: absolute;
    right: 10px;
}
.efile-collapse [aria-expanded="false"]:after{
    content: "+";    
}
.efile-collapse [aria-expanded="true"]:after{
    content: "-";
}

.efile-collapse.sidebar-collapse{
    border-radius: 5px;
}
.efile-collapse.sidebar-collapse [data-parent]{
    border-top: 3px solid var(--accent-color) ;
}
.efile-collapse.sidebar-collapse [data-toggle="collapse"]{
    font-weight: 500;
    position: relative;
    padding-right: 1.5rem !important;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.efile-collapse.sidebar-collapse [data-toggle="collapse"]:after{
    font-weight: 400;
    font-size: 24px;
    display: flex;
    align-items: center;
    line-height: normal;
    position: absolute;
    right: 10px;
}
.efile-collapse.sidebar-collapse [aria-expanded="false"]:after {
    content: "+";    
}
.efile-collapse.sidebar-collapse [aria-expanded="true"]:after {
    content: "-";
}

.sidebar .efile-collapse.sidebar-collapse [data-toggle="collapse"] {
    font-weight: 400;
    font-size: 15px;
}
.sidebar .sidebar-img {
    border-radius: 5px;
}


@media (min-width: 576px) {
    .container {
        max-width: 100%;
    }

    .navbar .container {
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    .navbar .container {
        max-width: 1140px;
    }
}

@media (min-width: 1500px) {
    .container {
        max-width: 1400px;
    }

    .navbar .container {
        max-width: 1400px;
    }

    .top__bar {
        max-width: 1400px;
    }

    .home-tax-tools, .home-reviews {
        display: grid;
        grid-gap: 2em;
        grid-template-columns: repeat(auto-fit, minmax(400px,1fr)) !important;
        padding: 0px 20px;
    }

    .sidebar {
        padding-left: 50px;
        padding-right: 50px;
    }
}
@media only screen and (max-width: 1366px){
    .home-tax-tools{
        grid-template-columns: repeat(auto-fit, minmax(300px,1fr)) !important;
    }
}

@media (max-width:991px) {

    .flat article#page-content {
        margin-top: 50px !important;
    }
}
@media only screen and (max-width: 540px) {
    .home-tax-tools{
        grid-gap: 1em;
    }
}

.btn {
    border-radius: 25px;
    border: none !important;
}

    .btn:not(.btn-lg) {
        padding: 0.2rem 1rem !important;
    }

.btn-success {
    color: #000 !important;
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    font-size: 15px;
}

    .btn-success:hover {
        color: #000 !important;
        background-color: var(--accent-color-hover) !important;
        border-color: var(--accent-color-hover) !important;
    }

[data-toggle=buttons] > .btn input[type=checkbox], [data-toggle=buttons] > .btn input[type=radio], [data-toggle=buttons] > .btn-group > .btn input[type=checkbox], [data-toggle=buttons] > .btn-group > .btn input[type=radio] {
    position: absolute;
    clip: rect(0,0,0,0);
    pointer-events: none;
}

.btn.active, .btn:active {
    outline: 0;
}

.btn .mixicon {
    position: relative !important;
    top: -2px !important;
    font-size: 19px !important;
    margin-left: 7px;
    vertical-align: middle !important;
}


#btnUserSearch .mixicon-search, #btnUserSearch2 .mixicon-search, #btnUserSearch4 .mixicon-search, #btnUserSearchPage .mixicon-search {
    margin-left: 0px;
    top: 0px !important;
}

span.mixicon.mixicon-help-support-2 {
    margin-right: 4px;
}

.searchbarmargin {
    padding-right: 0px;
    margin-top: 7px;
}

.searchbox {
    color: #222;
    border: 0 !important;
    border-radius: 5px 0 0 5px;
}

#searchrowbox {
    color: #444;
    height: 36px;
    border: 1px solid #bbb !important;
    border-right: 0 !important;
    border-radius: 25px 0 0 25px;
}

.searchbutton {
    background-color: var(--efile-blue);
    color: #FFF;
    border: 1px solid var(--efile-blue);
    font-size: 24px;
    border-radius:  0 25px 25px 0;
    font-weight: 700 !important;
    height: 36px;
}

.content__container {
    padding: 20px 20px 10px;
    background-color: #fff;
    height: auto;
    margin-top: -30px;
    border-radius: 5px;
    position: relative;
}

    .content__container.flat {
        border: none;
        background-color: transparent !important;
        box-shadow: none;
        margin-top: 0;
        border-radius: 0;
        position: unset !important;
        padding: 20px 0 10px;
    }

        .content__container.flat .topPaginationDisplay {
            margin-top: -10px;
        }

.content-row-header {
    width: 100%;
}

.row-header-blue .row {
    background-color: var(--light-blue) !important;
    color: var(--black) !important;
    border-bottom: none !important;
    border-radius: 10px;
}

.rounded-header .row {
    border-radius: 10px;
}



.content-row-header .row {
    background-color: transparent;
    border-top: none !important;
    border-right: none;
    border-left: none;
    padding: 10px 5px 8px;
    font-weight: bold;
    border-bottom: 3px solid var(--accent-color);
    margin: 0;
}

.rounded-header + .content-row-table, .row-header-blue + .content-row-table {
    border-top: none !important;
}

.content-row-table {
    margin-bottom: 15px;
}

    .content-row-table .row {
        border-bottom: 1px solid #eeeeee;
        border-left: none;
        border-right: none;
        padding: 15px 5px;
        margin: 0;
    }

.part-of-set {
    border: none !important;
    padding: 15px 5px 0px !important;
}

.topPaginationDisplay {
    float: right;
    padding-right: 15px;
    margin-bottom: -5px;
}

.page-cat {
    font-size: 12px;
    position: relative;
    top: 25px;
    right: 10px;
    height: 20px;
}

#content {
    margin-top: 0px !important;
    padding-bottom: 50px;
    min-height: 1500px !important;
    background-color: var(--light-blue);
}

#flat-top .searchbarmargin {
    display: none !important;
}

.article-content {
    padding-left: 35px;
    padding-right: 0px !important;
    border-right: none;
}

.homepage-content {
    padding-left: 15px;
    background-color: #f5f5f5;
}

@media(max-width:991px) {
    .article-content {
        padding-right: 15px !important;
        border-right: none;
        padding-left: 15px;
    }

    article#page-content h1 {
        font-size: 25px;
    }

    #flat-top .searchbarmargin {
        position: relative !important;
        top: 1px !important;
        display: flex !important;
    }

    .topPaginationDisplay {
        top: 25px !important;
        height: 20px !important;
        float: right !important;
        position: relative;
        right: 0 !important;
    }

    #flat-top .topPaginationDisplay {
        top: 36px !important;
        right: 15px !important;
    }
}
@media only screen and (max-width: 540px) {
    .content__container{
        padding: 20px 8px 10px;
    }
}

article#page-content {
    clear: both;
    margin-top: 15px !important;
    word-break: break-word;
}

/*  Top Message */
.top-message + .top .top__bar__bg {
    top: 26px;
}

.top-message + .top .page__title {
    margin-top: 26px !important;
}

.top-message {
    background-color: var(--efile-blue);
    position: fixed;
    width: 100%;
    height: 26px;
    z-index: 1050;
}

    .top-message .message {
        margin: 0 auto;
        max-width: 600px;
        padding: 2px 30px;
        border-radius: 0 0 10px 10px;
        background-color: var(--accent-color);
        text-align: center;
        font-weight: 400;
        font-size: 14px;
        display: table;
    }

    .top-message + .top + #content .sidebar {
        top: 105px !important;
    }

@media(max-width:650px) {
    .top-message .desktopOnly {
        display: none !important;
    }

    .efslidermsg_inner {
        max-width: 80% !important;
    }
}

/* End Top Message */
@media (max-width:991px) {

    .page__title {
        padding: 30px 40px 55px;
    }

        .page__title h1 {
            font-size: 30px;
        }

    .top__bar {
        grid-template-columns: 60px 1fr;
        grid-template-areas: "logo toplinks";
    }

    .top_right_links {
        padding-right: 5px !important;
    }
}

/* home page top */
.home-tron-box{
    background-color: var(--white);
    margin: 3.5rem auto;
    border-radius: 20px;
    padding: 45px 45px 0 45px;
}

/* home-tron-left */
.home-tron .home-tron-left h1 {
    margin: 30px 0 !important;
    padding: 0px !important;
    border: none !important;
    font-weight: 600 !important;
    font-size: 58px !important;
    color: var(--efile-blue);
}

.home-tron .home-tron-left h1 .pre-info {
    color: var(--efile-blue);
    font-weight: 500;
    font-size: 35px;
    letter-spacing: 1px;
    display: block;
    margin-left: 0px;
    margin-bottom: -60px;
}

.home-tron .home-tron-left p {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 20px !important;
}
.home-tron .home-tron-left .btn {
    font-size: 20px;
    padding: 0.2rem 1.75rem !important;
    margin: 2.5rem 0 5.5rem 0;
}
.home-tron .home-tron-left .btn span {
    font-size: 11px;
}

/* home-tron-right */
.home-tron-right {
    position: absolute;
    bottom: 0; 
}
/* .home-tron-left:before {
    display: none;
    content: '';
    font-family: 'Mixicon';
    font-size: 72px;
    padding: 50px;
    color: #242e4c;
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    background-color: rgba(228,238,255,.04);
    z-index: -1;
    left: 70%;
    top: 40%;
}

.home-tron-left:after {
    display: none;
    content: '';
    font-family: 'Mixicon';
    font-size: 72px;
    padding: 50px;
    color: #242e4c;
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 100px;
    background-color: rgba(228,238,255,.05);
    z-index: -1;
    left: -5%;
    top: -10%;
} */


    /* .home-tron-right:before {
        display: none;
        content: '';
        font-family: 'Mixicon';
        font-size: 72px;
        padding: 50px;
        color: #242e4c;
        position: absolute;
        width: 170px;
        height: 170px;
        border-radius: 100px;
        background-color: rgba(228,238,255,.08);
        z-index: 5;
        left: 380px;
        top: 200px;
    }

    .home-tron-right:after {
        display: none;
        content: '';
        font-family: 'Mixicon';
        font-size: 72px;
        padding: 50px;
        color: #242e4c;
        position: absolute;
        width: 120px;
        height: 120px;
        border-radius: 100px;
        background-color: rgba(228,238,255,.07);
        z-index: 5;
        left: 30px;
        top: 20px;
    } */

.home-content .count-search{
    background-color: var(--white);
    border-radius: 20px;
}
.home-content .count-search .search{
    width: 75%;
}
.home-content .count-search .home-auth-efile {
    width: 80px;
}

h2.home-heading {
    font-size: 35px !important;
    font-weight: 600 !important;
    text-align: center;
    margin-bottom: 40px !important;
    margin-top: 60px !important;
    font-family: var(--heading-font) !important;
    position: relative;
}

    h2.home-heading.mt-30 {
        margin-top: 30px !important;
    }

p.home-heading-sub {
    text-align: center;
    margin: -40px auto 20px !important;
    font-weight: 400 !important;
    color: #666;
    position: relative;
    font-size: 21px;
}

@media only screen and (max-width:1499px) {
    .home-tron .home-tron-left .btn {
        margin: 0 0 2rem 0;
    }
    .home-tron .home-tron-left h1{
        margin: 0 0 30px 0 !important;
    }
}

@media only screen and (max-width:991px) {
    .home-tron .home-tron-left h1{
        margin: 30px 0 30px 0 !important;
    }    
    .home-tron-box{
        margin: 1rem auto;
        padding: 0 20px;
    }
    .home-tron-left h1 {
        font-size: 50px !important;
    }
    .home-tron .home-tron-left .btn{
        margin: 0 0 2.5rem 0;
    }    
    .home-content .count-search .search{
        width: 100%;
    }
}

@media only screen and (max-width:768px) {
    .home-tron-box{
        padding: 10px;
    }
    .home-tron .home-tron-left .btn{
        margin: 0 0 1rem 0;
    }
    .home-tron-right {
        position: unset;
        bottom: 0; 
    }
    html{
        overflow-x: hidden;
        scroll-behavior: smooth;
    }
    .scrollbar {
        width: 100% !important;
    }
    .home-tax-tools {
        grid-template-columns: initial !important;
        padding: 0 !important;
    }
    
}
@media only screen and (max-width: 540px) {
    h2.home-heading{
        font-size: 25px !important;
    }
    .home-reviews {
        padding: 0;
    }
}

.home-tax-tools, .home-reviews {
    display: grid;
    grid-gap: 2em;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    padding: 0px 20px;
}

.home-review {
    text-align: center;
    border: 1px solid #eee;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 9px 0px var(--efile-blue);
    -moz-box-shadow: 0px 0px 9px 0px var(--efile-blue);
    box-shadow: 0px 0px 25px -15px var(--efile-blue);
    cursor: pointer;
}

.home-tool h3 {
    font-weight: 500 !important;
    font-size: 20px !important;
    margin: 0px 0px !important;
    line-height: 3em !important;
    color: #333 !important;
}

/* calculator tools */
.home-tax-tools .home-tool{
    border-radius: 5px !important;
    overflow: hidden;
    background-color: var(--white);
    text-align: start;
    padding: 1rem;
    border-bottom: 5px solid var(--efile-blue);
    transition: all .4s ease;
    -webkit-box-shadow: 0 2px 6px 0 rgba(31,31,35,0.3);
    -moz-box-shadow: 0 2px 6px 0 rgba(31,31,35,0.3);
    box-shadow: 0 2px 6px 0 rgba(31,31,35,0.3);
}
.home-tax-tools .home-tool .icon{
    font-size: 50px;
    color: var(--accent-color);
    transition: 0.2s ease-in-out;
}
.home-tax-tools .home-tool:hover{
    -webkit-box-shadow: 0 0px 10px 5px rgb(31 31 35 / 10%);
    -moz-box-shadow: 0 0px 10px 5px rgb(31 31 35 / 10%);
    box-shadow: 0 0px 10px 5px rgb(31 31 35 / 10%);
    transition: 0.2s ease-in-out;
    cursor: pointer;
}
.home-tax-tools .home-tool h3{
    background-color: transparent;
    text-align: center;
}
.home-tax-tools .home-tool-heading{
    background-color: transparent;
    transition: 0.2s ease-in-out;
    border-radius: 0px;
    padding: 0;
    height: auto;
    position: relative;
    margin-bottom: 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.home-tax-tools .home-tool-heading p{
    font-size: 17px;
    color: var(--black);
    text-align: center;
    margin: 0 !important;
}
/* end calculator tools */

.home-reviews {
    margin-top: 20px;
}

.home-review {
    font-size: 16px;
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.review-star:after {
    font-family: 'Mixicon' !important;
    content: "\e994";
    color: #ffa012;
    font-size: 25px;
    font-style: normal;
}



#home-why-choose {
    width: 85%;
    margin: 0 auto;
}

    #home-why-choose ul {
        width: 100%;
        display: flex;
        justify-content: space-around;
        list-style: none;
        padding: 0px;
        background: #ffffff;
        border: 1px solid #e5e5e5;
        border-radius: 25px;
        font-weight: 500;
        font-size: 17px;
        -webkit-box-shadow: 0px 0px 9px 0px var(--efile-blue);
        -moz-box-shadow: 0px 0px 9px 0px var(--efile-blue);
        box-shadow: 0px 0px 25px -20px var(--efile-blue);
    }

    #home-why-choose .green-audio-player {
        margin: 20px 0px 25px !important;
    }

    #home-why-choose ul li {
        padding: 10px 0;
        cursor: pointer;
    }

        #home-why-choose ul li.active {
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 7px;
        }

.home-choose {
    grid-gap: 1.5em;
    grid-template-columns: 1fr 1fr;
    display: none;
    min-height: 310px;
}

    .home-choose button {
        font-size: 15px !important;
    }

    .home-choose img {
        width: 100% !important;
        border-radius: 5px;
    }



/* Home.master */
/* General */
.pricing,
.home-pricing-section,
.tax-fun,
.efile-review,
.why-choose-efile-main,
.tax-talk{
    background: #f5f5f5; 
    padding: 60px 0px;
    color: #0b1e2d;
}
.tax-assistance-and-support,
.compare-it,
.despair-over-it,
.calculators-tools{
    padding: 60px 0px;
    background-color: var(--white);
}
/* End General */

.compare-it .row .compare-image img {
    height: auto;
    width: auto;
}
.tax-talk .row img.tax-talk-image {
    width: auto;
    height: 400px;
    border-radius: 5px;
    object-fit: cover;
}

/* why-choose-efile-main */
.why-choose-efile .row img{
    width: 100%;
    height: 400px;
    border-radius: 5px;
    object-fit: cover;
}
.why-choose-efile-main .right-info {
    padding: 30px 40px;
    border-radius: 20px;
    background-color: var(--white);
    /* height: 470px; */
}

.why-choose-efile-main .right-info .text-right-info {
    font-size: 18px;
}

.why-choose-efile-main .section-gif {
    height: 364px !important;
}
.why-choose-efile-main .section-gif img {
    border-radius: 20px;
}

.why-choose-efile-main .taxesfaction-2 {
    width: 25%;
    /* height: fit-content; */
}

.why-choose-efile-main .home-page-gif img{
    width: 260px;
}

@media only screen and (max-width:1499px) {
    .why-choose-efile-main .section-gif {
        height: auto !important;
    }
}
@media only screen and (max-width:991px) {
    .why-choose-efile-main{
        padding: 0 !important;
    }
    .why-choose-efile-main .right-info {
        padding: 40px 10px 20px 10px;
        height: auto;
    }
    .why-choose-efile-main .right-info .text-right-info{
        font-size: 17px;
    }
    
}

@media only screen and (max-width:768px) {
    .why-choose-efile-main .section-gif {
        width: 100% !important;
    }
    .why-choose-efile-main .section-gif img {
        max-width: 100% !important;
    }
    .why-choose-efile-main .taxesfaction-2{
        width: 50%;
    }
    .why-choose-efile-main .right-info {
        margin-bottom: 1rem;
    }
}

@media only screen and (max-width:420px) {
    .why-choose-efile-main .home-page-gif img{
        width: 100%;
        height: auto;
    }

}

/* home-pricing-section */
.home-pricing-section .pricing-table{
    background-color: var(--white);
    border-radius: 20px;
    padding: 25px;
}
.home-pricing-section .pricing-table h2{
    margin-top: 0 !important;
    text-align: center;
    margin-bottom: 24px !important;
    font-size: 30px !important;
}
.home-pricing-section .pricing-table .price-info{
    font-size: 12px;
    color: #808080;
}

.home-pricing-section .pricing-table .price-compare .efile-highlights .efile-price{
    background: var(--efile-blue);
    border-radius: 20px;
    border: 0;
    color: var(--white);
}
.home-pricing-section .pricing-table .price-compare .charges{
    border-radius: 20px;
    border: 0;
}
.home-pricing-section .pricing-table .price-compare .efile-highlights{
    border: 0;
    /* background-color: var(--light-blue); */
    background-color: #f2f5ff;
}
.home-pricing-section .pricing-table .price-compare .efile-highlights.border-bottom{
    border-bottom: 0 !important;
    border-radius: 0px 0px 20px 20px;
}
.home-pricing-section .pricing-table .price-compare .efile-highlights.border-top{
    border-top: 0 !important;
    border-radius: 20px 20px 0px 0px;
}
.home-pricing-section .pricing-table .price-compare.title,
.home-pricing-section .pricing-table .price-compare .title{
    color: var(--efile-blue);
    font-size: 18px;
}

/* home-pricing-section DARK*/
.home-pricing-section.dark .pricing-table{
    background-color: var(--efile-blue);
    color: var(--white);
}

.home-pricing-section.dark .pricing-table .price-info{
    color: #d2d2d2;
}

.home-pricing-section.dark .pricing-table .price-compare .efile-highlights .efile-price{
    background: var(--white);
    color: var(--black);
}

.home-pricing-section.dark .pricing-table .price-compare .efile-highlights{
    background-color: var(--efile-blue);
    color: var(--white);
}

.home-pricing-section.dark .pricing-table .price-compare.title,
.home-pricing-section.dark .pricing-table .price-compare .title{
    color: var(--white);
}

/* compare-links */
.home-pricing-section .compare-links{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    width: 100%;
    margin: 0 10px;
    background-color: var(--white);
    border-radius: 20px;
    
}
/* .home-pricing-section .compare-links-item{
    padding: 25px;
    height: 100%;
} */
.home-pricing-section .compare-links a{
    text-decoration: none;
    padding: 20px;
    cursor: pointer;
    text-align: center;
}
.home-pricing-section .compare-links i{
    font-size: 50px;
    margin-bottom: 20px;
    color: #0275D8;
}

.home-pricing-section.dark .compare-links{
    background-color: var(--efile-blue);
}

.home-pricing-section.dark .compare-links a{
    color: var(--white);
}

.home-pricing-section.dark .compare-links i{
    color: var(--white);
}

@media only screen and (max-width: 991px) {
    .home-pricing-section .compare-links{
        margin: 0;
    }   
    .home-pricing-section .compare-links:first-child{
        margin-right: 10px;
    }
    .home-pricing-section .compare-links:last-child{
        margin-left: 10px;
    }
}
@media only screen and (max-width: 768px) {
    .home-pricing-section .compare-links a {
        padding: 12px;
    }
    .home-pricing-section .compare-links i {
        margin-bottom: 10px;
    }
}


/* price-compare-section */
.price-compare-section{
    width: 100%;
    padding: 1rem;
    background: #f5f5f5;
    border-radius: 5px;
    font-family: var(--body-font);
    position: relative;
    border: 2px solid var(--border-gray);
}
.price-compare-section h2 {
    text-align: center;
    margin: 0 0 1.5rem 0 !important;
    font-size: 30px !important;
    font-weight: 500 !important;
    font-family: var(--heading-font) !important;
}
.price-compare{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.price-compare div{
    max-width: 25%;
    width: 100%;
    text-align: center;
}
.price-compare.price-details{
    font-size: 15px;
    line-height: normal;
}
.price-compare.price-details span{
    font-size: 17px;
}
.price-compare .efile-highlights{
    padding: 0px;
    height: 100%;
    min-height: 80px;
    background: rgba(255, 255, 255, 0.5);
    border-left: 2px solid var(--border-gray);
    border-right: 2px solid var(--border-gray);
}
.price-compare .efile-highlights .small-font{
    font-size: 14px;
}
.price-compare .efile-highlights.border-top{
    border-top: 2px solid var(--border-gray) !important;
    border-radius: 5px 5px 0px 0px ;
}
.price-compare .efile-highlights.border-bottom{
    border-bottom: 2px solid var(--border-gray) !important;
    border-radius: 0px 0px 5px 5px;
}
.price-compare .efile-highlights .efile-price {
    border: 3px solid var(--efile-blue);
}

.price-compare .charges {
    border: 3px solid var(--border-gray);
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 500;
    line-height: normal;
}
.price-compare strong{
    font-weight: 400 !important;
}
.price-compare.title,
.price-compare .title{
    font-weight: 500 !important;
    font-size: 17px;
    line-height: normal;
}

.price-compare-section .price-info p {
    font-size: 12px;
    margin-bottom: 0 !important;
    color: gray;
}
.tax-assistance-and-support .row img{
    width: 100%;
    height: 400px;
    border-radius: 5px;
    object-fit: cover;
}
.homepage-yt-video{
    height: 100%;
}
@media only screen and (max-width: 1500px) {
    .why-choose-efile .row img{
        object-fit: contain;
        height: 300px;
    }
    .tax-assistance-and-support .row img{
        object-fit: contain;
        height: auto;
    }
}

@media (max-width:991px) {
    .homepage-yt-video{
        height: 315px;
    }
    .searchbarmargin {
        width: 100% !important;
        right: 0px !important;
        margin-top: -5px !important;
        padding: 0px 15px !important;
    }
    .tax-assistance-and-support .row img{
        height: auto;
    }
    .why-choose-efile .row img{
        height: auto;
    }
    .home-content .searchbarmargin {
        transform: scale(1) !important;
    }

    .home-choose {
        grid-template-columns: 1fr !important;
    }

    .home-choose-right {
        margin: 0 -25px;
    }

    #home-why-choose .green-audio-player {
        width: unset !important;
    }

    #why-choose-menu span {
        display: none;
    }
    .home-reviews .home-review {
        padding: 0px!important;
    }
    .price-compare{
        height: 100px;
    }
}

@media only screen and (max-width: 540px) {
    .homepage-yt-video{
        height: 200px;
    }
    .price-compare-section{
        padding: 1rem 0.3rem;
    }
    .price-compare.price-details{
        height: 150px;
    }
    .price-compare.price-details .efile-highlights{
        min-height: 150px;
    }
    .why-choose-efile .row img.tax-talk-image{
        width: 100%;
    }
    .why-choose-efile-main .tess-talk.green-audio-player{
        width: auto;
    }
    .price-compare-section h2 {
        font-size: 25px !important;
    }
    .price-compare-section .price-info p{
        font-size: 10px;
    }
    .home-choose-right{
        margin: 0;
    }
    .why-choose-efile-main .row .compare-image img{
        width: 100%;
    }
}
/* End Top Page Message Styles and Menu Overrides */

/* Site Footer Styles */
.footerrow {    
    background-color:#ebebeb;
    color: white;
    min-height: 150px;
    padding-top: 15px;
    font-size: 14px;
    line-height: 1.75em;
}

    .footerrow h4 {
        color: #FFF;
        font-size: 12px;
        line-height: 20px;
        font-weight: 700;
        margin-top: -2px;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .footerrow ul {
        float: left;
        width: 100%;
        margin-bottom: 20px;
        list-style: none;
        padding-left: 0px;
    }

    .footerrow li a {
        color: #FFF;
    }

.footerrow {
    border-top: 1px solid var(--border-gray);
    color: var(--black);
    font-size: 15px;
    font-weight: 400;
    height: unset;
    padding-bottom: 10px;
    padding-top: 35px;
}

    .footerrow nav a {
        color: #444 !important;
        margin-right: 15px;
    }

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 5rem;
}

.pre-footer-section {
    text-align: left;
}

.footer-section .footer-section-title {
    font-size: 17px;
    font-weight: 400;
    color: #000;
}

.footer-section ul {
    list-style-type: none;
    line-height: 2em;
    padding: 0;
}

.footer-section a {
    color: var(--black) !important;
}

.footer-section hr.footer-hr {
    border-top: 3px solid var(--black);
    float: left;
    width: 15%;
}

.subfooter a {
    color: var(--black);
    margin-left: 15px;
}

@media (max-width:991px) {

    .footer-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 1rem;
        text-align: center;
    }

    .pre-footer-section {
        text-align: center;
    }

    .footer-section hr.footer-hr {
        border-top: 3px solid var(--black);
        float: unset;
        width: 15%;
    }
}

/* End Site Footer Styles */
.scrollup {
    background: var(--efile-blue) !important;
    bottom: 20px;
    display: none;
    height: 40px;
    position: fixed;
    right: 20px;
    width: 40px;
    z-index: 1000;
    border-radius: 40px;
}

.scrollup-link {
    font-size: 35px;
    color: #fff;
    text-align: center;
    width: 40px;
    font-weight: bold;
    position: relative;
    left: 3px;
    top: 1px;
}

.scrollup:hover {
    text-decoration: none;
}

/* Modal Styles */
#pdfmodal, #normalModal, #ContentModal, #lgModal, #videoModal, #smModal, #imgModal, #toolEmailModal, #helpModal, #SMModal {
    z-index: 1200 !important;
}

.modal-backdrop {
    z-index: 1100 !important;
    background-color: var(--efile-blue-hover) !important;
}

    .modal-backdrop.show {
        opacity: 0.4 !important;
    }

#SMModal .modal-header {
    border-bottom: none !important;
}

#SMModal .modal-title {
    margin-bottom: 0 !important;
    line-height: 1 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
}

#SMModal .modal-content {
    border-radius: 1.5rem !important;
    border: none !important;
}

#SMModal .modal-header {
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    background: #63C000 !important;
    color: white !important;
    padding: 8px 1rem 6px !important;
}

#SMModal .modal-body {
    background: black;
    color: #fff;
    border-radius: 0 0 10px 10px !important;
    font-size: 15px;
}

#SMModal .SMtitle {
    font-size: 16px;
    font-weight: 500;
    padding: 0px 0px 10px;
    border-bottom: 1px solid #fff;
}

#SMModal p.SMtitle:empty {
    border-bottom: 0;
    display: none;
}

#screenMSGrfdt {
    font-size: 23px;
    color: #f2d721;
}

.card.card-smRefund {
    display: block;
    text-align: center;
    margin: 15px 0;
    background: #eee;
    padding: 10px;
}

.page-feature2 {
    background-color: #777 !important;
    color: #fff !important;
    font-weight: 400;
    font-size: 20px;
    margin-top: 0px !important;
}

#SMModal .modal-body a {
    color: #63c000;
}

#SMModal .close {
    text-shadow: none !important;
    color: #FFF !important;
    opacity: 1 !important;
    padding: 12px 1rem 0px !important;
}

#SMModal .modal-sm {
    max-width: 350px;
}

#SMModal .modal-dialog-centered {
    margin: -2.5rem auto;
}

.modal-sm {
    max-width: 600px;
}
/* End Modal Styles */

/* Social Media Row */
.socialmediarow {
    position: fixed;
    width: 75px;
    left: 20px;
    top: 382px;
    display: none !important;
}

.socialbox {
    border: 1px solid #ddd;
    border-radius: 7px;
    border-bottom-right-radius: 7px;
    padding-left: 10px;
    padding-top: 10px;
    margin-bottom: 7px;
    padding-right: 15px;
}

.socialmediarow a {
    display: block !important;
    margin-left: 7px;
    margin-bottom: 10px;
}

.socialmediarow p {
    margin-bottom: 0px;
    text-align: center;
}

.efile-hover:hover {
    background-color: #63C000;
}

.facebook-hover:hover {
    background-color: #1877f2;
}

.twitter-hover:hover {
    background-color: #1DA1F2;
}

.youtube-hover:hover {
    background-color: #FF0000;
}

@media (max-width: 1299px) {
    .socialmediarow {
        display: none;
    }
}

.sm-link {
    font-size: 12px;
    width: 67px;
    background-color: #666;
    color: white;
    border-radius: 4px;
    margin-left: 5px !important;
    font-family: Helvetica, sans-serif;
    height: 28px;
    line-height: 30px;
    margin-bottom: 5px;
    font-weight: 400;
}

    .sm-link:hover {
        cursor: pointer;
    }

a.sm-link {
    color: white;
    text-align: center;
    margin-left: 0px;
}

    a.sm-link:hover {
        text-decoration: none;
        color: white !important;
    }

.sm-link .mixicon {
    position: relative;
    top: 1px;
}

a.list-group-item.service-detail {
    color: #767676 !important;
}

    .list-group-item.service-detail:after, a.list-group-item.service-detail:after {
        content: "\e956";
        font-family: Mixicon;
        font-weight: normal;
        font-style: normal;
        margin: 0px 0px 0px 10px;
        text-decoration: none;
        color: #63C000 !important;
        float: right;
    }
/* End Site Footer Styles */

/*Right Slider Message*/

.content-video {
    margin: 20px auto;
    max-width: 500px;
}

.efslidermsg {
    position: fixed;
    bottom: 150px;
    right: 0;
    background-color: #63c000;
    transition-duration: 0.3s;
    border-radius: 5px 0 0 5px;
    z-index: 1040;
    padding: 5px;
}

.efslidermsg_Wrap {
    display: inline-block;
    overflow: hidden;
    width: 1.8em;
    cursor: pointer;
}

.efslidermsg_inner {
    position: fixed;
    right: 0px;
    max-width: 20%;
    word-wrap: break-word;
    background-color: #fff;
    transition-duration: 0.3s;
    border-radius: 2px 0 0 2px;
    z-index: 1000;
    -webkit-box-shadow: 0px 0px 40px -5px var(--efile-blue-hover);
    -moz-box-shadow: 0px 0px 40px -5px var(--efile-blue-hover);
    box-shadow: 0px 0px 40px -5px var(--efile-blue-hover);
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

    .efslidermsg_inner .efslidermsg_body {
        display: table-cell;
        padding: 5px 8px;
    }

    .efslidermsg_inner .efslidermsg_body {
        color: #FFF;
        background-color: #000;
        font-size: 15px;
        padding: 6px 12px 9px;
        border-bottom-left-radius: 10px;
        border-top-left-radius: 10px;
    }

        .efslidermsg_inner .efslidermsg_body a {
            color: #63c000;
        }

        .efslidermsg_inner .efslidermsg_body h5 {
            font-size: 1rem;
            border-bottom: 1px solid #dcdcdc;
            padding: 7px 0px 10px;
            color: #FFF;
            font-weight: 500;
        }

    .efslidermsg_inner .efslidermsg_slidein {
        display: table-cell;
        padding: 5px;
        background-color: #63c000;
        color: #fff;
        vertical-align: middle;
        font-size: 1.5rem;
        font-weight: 600;
        cursor: pointer;
    }

        .efslidermsg_inner .efslidermsg_slidein i {
            transform: rotate(90deg);
        }

.efslidermsg_heading {
    display: inline-block;
    color: #000 !important;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    -ms-transform: rotate(-90.0deg); /* IE9+ */
    -webkit-transform: rotate(-90.0deg); /* Safari 3.1+, Chrome */
    transform: rotate(-90deg);
    line-height: 1.5;
    padding: 0.3em;
}

    .efslidermsg_heading:after {
        content: "";
        display: block;
        margin: -1.3em 0 100%;
    }

    .efslidermsg_heading i {
        position: relative;
        top: 3px;
        margin-left: 4px;
    }

i.icn-view-pm {
    display: inline-block;
    width: 14px;
    height: 15px;
    margin-top: -1px;
    line-height: 14px;
    vertical-align: text-top;
    background-image: url("/efile-ui/img/glyphicons-halflings-white.png");
    background-position: 14px 14px;
    background-repeat: no-repeat;
    background-position: -289px -94px;
}

/* End Right Slider Message*/

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

    .pagination > li {
        display: inline;
    }

        .pagination > li > a,
        .pagination > li > span {
            position: relative;
            float: left;
            padding: 6px 12px;
            margin-left: -1px;
            line-height: 1.42857143;
            color: #337ab7;
            text-decoration: none;
            background-color: #fff;
            border: 1px solid #ddd;
        }

        .pagination > li:first-child > a,
        .pagination > li:first-child > span {
            margin-left: 0;
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
        }

        .pagination > li:last-child > a,
        .pagination > li:last-child > span {
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
        }

        .pagination > li > a:hover,
        .pagination > li > span:hover,
        .pagination > li > a:focus,
        .pagination > li > span:focus {
            z-index: 2;
            color: #23527c;
            background-color: #eee;
            border-color: #ddd;
        }

    .pagination > .active > a,
    .pagination > .active > span,
    .pagination > .active > a:hover,
    .pagination > .active > span:hover,
    .pagination > .active > a:focus,
    .pagination > .active > span:focus {
        z-index: 3;
        color: #666;
        cursor: default;
        background-color: #F5F5f5;
        border-color: #ddd;
    }

    .pagination > .disabled > span,
    .pagination > .disabled > span:hover,
    .pagination > .disabled > span:focus,
    .pagination > .disabled > a,
    .pagination > .disabled > a:hover,
    .pagination > .disabled > a:focus {
        color: #777;
        cursor: not-allowed;
        background-color: #fff;
        border-color: #ddd;
    }

.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

/* Content.master */

/* Sidebar Position Fix */
.sidebar {
    position: sticky !important;
    top: 75px !important;
    height: 100px !important;
    min-height: 1800px;
    font-weight: 400;
}
.sidebar h2 {
    font-size: 28px !important;
    font-weight: 500 !important;
}
.sidebar h3 {
    font-size: 24px !important;
    font-weight: 500 !important;
}
.sidebar h4 {
    font-size: 20px !important;
    font-weight: 500 !important;
}

    .sidebar .btn-lg {
        font-size: 17px !important;
        padding: .5rem 1.3rem !important;
    }

    .sidebar ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .sidebar ul li {
            padding: 0px 0 10px;
            margin: 10px 0;
        }

    .sidebar .efile-widget, .efile-widget {
        background-color: #FFF;
        margin: 2em 0;
        border-radius: 5px;
        height: auto;
        padding: 15px;
        text-align: center;
        color: #000;
        font-weight: 400;
        position: relative;
        z-index: 1;
        border: 1px solid var(--border-gray);
    }

        .sidebar .efile-widget.startbox {
            padding: 15px;
            background: var(--white);
            border: 1px solid var(--border-gray);
            color: var(--black);
        }

            .sidebar .efile-widget.startbox p {
                font-size: 14px !important;
            }

                .sidebar .efile-widget.startbox p.sidebar-link {
                    font-size: 17px !important;
                    margin-bottom: 0px !important;
                }

                    .sidebar .efile-widget.startbox p.sidebar-link .mixicon {
                        font-size: 19px !important;
                    }
                    .sidebar .efile-widget .efcheading hr{
                        border-top: 1px dotted var(--border-gray) !important;
                    }
                    .sidebar .efile-widget .efcsubmit a{
                        font-size: 15px;
                        margin-left: 10px !important;
                    }

        .efile-widget.float-right {
            margin: 2em 0 2em 2em;
            width: 315px;
        }

        .efile-widget.float-left {
            margin: 2em 2em 2em 0;
            width: 315px;
        }

        .sidebar .efile-support-contact .efile-widget {
            border-radius: 0 0 5px 5px;
        }
        .sidebar .efile-support-contact .supportprofile-content {
            background-color: var(--efile-blue);
            color: var(--white);
            padding: 15px;
            border-radius: 5px 5px 0 0;
            font-size: 24px;
            text-align: center;
        }

        .sidebar .efile-support-contact-2 .efile-sidebar-contact-img  {
            width: 60%;
        }

        .sidebar .efile-support-contact-2 .supportprofile-content  {
            background-color: var(--accent-color);
            color: var(--black);
            padding: 15px;
            border-radius: 5px 0 5px 5px;
            font-size: 22px;
            text-align: center;
        }

.sidebar-player {
    width: 100% !important;
    margin: 30px auto 15px !important;
    min-width: unset !important;
}
.sidebar .social-share .content-tag {
    width: 50px;
    height: 50px !important;
    padding: 5px;
    background-color: var(--light-blue);
    border-radius: 30px;
    border: 0px;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: 0.5s ease-out;
}
.sidebar .social-share .content-tag:hover{
    width: 200px;
    justify-content: space-around;
    transition: 0.5s ease-out;
}
.sidebar .social-share .content-tag .shareITcontent{
    top: 0;
    left: unset;
    right: -300px;
    opacity: 0;
    visibility: hidden;
    transition:  0.5s ease-out;
}
.sidebar .social-share .content-tag:hover .shareITcontent{
    left: unset;
    right: 0;
    opacity: 1;
    visibility: visible;
    transition: 0.5s ease-out;
}
.sidebar .content-tag.content-tag-small .mixicon{
    padding: 0px !important;
}
/* End Sidebar Position Fix */

/* EFile Widget */
.rightBoxSignIn {
    font-size: 13px;
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

.efile-widget p {
    margin-bottom: 10px;
    font-size: 18px !important;
    font-weight: 400;
}

.efile-widget-header {
    margin-top: 5px !important;
}

.home-content .efile-widget {
    max-width: 1000px !important;
    margin: 25px auto 0 !important;
    background: #EEE !important;
    border: 1px solid #E5E5E5 !important;
    -webkit-box-shadow: 0px 0px 9px 0px var(--efile-blue);
    -moz-box-shadow: 0px 0px 9px 0px var(--efile-blue);
    box-shadow: 0px 0px 25px -20px var(--efile-blue);
    color: #000 !important;
}

    .home-content .efile-widget #clockdiv {
        color: #000 !important;
    }

        .home-content .efile-widget #clockdiv > div {
            color: #000 !important;
        }

/* EFile Widget */

/* Top countdown Styles */

.efile-widget .countdown {
    height: unset !important;
}

.countdown p.deadlineMessage {
    padding: 0 10px;
    font-size: 20px !important;
    font-weight: 400;
}

.countdown .countdownMessage {
    padding: 0 10px;
    font-weight: 400;
    display: none;
}

.countblock {
    font-weight: 500;
    display: block;
    margin-bottom: 0px;
}

#countdownLink {
    visibility: hidden;
}

.countdownMessage {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#clockdiv {
    color: #000;
    display: none;
    font-weight: 100;
    text-align: center;
    font-size: 30px;
    position: relative;
    z-index: 1;
}

    #clockdiv > div {
        padding: 0px 4px;
        display: inline-block;
        color: #444;
    }

    #clockdiv div > span {
        display: inline-block;
    }

.smalltext {
    padding-top: 0px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    margin-top: -6px;
    color: #BBB;
}

/* @media (max-width: 900px) {
    #clockdiv {
        display: none !important;
    }
} */
/* End Top Countdown Styles */


/* Tax Chat / Ask a Tax Question */
.form-control {
    background-color: #FAFAFA !important;
}

.efContact {
    font-size: 13px;
    padding-top: 10px;
    text-align: left;
}

    .efContact label {
        margin-bottom: 0;
    }

.efcheading {
    font-size: 18px;
    text-align: center;
}

    .efcheading hr {
        margin-top: 0.5rem;
    }

.efcintro {
    padding: 5px;
}

    .efcintro.adaptive .form-control {
        font-size: 14px;
        padding: 5px 7px !important;
        background-color: transparent !important;
    }

    .efcintro.adaptive .form-group label {
        font-size: 14px;
        left: 8px;
        top: 7px;
        background-color: #fff !important;
    }

.efcleft {
    float: left;
    padding-bottom: 5px;
}

.efcright {
    float: right;
    padding-top: 7px;
}

.efcbubbledLeft, .efcbubbledRight {
    padding: 5px 9px;
    position: relative;
    line-height: 1.2 !important;
}

.efcbubbledLeft {
    float: right;
    -webkit-border-radius: 8px 8px 8px 0px;
    -moz-border-radius: 8px 8px 8px 0px;
    -o-border-radius: 8px 8px 8px 0px;
    -ms-border-radius: 8px 8px 8px 0px;
    border-radius: 8px 8px 8px 0px;
    background-color: #65B045;
    color: #ffffff;
}

    .efcbubbledLeft:before {
        border-bottom: 10px solid #65B045;
        border-left: 9px solid rgba(0, 0, 0, 0);
        position: absolute;
        bottom: 0;
        left: -8px;
        content: "";
    }

    .efcbubbledLeft a {
        color: #62ffff !important;
    }

.efcbubbledRight {
    float: left;
    -webkit-border-radius: 8px 8px 0px 8px;
    -moz-border-radius: 8px 8px 0px 8px;
    -o-border-radius: 8px 8px 0px 8px;
    -ms-border-radius: 8px 8px 0px 8px;
    border-radius: 8px 8px 0px 8px;
    background-color: #07D;
    color: white;
}

    .efcbubbledRight:before {
        border-bottom: 9px solid #07D;
        border-right: 9px solid rgba(0, 0, 0, 0);
        position: absolute;
        bottom: 0;
        right: -8px;
        content: "";
    }

    .efcbubbledRight a {
        color: lime !important;
    }

.efcwelcomeMsg {
    display: inline-block;
    vertical-align: top;
}

.efcmsg {
    font-size: 12px !important;
    font-style: italic;
    font-weight: bold;
}

.remove {
    display: none !important;
}

.imgSupport {
    width: 40px;
    height: 40px;
    border-radius: 5px 5px;
}

.ml5 {
    margin-left: 5px;
}

.lh12 {
    line-height: 12px;
}

.lh15 {
    line-height: 15px;
}

.lh7 {
    line-height: 7px;
}

.lh-normal {
    line-height: normal;
}

.efcintro .forgot-email {
    margin-top: 2px;
    padding-right: 0;
    cursor: pointer;
    outline: none !important;
}

.msg {
    font-size: 11px !important;
    font-style: italic;
    font-weight: bold;
    display: inline-block;
    margin-top: 2px;
}

    .msg.normal {
        font-style: normal;
        font-weight: 400;
    }

.txtcounter, .txtfncounter {
    font-size: 11px;
    color: #adacac;
}

.adaptive textarea.form-control {
    resize: none;
    overflow-y: hidden;
}

.adaptive input.form-control {
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.adaptive .form-control {
    padding: 8px 7px !important;
    border: 1px solid #cbcbcb;
    border-radius: 5px;
    color: #000;
    font-size: 16px;
}

.adaptive .form-group {
    font-size: 16px;
    font-weight: normal;
}

    .adaptive .form-group label {
        font-size: 16px;
        font-weight: normal;
        position: absolute;
        pointer-events: none;
        left: 22px;
        top: 8px;
        margin: 0;
        color: #6c757d;
        transition: 0.2s ease all;
        -moz-transition: 0.2s ease all;
        -webkit-transition: 0.2s ease all;
    }

.adaptive input.form-control:focus, .adaptive textarea.form-control:focus {
    border-color: #007bff;
    outline: 0;
}

    .adaptive input.form-control:focus ~ label,
    .adaptive textarea.form-control:focus ~ label, .adaptive textarea.form-control:disabled ~ label {
        font-size: 0.69rem;
        color: #005abb;
        top: -8px;
        padding: 0 1px;
        background-color: #fafafa;
    }

    .adaptive input.form-control:focus ~ label, .adaptive input.form-control:valid ~ label,
    .adaptive textarea.form-control:focus ~ label, .adaptive textarea.form-control:valid ~ label {
        font-size: 0.69rem;
        top: -8px;
        padding: 0 1px;
        background-color: #fafafa;
    }

.adaptive input[value].form-control:disabled ~ label, .adaptive textarea[value].form-control:disabled ~ label {
    font-size: 0.69rem;
    top: -8px;
    padding: 0 1px;
    background-color: #fafafa;
}

.adaptive input.form-control:disabled, .adaptive textarea.form-control:disabled {
    cursor: not-allowed;
    position: initial;
}

.btn-blue {
    background-color: var(--efile-blue);
    border-color: var(--efile-blue);
    color: var(--white);
    font-size: 15px;
}

    .btn-blue:hover {
        background-color: var(--efile-blue-hover);
        border-color: var(--efile-blue-hover);
        color: var(--white);
    }

    .btn-blue:focus {
        outline: 0;
        box-shadow: none !important;
    }


.btn-bar {
    padding-top: 2px;
    padding-bottom: 4px;
    font-size: 16px;
}

    .btn-bar .mixicon {
        position: relative !important;
        top: 3px !important;
        font-size: 25px !important;
    }

/* Tax Chat / Ask a Tax Question */

@keyframes spin {
    from {
        transform: rotateZ(0);
    }

    to {
        transform: rotateZ(1turn);
    }
}

.green-audio-player {
    width: 400px;
    min-width: 300px;
    height: 56px;
    -webkit-box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.07);
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 50px;
    user-select: none;
    background-color: #fff;
    box-sizing: border-box;
    outline: none;
}

    .green-audio-player.player-accessible .play-pause-btn:hover,
    .green-audio-player.player-accessible .controls:hover,
    .green-audio-player.player-accessible .volume__button:hover,
    .green-audio-player.player-accessible .volume__controls:hover,
    .green-audio-player.player-accessible .download:hover {
        outline: dotted 1px #999;
    }

    .green-audio-player svg,
    .green-audio-player img {
        display: block;
    }

    .green-audio-player .holder {
        position: relative;
    }

        .green-audio-player .holder .loading .loading__spinner {
            position: absolute;
            left: -3px;
            bottom: 2px;
            width: 16px;
            height: 16px;
            border: 2px solid #b0b0b0;
            border-right-color: rgba(0, 0, 0, 0);
            border-radius: 50%;
            animation: spin 0.4s linear infinite;
        }

        .green-audio-player .holder .play-pause-btn {
            visibility: hidden;
            cursor: pointer;
            outline: none;
        }

            .green-audio-player .holder .play-pause-btn:focus {
                outline: none;
            }

    .green-audio-player .slider {
        flex-grow: 1;
        background-color: #d8d8d8;
        cursor: pointer;
        position: relative !important;
    }

        .green-audio-player .slider::before {
            background-color: transparent !important;
        }

        .green-audio-player .slider .gap-progress {
            background-color: #888888;
            border-radius: inherit;
            position: absolute;
            pointer-events: none;
        }

            .green-audio-player .slider .gap-progress .pin {
                height: 16px;
                width: 16px;
                border-radius: 8px;
                background-color: var(--efile-blue);
                position: absolute;
                pointer-events: all;
                box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.32);
            }

                .green-audio-player .slider .gap-progress .pin::after {
                    content: "";
                    display: block;
                    background: rgba(0, 0, 0, 0);
                    width: 200%;
                    height: 200%;
                    margin-left: -50%;
                    margin-top: -50%;
                    border-radius: 50%;
                }

    .green-audio-player .controls {
        font-family: "Roboto", sans-serif;
        font-size: 16px;
        line-height: 18px;
        color: #55606e;
        display: flex;
        flex-grow: 1;
        justify-content: space-between;
        align-items: center;
        margin-left: 15px;
        margin-right: 15px;
        outline: none;
    }

        .green-audio-player .controls .controls__slider {
            margin-left: 16px;
            margin-right: 16px;
            border-radius: 2px;
            height: 4px;
        }

            .green-audio-player .controls .controls__slider .controls__progress {
                width: 0;
                height: 100%;
            }

                .green-audio-player .controls .controls__slider .controls__progress .progress__pin {
                    right: -8px;
                    top: -6px;
                }

        .green-audio-player .controls span {
            cursor: default;
        }

        .green-audio-player .controls:focus {
            outline: none;
        }

    .green-audio-player .play-pause-btn path {
        fill: var(--efile-blue);
    }

    .green-audio-player .volume {
        position: relative;
    }

        .green-audio-player .volume .volume__button {
            cursor: pointer;
            outline: none;
        }

            .green-audio-player .volume .volume__button:focus {
                outline: none;
            }

            .green-audio-player .volume .volume__button.open path {
                fill: var(--efile-blue);
            }

        .green-audio-player .volume .volume__controls {
            width: 30px;
            height: 135px;
            background-color: rgba(0, 0, 0, 0.62);
            border-radius: 7px;
            position: absolute;
            left: -3px;
            bottom: 52px;
            flex-direction: column;
            align-items: center;
            display: flex;
            z-index: 2;
            outline: none;
        }

            .green-audio-player .volume .volume__controls .volume__slider {
                margin-top: 12px;
                margin-bottom: 12px;
                width: 6px;
                border-radius: 3px;
            }

                .green-audio-player .volume .volume__controls .volume__slider .volume__progress {
                    bottom: 0;
                    height: 100%;
                    width: 6px;
                }

                    .green-audio-player .volume .volume__controls .volume__slider .volume__progress .volume__pin {
                        left: -5px;
                        top: -8px;
                    }

            .green-audio-player .volume .volume__controls:focus {
                outline: none;
            }

            .green-audio-player .volume .volume__controls.hidden {
                display: none;
            }

            .green-audio-player .volume .volume__controls.top {
                bottom: 28px;
                left: -3px;
                background: #f5f5f5 !important;
                border: 1px solid #e5e5e5;
                box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.1);
            }

            .green-audio-player .volume .volume__controls.middle {
                bottom: -54px;
                left: 30px;
                background: #f5f5f5 !important;
                border: 1px solid #e5e5e5;
                box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.1);
            }

            .green-audio-player .volume .volume__controls.bottom {
                bottom: -140px;
                left: -3px;
                background: #f5f5f5 !important;
                border: 1px solid #e5e5e5;
                box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.1);
            }

    .green-audio-player .download {
        display: none;
        margin-left: 16px;
        cursor: pointer;
        outline: none;
    }

        .green-audio-player .download:focus {
            outline: none;
        }

    .green-audio-player:focus {
        outline: none;
    }

.shareITcontent, .rateITcontent {
    text-align: center;
    position: relative;
    top: 4px;
    left: -10px;
    font-size: 14px;
}


.content-tag {
    width: 215px;
    height: 82px;
    float: left;
    margin: 14px 15px 0px 0px;
    line-height: 1.25em;
    background-color: #FFF;
    border-radius: .5em;
    border: 1px solid #ddd;
}

.content-tag-heading {
    max-width: 370px !important;
    width: auto !important;
    padding-right: 10px;
    float: none;
    margin: 25px auto -20px;
    min-height: 95px;
    cursor: default !important;
    height: auto;
}

    .content-tag-heading p {
        margin-top: 10px !important;
        line-height: 1.5;
        text-align: center;
    }

.content-tag-sidebar {
    float: none !important;
    margin: -5px auto 10px;
}

.content-tag:hover {
    cursor: pointer;
}

.content-tag .mixicon {
    font-size: 80px;
    float: left;
    padding: 0px 5px 0px;
    color: #0275d8;
}

.content-tag-heading .mixicon {
    padding-top: 8px;
}

.content-tag a {
    margin-top: 30px;
    display: block;
    color: #444;
}

.content-tag-center {
    margin: auto !important;
    float: none !important;
}

/* Content Tag Share */

.content-tag-share, .content-tag-rate {
    background-color: #FFF;
}

    .content-tag-share .mixicon, .content-tag-rate .mixicon {
        font-size: 50px;
        float: left;
        padding: 15px 10px 0px !important;
        color: #007700 !important;
    }

    .content-tag-share a, .content-tag-rate a {
        margin-top: 30px;
        display: block;
        color: #444;
    }

.content-tag-small {
    height: 50px;
}

    .content-tag-small a {
        margin-top: 14px;
    }

    .content-tag-small .shareITcontent a, .content-tag-small .rateITcontent a {
        display: initial !important;
        font-size: 17px;
        color: #007700;
        font-weight: 500;
    }

.p-callout {
    width: 100%;
    background-color: var(--light-blue) !important;
    border-color: var(--border-gray) !important;
    color: var(--black);
    text-align: center;
    padding: 6px 10px 5px;
    border-radius: .25rem;
}

.efile-message {
    padding: 10px 10px 5px;
    border: 1px solid var(--border-gray);
    margin: 10px 0 10px;
    border-radius: 0.25rem;
    background-color: var(--light-blue);
    display: table;
}

    .efile-message .mixicon {
        color: #37517E;
        font-size: 45px;
        display: block;
        float: left;
        margin: 10px 25px 10px 10px;
    }

.content-tag-facebook .mixicon {
    font-size: 50px;
    float: left;
    padding: 15px 10px 0px !important;
    color: #1777F2 !important;
}

.content-tag-facebook a {
    color: #1777f2 !important;
}

.content-tag-small .mixicon {
    font-size: 40px;
    padding: 4px 10px 0px 10px !important;
    color: #007700;
}

.service-ref {
    font-size: 75%;
    display: block;
    padding-top: 20px;
    color: #999;
}

.tax-prep-copyright {
    color: #999;
    padding-top: 10px !important;
}

/* End Content Tag Share */

/* End Content.master */

/* Wide.master */

/* Article Content */

.article-content.raised {
    border: none;
    padding: 0px 50px !important;
}

    .article-content.raised .topPaginationDisplay {
        float: right;
        padding-right: 15px;
        margin-bottom: -5px;
        padding-left: 25px;
        top: -10px;
        position: relative;
        right: 340px;
    }

#raised-top {
    height: 60px;
    margin-bottom: 1rem;
}

    #raised-top .topcatmenu {
        max-width: 70%;
    }


.raised .pagination {
    margin: 20px 0 10px !important;
}

.raised article#page-content {
    margin-top: 0px !important;
}

.raised .searchbarmargin {
    width: 352px;
    float: right;
    position: absolute;
    top: 0;
    right: 50px;
    margin-bottom: -55px !important;
}

@media(max-width:991px) {
    .article-content.raised {
        border: none;
        padding: 0px 20px !important;
    }

    .raised article#page-content {
        margin-top: 30px !important;
    }
}
/* End Article Content */
/* End Wide.master */


/* why choose efile */
.tess-talk.green-audio-player{
    width: 300px;
    height: 45px;
}
/* End why choose efile */
/* Service Fees */
article#page-content h2, article#page-content h3, article#page-content h4 {
    color: #000;
}

.service_fees {
    width: 85%;
    margin: 0 auto;
    display: grid;
    grid-gap: 1.5em;
    grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
}

    .service_fees a {
        cursor: pointer !important;
    }

        .service_fees a:active, .service_fees a:focus {
            outline: 0 !important;
        }

    .service_fees h4 {
        font-size: 20px !important;
        font-weight: 500 !important;
        margin-bottom: 0px !important;
        text-transform: uppercase;
        color: #777a89;
        margin-top: 15px !important;
    }

    .service_fees .list-group-item{
        border: 0px;
    }
    .service_fees .service{
        /* -webkit-box-shadow: 0 2px 6px 0 rgba(31,31,35,0.3);
        -moz-box-shadow: 0 2px 6px 0 rgba(31,31,35,0.3);
        box-shadow: 0 2px 6px 0 rgba(31,31,35,0.3); */
        border-top: 0px;
        border-radius: 20px;
        overflow: hidden;
    }
    .service_fees .list-group-item:first-child {
        /* border-top: 5px solid var(--efile-blue); */
        border-bottom: none;
    }

    .service_fees .list-group-item:last-child {
        border-top: none !important;
        position: relative;
        z-index: 0;
        background: var(--white);
    }
    .service_fees .list-group-item .bg-circle{
        position: absolute;
        bottom: -1.75rem;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--light-blue);
        z-index: -1;
        border-top-left-radius: 150px;
        border-top-right-radius: 150px;
    }

    .service_fees .list-group-item .btn span{
        font-size: 11px;
    }
    .service_fees .list-group-item .btn {
        width: 170px;
        margin: 10px 0;
        font-size: 20px !important;
    }

    .service_fees .list-group-item:hover, .service_fees .list-group-item:focus {
        z-index: 0;
        text-decoration: none;
    }

    .service_fees .price {
        font-size: 30px;
        padding-top: 0px;
        border-top: none;
        font-weight: 500;
    }

        .service_fees .price del {
            font-size: 16px;
            font-weight: 400;
            color: #767676;
            position: relative;
            top: -5px;
        }

.service-details {
    font-size: 13px;
    margin-top: 5px !important;
    display: block;
}

.list-group-item.service-detail {
    border-top: none;
    padding: .5rem 1.25rem;
    text-align: left;
    color: #767676;
    font-size: 17px;
}

a.list-group-item.service-detail {
    color: #0275d8 !important;
}

    .list-group-item.service-detail:after, a.list-group-item.service-detail:after {
        content: "\e956";
        font-family: Mixicon;
        font-weight: normal;
        font-style: normal;
        margin: 0px 0px 0px 10px;
        text-decoration: none;
        color: #63C000 !important;
        float: right;
    }
    @media only screen and (max-width: 540px){
        .service_fees{
            width: 100%;
        }
    }
/* End Service Fees */

/* Home feedback  */
.home-feedback {
    display: flex;
    grid-gap: 0;
    padding: 0 20px;
}
.overall.ratingWidget span.text-muted{
    margin: 10px 0 15px 0;
}
.home-feedback-users {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .home-feedback-users .ratingWidget {
        border: none !important;
        background: transparent;
    }


    .home-feedback-users p {
        font-size: 17px !important;
        min-width: 100%;
    }

    .home-feedback-users h3 {
        font-size: 30px !important;
        text-align: center;
        font-family: var(--heading-font) !important;
    }

    .home-feedback-users hr {
        width: 100%;
        margin: 2rem 0;
    }

    .home-feedback-users p {
        font-size: 115%;
        max-width: 350px;
        text-align: center;
        margin: 0 auto;
    }

    .home-feedback-users cite, .home-reviews cite {
        text-align: center !important;
        font-weight: bold;
        font-style: normal;
    }

        .home-feedback-users cite span, .home-reviews cite span {
            font-weight: normal;
            font-size: 14px;
        }
        .home-reviews .home-review {
            border: 0px;
            box-shadow: none;
        }
        .home-reviews .home-review img {
            width: 70px;
            height: 70px;
            border-radius: 100px;
        }
    .home-feedback-image {
        padding: 0px;
    }

    .home-feedback-image img {
        border-radius: 50%;
        width: auto;
        height: 200px;
        max-width: 200px;
        object-fit: cover;
    }
    .home-feedback .home-feedback-image .owl-carousel-image{
        max-width: 200px;
        margin-left: auto;
    }
.efile-review.other-page-review {
    border-radius: 20px;
}
    .feedback .home-reviews {
        padding: 0;
    }
    .feedback .carousel-control-prev,
.feedback .carousel-control-next {
    display: none;
}
.feedback .owl-nav.disabled+.owl-dots {
    margin-top: 0px !important;
}
.feedback button.owl-dot:focus{
    outline: none;
}
.feedback .owl-theme .owl-dots .owl-dot span {
    background: var(--border-gray);
}
.feedback .owl-theme .owl-dots .owl-dot.active span,
.feedback .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--efile-blue);
}
.feedback .owl-carousel.owl-drag .owl-item{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.feedback .rating-image {
    max-width: 170px;
}
.feedback .feedback-profile .feedback-profile-image {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50px;
    margin-right: 16px;
}

.feedback .feedback-profile .feedback-profile-image img {
    height: 100%;
    width: auto;
}

@media(max-width:991px) {
    .home-feedback {
        grid-template-columns: 1fr !important;
    }

    .home-feedback-image {
        order: 1;
    }
    .home-feedback .home-feedback-image .owl-carousel-image{
        margin: 0 auto;
    }
    .home-feedback-users {
        height: auto;
        justify-content: center;
    }
}
@media only screen and (max-width: 540px){
    .home-feedback .home-feedback-users h3 {
        font-size: 25px !important;
    }
    .owl-carousel{
        padding: 0;
    }
    .home-feedback .home-feedback-image .owl-carousel-image{
        padding-top: 25px !important;
    }
}
/* End Home feedback  */

/* Home audio */
.home-audio {
    display: grid;
    grid-template-columns: 1fr 350px;
    max-width: 90%;
    margin: 0 auto;
    border: 1px solid #ececec;
    border-radius: 50px;
    height: 80px;
    background: var(--white) url(/image/speaker-icon.png);
    background-repeat: no-repeat;
    background-position: 15px 14px;
    line-height: 76px;
    text-align: left;
    -webkit-box-shadow: 0px 0px 9px 0px var(--efile-blue);
    -moz-box-shadow: 0px 0px 9px 0px var(--efile-blue);
    box-shadow: 0px 0px 25px -20px var(--efile-blue);
}

.home-audio-title {
    padding-left: 80px;
    color: var(--black);
}

.home-audio-player {
    padding: 11px 5px 0 0;
}

.home-player {
    width: 335px !important;
}

@media(max-width:991px) {

    .home-content .efile-widget {
        max-width: 95% !important;
    }

    .home-audio {
        grid-template-columns: 1fr;
        height: 78px;
        padding: 0px !important;
        line-height: 1em;
        margin-bottom: 65px;
    }

    .home-audio-title {
        padding: 30px 0 0 75px !important;
    }

    .home-audio-player {
        padding: 0 !important;
        margin-top: 40px;
    }

    .home-player {
        width: 100% !important;
    }

    .home-content .searchbarmargin {
        transform: scale(1) !important;
    }

}

/* End Home audio */

.mt-60 {
    margin-top: 60px !important;
}

.tax-prep-attr {
    font-size: 75%;
    display: block;
    padding-top: 20px;
    color: #767676;
    text-align: right;
    margin-right: 25px;
    margin-bottom: 25px !important;
}
.tax-prep-attr {
    margin: 0 !important;
}
@media only screen and (max-width: 540px){
    .home-audio .home-audio-title{
        padding: 32px 0 0 75px !important;
    }
    .tax-prep-attr{
        margin-bottom: 0 !important;
    }
}

/* End Home.master */

/* EFile Chat Style */

/* End EFile Chat Style */


/* SCREENSHOT */

.screenshot {
    border: 1px solid #000;
}

.mobile-display {
    font-weight: bold;
    margin-right: 10px;
}

@media (max-width:700px) {
    .screenshot {
        max-width: 100% !important;
    }
}

/* SCREENSHOTS END */
.full-width {
    width: 100% !important;
}


/* Content Right Align */
blockquote.right {
    float: right;
    max-width: 400px;
    margin: 0 0 15px 15px;
    font-size: 25px;
}

blockquote.state {
    font-size: 16px;
    text-align: center;
}

    blockquote.state img {
        width: 128px;
    }

blockquote.video {
    width: 100%;
}

blockquote img {
    max-width: 400px;
    width: 100%;
    margin-top: 10px;
}

blockquote .blockquote-content {
    width: 100%;
    display: block;
    overflow: hidden;
    border-left: 10px solid #EEE;
    background-color: #fff;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
    text-align: center;
}

blockquote .blockquote-noborder {
    border: none !important;
}

blockquote .blockquote-content p {
    position: relative;
    font-style: oblique;
    z-index: 2;
}

blockquote .footer, .footer {
    font-size: 13px;
    display: block;
    text-align: center;
    margin-top: 0px !important;
}

.content-video {
    margin: 20px auto;
    max-width: 500px;
}

@media (max-width:700px) {

    blockquote.right {
        float: none;
        width: 100% !important;
        max-width: none !important;
        margin: 0 auto 15px auto !important;
        font-size: 25px;
        text-align: center;
    }

    #imgModal .img-fluid {
        max-width: 100% !important;
        height: auto !important;
    }
}
/* End Content Right Align */

/* Page Feature Boxes*/
a.home-feature {
    display: flex;
    text-align: center;
    padding: 0 5px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.03) !important;
    height: 100px !important;
    font-size: 17px !important;
    color: #0275d8 !important;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

    a.home-feature:hover {
        color: #0056b3 !important;
        text-decoration: underline !important;
    }

a.home-feature-blue {
    background-color: #37517E !important;
    color: #FFF !important;
}

    a.home-feature-blue:hover {
        color: #FFF !important;
        text-decoration: underline !important;
    }

@media (max-width: 600px) {


    a.home-feature {
        margin-bottom: 1rem;
        height: 65px !important;
    }

    a.home-feature-last {
        margin-bottom: 0px;
    }
}

a.page-feature, div.page-feature {
    display: flex;
    text-align: center;
    background-color: var(--light-blue);
    width: 200px;
    height: 150px;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 25px;
    color: var(--black);
    font-size: 25px;
    font-family: var(--heading-font);
    font-weight: 500;
    padding: 0 5px;
    justify-content: center;
    align-items: center;
}

.page-feature-icon {
    display: block !important;
    padding-top: 20px !important;
}

.page-feature-blue {
    background-color: var(--efile-blue) !important;
    color: white !important;
}

.multi-page-feature {
    width: 170px !important;
    margin-bottom: 10px !important;
}

a.page-feature:hover { 
    background-color: var(--light-blue);
    color: var(--black);
    text-decoration: none;
}

.page-feature2 {
    background-color: var(--light-blue) !important;
    color: var(--black) !important;
    font-weight: 400;
    font-size: 20px;
    margin-top: 0px !important;
}

@media (max-width: 700px) {
    a.page-feature, div.page-feature {
        margin: auto;
    }
}
/* End Page Feature Boxes*/

/* Interactive State Map */
#StateMapContainer, #MailingAddressStateMapContainer {
    max-width: 600px;
    margin: 15px auto 0;
}

#StateMap, #MailingAddressStateMap {
    margin: 0 auto;
}

/* End Interactive State Map */

.imageModal img {
    max-width: 350px;
    height: auto;
    box-shadow: rgb(136, 136, 136) 5px 5px 19px;
}

.imageModal .enlargeClick {
    font-size: 13px;
    display: block;
    padding-top: 5px;
    padding-left: 5px;
}

/* Search Results Page Styles */

div.search-result {
    margin: 20px 0 20px 0 !important;
}

    div.search-result .result-link {
        font-size: var(--main-font-size) !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.6;
    }

    div.search-result .result-description {
        font-size: var(--main-font-size) !important;
        margin: 0 0 .5rem !important;
        padding: 0 !important;
        line-height: 1.6;
    }

/* End Search Results Page Styles */

/* Rating Widget Style */

.br-theme-css-stars .br-widget {
    white-space: nowrap;
}

    .br-theme-css-stars .br-widget a {
        text-decoration: none;
        font-size: 25px;
        margin-right: 5px;
        font-family: 'Mixicon' !important;
        speak: none;
        font-style: normal;
        font-variant: normal;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
    }

        .br-theme-css-stars .br-widget a:after {
            content: "\e995";
            color: #b2b2b2;
        }

        .br-theme-css-stars .br-widget a.br-active:after {
            content: "\e994";
            color: #ffa012;
        }

        .br-theme-css-stars .br-widget a.br-selected:after {
            content: "\e994";
            color: #ffa012;
        }

    .br-theme-css-stars .br-widget .br-current-rating {
        display: none;
    }

.rating-widget {
    height: 30px;
    white-space: nowrap;
}

    .rating-widget a {
        text-decoration: none;
        font-size: 25px;
        margin-right: 5px;
        position: relative;
        top: -5px;
        font-family: 'Mixicon' !important;
        speak: none;
        font-style: normal;
        font-variant: normal;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
    }

        .rating-widget a:after {
            content: "\e995";
            color: #d2d2d2;
        }

        .rating-widget a.br-active:after {
            content: "\e994";
            color: #ffa012;
        }

        .rating-widget a.br-selected:after {
            content: "\e994";
            color: #ffa012;
        }

    .rating-widget .br-current-rating {
        display: none;
    }

.overall .br-widget {
    height: 35px;
    pointer-events: none;
}

    .overall .br-widget a {
        position: relative;
        top: -10px;
        font-size: 35px;
        font-family: 'Mixicon' !important;
        speak: none;
        font-style: normal;
        font-variant: normal;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
    }

        .overall .br-widget a .br-fractional {
            position: absolute;
            font-size: 35px;
            overflow: hidden;
        }

            .overall .br-widget a .br-fractional:after {
                content: "\e994";
                color: #ffa012;
            }

            .overall .br-widget a .br-fractional.br-fractional-10 {
                width: 10%;
            }

            .overall .br-widget a .br-fractional.br-fractional-20 {
                width: 20%;
            }

            .overall .br-widget a .br-fractional.br-fractional-30 {
                width: 30%;
            }

            .overall .br-widget a .br-fractional.br-fractional-40 {
                width: 40%;
            }

            .overall .br-widget a .br-fractional.br-fractional-50 {
                width: 50%;
            }

            .overall .br-widget a .br-fractional.br-fractional-60 {
                width: 60%;
            }

            .overall .br-widget a .br-fractional.br-fractional-70 {
                width: 70%;
            }

            .overall .br-widget a .br-fractional.br-fractional-80 {
                width: 80%;
            }

            .overall .br-widget a .br-fractional.br-fractional-90 {
                width: 90%;
            }

.support {
    flex-direction: column;
}

    .support p {
        margin: 0 !important;
    }

.r-deleted {
    font-style: italic;
    font-size: 80%;
    font-weight: 400;
}

.ratingWidget {
    display: inline-block;
    border-radius: .5em;
    border: 1px solid #ddd;
    background-color: #FFF;
    padding: 5px 10px;
    margin: 10px 0;
    font-size: inherit;
    text-align: center;
}

    .ratingWidget span {
        display: block;
    }

    .ratingWidget .currentrating {
        font-size: 150%;
        font-weight: 500;
    }

    .ratingWidget a, .ratingWidget a:hover {
        color: #444;
        text-decoration: none
    }

.sidebar .ratingWidget {
    border: none !important;
    margin: unset !important;
}

/* End Rating Widget Style */

/* Support Page Styling */

.support-img {
    border-radius: 10px;
    height: 75px;
}

.contact-row-no-margin {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.taxpert-top-panel {
    border-bottom: 1px solid #CCC;
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin-left: 0px;
    margin-right: 0px;
}

.taxpert-bottom-panel {
    border-bottom: 1px solid #CCC;
    padding-bottom: 10px;
    padding-top: 10px;
    margin: 10px 10px 10px 0;
}

.taxpert-text {
    font-size: 16px;
}

.small-link {
    font-size: 14px;
}

.mb07 {
    margin-bottom: 0.7rem;
}


/* End Support Page Styling */

/* MixWare Style */

.disqusH2 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
    clear: both;
    font-weight: 500;
}

.img-flag {
    border: 1px solid #eee;
    width: 300px !important;
}

.clear {
    clear: both;
}
/* Timeline  Style */
.timeline .timeline-item::after, .timeline .timeline-item::before {
    clear: both;
    content: '';
    display: block;
    width: 100%;
}

.timeline {
    margin: 30px auto;
    padding: 0 10px;
    position: relative;
    transition: all 0.25s ease-in;
    width: 100%;
    color: #ccc;
}

    .timeline::before {
        background: #63C000;
        content: '';
        height: 100%;
        left: 50%;
        position: absolute;
        top: 0;
        width: 3px;
    }

    .timeline::after {
        clear: both;
        content: '';
        display: table;
        width: 100%;
    }

    .timeline a {
        transition: all 0.25s ease-in;
    }

        .timeline a:hover {
            box-shadow: 0 1px 0px 0px #fefefe;
            transition: all 0.25s ease-in;
        }

    .timeline .timeline-item {
        margin-bottom: 0px;
        position: relative;
    }

        .timeline .timeline-item .timeline-icon {
            background: #fefefe;
            border-radius: 50%;
            height: 40px;
            left: 50%;
            margin-left: -19px;
            overflow: hidden;
            position: absolute;
            top: 0;
            width: 40px;
            border: 1px solid #63C000;
        }

            .timeline .timeline-item .timeline-icon img, .timeline .timeline-item .timeline-icon svg, .timeline .timeline-item .timeline-icon .mixicon {
                left: 9px;
                position: relative;
                top: 9px;
                font-size: 20px;
                color: #555;
            }

        .timeline .timeline-item.timeline-continue .timeline-icon {
            background: #63C000;
            border-radius: 50%;
            height: 17px;
            left: 50%;
            margin-left: -7px;
            overflow: hidden;
            position: absolute;
            top: 0;
            width: 17px;
            border: 1px solid #63C000;
        }

        .timeline .timeline-item.timeline-continue .mixicon {
            left: -1px;
            position: relative;
            top: -1px;
            font-size: 18px;
            color: #FFF;
            font-weight: bold;
        }

        .timeline .timeline-item .timeline-icon svg {
            top: 14px;
        }

        .timeline .timeline-item .timeline-content {
            padding: 10px 20px 20px;
            text-align: right;
            transition: all 0.25s ease-in;
            width: 45%;
        }

            .timeline .timeline-item .timeline-content p {
                color: #444444;
            }

            .timeline .timeline-item .timeline-content p {
                font-size: 16px;
                line-height: 1.4;
                margin-bottom: 0;
            }

            .timeline .timeline-item .timeline-content .timeline-content-date {
                font-size: 16px;
                font-weight: bold;
                margin-bottom: 0;
            }

            .timeline .timeline-item .timeline-content .timeline-content-month {
                font-size: 0.875rem;
                text-transform: uppercase;
                font-weight: 400;
            }

            .timeline .timeline-item .timeline-content.right {
                float: right;
                text-align: left;
            }

@media screen and (max-width: 39.9375em) {
    .timeline {
        margin: 30px;
        padding: 0;
        width: 90%;
    }

        .timeline::before {
            left: 0;
        }

        .timeline .timeline-item .timeline-content {
            float: right;
            text-align: left;
            width: 90%;
        }

            .timeline .timeline-item .timeline-content::before, .timeline .timeline-item .timeline-content.right::before {
                border-left: 0;
                border-right: 7px solid #fefefe;
                left: 10%;
                margin-left: -6px;
            }

        .timeline .timeline-item .timeline-icon {
            left: 0;
        }

        .timeline .timeline-item.timeline-continue .timeline-icon {
            left: 0;
        }
}
/* End Timeline  Style */
.row-highlight {
    background-color: #d4edda;
}

/* Taxtool Style */
.taxtool .card-body {
    padding: 1rem !important;
    border-bottom: 1px solid #DDD;
}

.taxtool .tab-pane {
    padding-top: 20px;
    max-height: 500px;
}

    .taxtool .tab-pane .row {
        margin-bottom: 20px;
    }

.taxtool-sm .scrollbar {
    height: 255px;
}

.taxtool-reg .scrollbar {
    height: 475px;
}

label.btn-radio {
    background-color: #f1f1f1 !important;
    border-color: #d5d5d5 !important;
    color: #000 !important;
    margin-bottom: 0px;
}

    label.btn-radio.active {
        background-color: #63C000 !important;
        color: white !important;
        transform: translateY(-0%);
        font-size: 16px;
        z-index: 1 !important;
    }


taxtool .input-group-prepend {
    margin-right: 0px;
    position: relative;
    top: 10px;
}

.taxtool .input-group-tool {
    margin: 0 auto !important;
    width: 150px !important;
}

#PrevNextRow {
    padding: 5px 0px;
    clear: both;
}

.taxtool .prevTab {
    display: none;
}

.taxtool .nav-tabs {
    border-bottom: 1px solid #888;
    padding: 5px;
    background-color: #aaa;
}

input.obj-center {
    text-align: center;
}

.obj-center {
    margin: 0 auto;
}

.taxtool .nav-tabs .nav-link {
    display: block;
    padding: .25em .4em;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 15px;
}

    .taxtool .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
        border-color: #bbb;
        background-color: #bbb;
    }

.taxtool a.nav-link {
    color: #FFF;
}

.taxtool .entryFieldRow {
    display: none;
}

.helpText {
    font-size: 12px;
    position: relative;
    top: -8px;
    color: #555;
    display: block;
}

.taxtool .p0 {
    padding: 0 !important;
}

.taxtool .btn-taxtool {
    color: #fff !important;
    background-color: #4285F4;
    border-color: #4285F4;
    margin-top: 10px;
}

.taxtool .card {
    border-radius: 0px !important;
}

.taxtool .card-body {
    padding: 1rem !important;
    border-bottom: 1px solid #DDD;
}

@media (min-width: 600px) {

    .desktop-calc .w4-taxtool .scrollbar {
        height: 475px !important;
    }
}

.scrollbar {
    float: left;
    height: 415px;
    width: 408px;
    background: #fff;
    overflow-x: hidden;
}

.taxtool-sm .scrollbar {
    height: 255px;
}

.taxtool-reg .scrollbar {
    height: 475px;
}

.scrollbar-primary::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

.scrollbar-primary::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #4285F4;
}

.scrollbar-default::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #F5F5F5;
    border-radius: 10px;
}

.scrollbar-default::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

.scrollbar-default::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #2BBBAD;
}

.taxtool {
    max-width: 410px;
    margin: 0 auto 25px;
    border: 0px solid #000;
    background-color: #37517E !important;
    height: 635px;
    padding-left: 0;
    padding-right: 0;
}

    .taxtool .card {
        border-radius: 0px !important;
    }

.taxtool-footer {
    background-color: #37517E !important;
    color: white;
    padding: 10px 0;
}

.taxtool-sm {
    height: 355px;
}

.taxtool-reg {
    height: 575px
}

.taxtool-title {
    text-align: center;
    color: #FFF;
    padding: 10px 0px;
    font-size: 18px;
    font-weight: 400;
}

.taxtool-subtitle {
    font-size: 14px;
    font-weight: 300;
}

.taxtool h1, .taxtool h2, .taxtool h3 {
    margin-top: 0;
    padding: 10px 0 10px 10px;
    font-family: Roboto;
}

.taxtool h2 {
    font-size: 23px;
    padding-left: 20px;
    font-weight: 700;
}

.taxtool h3 {
    font-size: 18px;
    font-weight: 400;
}

.taxtool .row {
    margin: 0;
}

.taxtool .col-4, .taxtool .col-6 {
    min-height: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.taxtool .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff !important;
    background-clip: padding-box;
}

.taxtool .btn-radio input[type="radio"] {
    position: absolute;
    left: -9999px;
}

#spouseInfo, #depInfo {
    display: none;
}

.input-sm {
    width: 75px !important;
}

.input-reg {
    width: 110px !important;
}
/* End Taxtool Style */

/* End MixWare Style */

.popover-header {
    padding: 0.5rem 0.75rem .4rem !important;
}

.arrow-grey::after {
    border-bottom-color: #f7f7f7 !important;
}

/*START Page Comment Component Style */
.pcContainer {
    margin-top: 10px;
    font-weight: normal;
}

.pccontact .toggler {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.pccontact .pctxtcounter {
    font-size: 11px;
    color: #adacac;
}

.pccontact .adaptive .form-group label {
    left: 10px;
}

.pccontact .diverror {
    display: inline-block;
    margin-left: 5px;
    margin-top: 5px;
    font-size: 80%;
    font-weight: normal;
    color: #7d0303;
}

.pcContainer .skeleton-box {
    display: inline-block;
    height: 0.7em;
    position: relative;
    overflow: hidden;
    background-color: #ebebeb;
    border-radius: 10px;
    margin-bottom: 10px;
}

    .pcContainer .skeleton-box::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        transform: translateX(-100%);
        background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
        -webkit-animation: shimmer 2s infinite;
        animation: shimmer 2s infinite;
        content: "";
    }

@-webkit-keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.pcContainer .pclistcontent {
    font-weight: normal;
}

.pcContainer .review-message {
    font-weight: 400;
    display: block;
    /*font-size: 14px;*/
}

.pcContainer .text-muted {
    color: #6c757d !important;
    font-size: 12px;
}

.pcContainer .efile-reply {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


@media(max-width:991px) {
    .pcContainer .mobile-left {
        text-align: left;
    }

    .pcContainer .efile-reply {
        margin: 0;
        position: initial;
        top: 0;
        -ms-transform: none;
        transform: none;
    }

    .m-wrap {
        flex-wrap: wrap;
    }

        .m-wrap input, .m-wrap select {
            margin: 5px 0;
        }
}

.pcContainer .dot {
    height: 8px;
    width: 8px;
    background-color: #63C000;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}
/*END Page Comment Component Style */


/* Search Result Page Tabs */
.search .nav-tabs .nav-item.show .nav-link,
.search .nav-tabs .nav-link.active,
.search .nav-tabs .nav-link.active:hover {
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid #242e4c;
}

.search .nav-tabs .nav-link.active {
    pointer-events: none;
}

.search .nav-tabs {
    border-bottom-style: dotted;
}

    .search .nav-tabs .nav-link:hover {
        background-color: transparent;
        border-bottom-color: #242e4c;
    }

    .search .nav-tabs .nav-link.active:hover {
        background-color: transparent;
    }

    .search .nav-tabs .nav-link {
        margin-right: 4px;
        border: 0;
        border-bottom: 2px solid transparent;
    }
/* Search Result Page Tabs Ends */

/*pdf link style*/
a[href$=".pdf"]:not(.icndiv>a, #viewPdf>a):after {
    content: " PDF";
    font-size: 80%;
    color: #b3b3b3;
}
a[data-pdf]:not(.icndiv>a, #viewPdf>a):after {
    content: " PDF";
    font-size: 80%;
    color: #b3b3b3;
}
/*pdf link style ends*/

/*radio button style for app pages*/
.btn-group span.btn-radio {
    background-color: #fff !important;
    color: #424450 !important;
    margin-bottom: 0px;
    font-weight: normal;
    border-color: #EAEAEA !important;
    font-size: 14px;
    margin-left: 0 !important;
    padding: 7px 15px !important;
    min-width: 50px;
}

.btn-group .btn {
    border-radius: 7px;
    padding: 7px 15px !important;
    font-size: 14px !important;
    text-decoration: none;
    box-sizing: border-box;
    outline: 0;
    border: 1px solid transparent !important;
    padding: 10px 15px;
}

    .btn-group .btn label {
        margin-bottom: 0;
    }

.btn-group span.btn-radio:not(:first-child) {
    border-left: 0 !important;
}

.btn-group span.btn-radio.active {
    color: #37517E !important;
    z-index: 1 !important;
    font-weight: 600;
    background-color: #f7f7f9 !important;
}
/*radio button style for app ends*/


a[rel=popover] {
    text-decoration: none;
}

    a[rel=popover] .mixicon {
        font-weight: normal !important;
    }

/* Category Left Side Menu */

.mobileCategoryMenu, .mobileCategoryMenuButton, .pageCategoryMenuButton, .pageCategoryMenu {
    display: none;
}

.topPaginationDisplay {
    display: none;
}

.topcatmenu {
    text-align: right;
    visibility: hidden;
    width: 100%
}

.visibleCategoryMenu {
    display: inline-flex;
    margin-top: 0rem;
    margin-bottom: 0;
    box-shadow: none;
    position: relative;
    width: 100%;
    padding: 0;
    border: 0;
    align-items: center;
    font-size: 12px;
    justify-content: flex-end;
}

.catheading {
    color: #757575;
    white-space: nowrap;
    font-size: 12px;
    font-weight: normal;
}


.pageCategoryMenu .visible-mobile:first-child {
    left: 0;
    width: 20px;
    display: inline-flex;
    align-items: center;
    height: 20px;
    border: 1px solid;
    border-radius: 50%;
    margin-right: 5px;
}

.pageCategoryMenu .mixicon {
    font-size: 18px;
    font-weight: bold;
    color: #ababab;
    cursor: pointer;
}

    .pageCategoryMenu .mixicon:hover {
        background-color: #F5F5f5;
    }

.pageCategoryMenu .visible-mobile:last-child {
    display: inline-flex;
    align-items: center;
    height: 20px;
    border: 1px solid;
    border-radius: 50%;
    width: 20px;
    margin-left: 5px;
}

.pageCategoryMenu ul {
    list-style-type: none;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0px;
    margin-bottom: 0px;
    white-space: nowrap;
    overflow: hidden;
    font-size: 12px;
}

    .pageCategoryMenu ul li {
        padding: 3px 5px;
        display: inline-flex;
    }

        .pageCategoryMenu ul li:first-child {
            padding-left: 0;
        }

        .pageCategoryMenu ul li:last-child {
            padding-right: 0;
        }

.visibleCategoryMenu ul li.active {
    border-bottom: 2px solid #999999;
}

    .visibleCategoryMenu ul li.active a {
        color: #757575;
        cursor: default;
        text-decoration: none;
    }

.withcat {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 1rem;
    height: auto;
}

    .withcat .searchbarmargin {
        position: initial;
        margin-bottom: 0 !important;
        margin-left: 20px;
        margin-top: 0;
    }

@media (max-width:991px) {
    .pageCategoryMenu ul {
        overflow-x: auto;
    }

    #raised-top .topcatmenu {
        max-width: 100%;
    }

    .topcatmenu {
        margin-bottom: 1rem
    }

    .withcat {
        display: block;
        margin-bottom: 1rem;
    }

        .withcat .searchbarmargin {
            padding: 0px 0 15px 0 !important;
            margin-left: 0;
        }
}

.hidden {
    display: none;
}

input[range-for] {
    width: 250px;
}

.row.row-question .d-flex.align-items-center {
    flex-wrap: wrap;
    gap: 10px;
}

.compliances{
    position:fixed;
    width:100%;
    bottom:30px;
}
.message {
    padding: 10px;
    text-align: center;
    background-color: #fafafa !important;
    color: #222;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid #dddddd !important;
    max-width: 540px !important;
    width: auto;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.pcH2{
    font-size: 28px;
    margin-top: 0;
    font-weight: 500;
}
.comment-wrapper{
    padding: 20px 20px 10px;
    border: 1px solid #eee;
    background-color: #fff;
    height: auto;
    margin-top: -30px;
    border-radius: 5px;
    position: relative;
}

.comment-link{
    display:inline-flex;
    align-items: center;
}
.comment-link .mixicon{
    font-size:150%;
}

.copyright-text{
    color: #999999;
    font-size: 12px;
    margin-top: 2rem !important;
}


/* switch toggle button (checkbox) */
.efile-switch-btn input { 
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    -moz-appearance: initial;
  }
  
  .efile-switch-btn input::after {
    position: absolute;
    content: "";
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cccccc;
    -webkit-transition: .4s;
    transition: .4s;
    height: 20px !important;
    width: 38px;
  }
  
  .efile-switch-btn input::before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    z-index: 2;
  }

  input:checked::after {
    background-color: #306df4 !important;
  }

  .efile-switch-btn input:checked::before {
    -webkit-transform: translateX(19px) !important;
    -ms-transform: translateX(19px) !important;
    transform: translateX(19px) !important;
  }
  
  .efile-switch-btn input::after {
    border-radius: 34px;
  }
  
  .efile-switch-btn input::before {
    border-radius: 50%;
  }

/* Account page */
.auth-section {
    margin: 30px 0;
}
.auth-section .auth-card {
    width: 450px;
    border-radius: 20px;
    text-align: center;
}
.auth-section .auth-card .auth-title {
    margin: 0 !important;
    font-size: 24px !important;
}
/* .auth-section .auth-card .auth-title span {
    font-size: 14px !important;
    border: 1px solid var(--accent-color);
    margin: auto 0;
    vertical-align: middle;
    padding: 1px 8px;
    border-radius: 20px;
    background-color: rgb(255 215 18 / 50%);
} */
.auth-section .auth-card img {
    max-width: 250px;
    margin: 10px 0;
}
.auth-section .auth-card p {
    margin-bottom: 0 !important;
}
.auth-section .auth-card .btn-success {
    padding: 0.25rem 1.5rem !important;
    font-size: 18px;
    margin: 12px 0;
}
.auth-section .auth-or {
    width: 120px;
    position: relative;
}
.auth-section .auth-or hr {
    position: absolute;
    width: 100%;
    background-color: #C3C3C3;
}
.auth-section .auth-or span {
    font-size: 25px;
    font-weight: 500;
    background-color: var(--white);
    border: 1px solid #C3C3C3;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    align-items: center;
    z-index: 0;
}
@media (max-width:991px) {
    .auth-section {
        align-items: center;
    }
    .auth-section .auth-or hr {
        transform: rotate(90deg);
    }
}
@media (max-width:767px) {
    .auth-section .auth-card {
        width: 100%;
    }
}
@media (max-width:576px) {
    .auth-section .auth-card img {
        width: 100%;
    }
}


/* content-cards */
.cards-content .cards-content-main {
    gap: 22px;
    justify-content: space-between;
}
.cards-content .cards-content-main a {
    cursor: pointer;
}
.cards-content .cards-content-main .card {
    padding: 14px;
    width: 32%;
    border-radius: 20px;
    min-height: 136px;
}

.cards-content .cards-content-main .card .card-heading {
    font-weight: 500;
    margin-top: 0 !important;
    margin-bottom: 6px !important;
}
.cards-content .cards-content-main .card .card-description {
    vertical-align: middle;
    margin-bottom: 0 !important;
}
@media (max-width:1500px) {
    .cards-content .cards-content-main {
        gap: 0;
    }
    .cards-content .cards-content-main .card {
        margin-bottom: 20px;
    }
}
@media (max-width:991px) {
    .cards-content .cards-content-main .card {
        width: 49%;
        margin-bottom: 15px;
    }
}
@media (max-width:767px) {
    .cards-content .cards-content-main {
        gap: 0;
    }
    .cards-content .cards-content-main .card {
        width: 100%;
        min-height: auto;
    }
}

/* header search icon */
.btn.search-link .mixicon {
    top: 0 !important;
    margin-left: 0;
}

/* cta banner */
.cta-section {
    background-color: var(--efile-blue);    
    background-size: 35%;
    background-position: right bottom;
    background-repeat: no-repeat;
    padding: 30px 20px;
    border-radius: 5px;
    color: var(--white);
}
.cta-section .cta-content-full h3,
.cta-section .cta-content h3 {
    margin-top: 0 !important;
    color: var(--white) !important;
}
.cta-section .cta-content-full p,
.cta-section .cta-content p {
    color: var(--white) !important;
}
.cta-section ul,
.cta-section .cta-links-section .cta-link {
    color: var(--white);
}

.cta1-bg{
    background-image: url("/image/cta-01.png");
}
.cta2-bg{
    background-image: url("/image/cta-02.png");
    background-position: right top;
}
.cta-sidebar-bg{
    background-image: url("/image/cta-sidebar-bg.jpg");
    background-position: right bottom;
    background-size: 75%;
    padding: 15px;
}
.cta-section.cta1-bg .cta-content,
.cta-section.cta2-bg .cta-content {
    width: 75%;
}

@media (max-width:767px) {
    .cta-section.cta1-bg {
        background-size: 45%;
        padding-bottom: 90px;
    }
    .cta-section.cta2-bg{
        padding-bottom: 30px;
    }
    .cta-section.cta2-bg .cta-content h3{
        width: 60%;
    }
    .cta-section.cta1-bg .cta-content,
    .cta-section.cta2-bg .cta-content {
        width: 80%;
    }
}
@media (max-width:576px) {
    .cta-section.cta1-bg,
    .cta-section.cta2-bg {
        background-size: 60%;
        padding-bottom: 70px;
    }
    .cta-section.cta2-bg{
        padding-bottom: 30px;
        padding-top: 60px;
    }
    .cta-section.cta2-bg .cta-content h3{
        width: 60%;
    }
    .cta-section.cta1-bg .cta-content,
    .cta-section.cta2-bg .cta-content {
        width: 100%;
    }
}

/* efile help btn */
.efile-help-btn {
    border-radius: 50px;
    border: 1px solid var(--border-gray);
    transition: 0.2s ease-in;
}

.efile-help-btn:hover {
    background-color: #ddffbe;
    transition: 0.2s ease-in;
    text-decoration: none;
}
.efile-help-btn .help-profile {
    width: 45px;
    height: 45px;
    margin-right: 10px;
    border-radius: 50%;
}
.efile-help-btn .help-profile img {
    width:100%;
    height: auto;
    border: 1px solid var(--border-gray);
    border-radius: 50%;
    border-left-width: 0;
}

.efile-help-btn .search-icon,
.efile-help-btn .help-profile.search-icon {
    color: var(--black);
}


.efile-help-btn.large .help-profile {
    width: 55px;
    height: 55px;
}
.efile-help-btn.large .efile-help-title {
    font-size: 22px;
}
.efile-help-btn.large .extra-small {
    font-size: 12px;
}

.efile-help-btn.small .help-profile {
    width: 35px;
    height: 35px;
}
.efile-help-btn.small .efile-help-title {
    font-size: 15px;
}
.efile-help-btn.small .extra-small {
    font-size: 10px;
}

.efile-help-btn.dark {
    background: var(--efile-blue);
    border: 1px solid var(--efile-blue);
}
.efile-help-btn.dark:hover {
    background: var(--efile-blue-hover);
}
.efile-help-btn.dark .help-profile img {
    border: 1px solid var(--efile-blue);
}
.efile-help-btn.dark .efile-help-title {
    color: var(--accent-color);
}
.efile-help-btn.dark .efile-help-title .text-muted {
    color: var(--border-gray) !important;
}
.efile-help-btn.dark .search-icon ,
.efile-help-btn.dark .help-profile.search-icon {
    color: var(--accent-color);
}