/**
 * ----------------- *
 * Table Of Contents *
 * ----------------- *
 *
 * Generic - wrappers
 * Generic - Typography
 * Generic - Headings
 * Generic - Buttons
 * Generic - Input
 * Generic - Tooltip
 * Generic - Pager - Pagination
 * Generic - Progressbars
 * Generic - Card
 * Generic - Accordion
 * Generic - Issuu
 * Header
 * Footer
 * Messages
 * Cards - News
 * Page - Home/Front
 * Page - Home/Front - Competitors
 * Page - Home/Front - Family Battery Blocks
 * Page - Home/Front - Good Reasons
 * Page - Home/Front - Where To Buy
 * Page - Home/Front - News
 * Page - Home/Front - Video
 * Page - Home/Front - Family Summary
 * Page - Home/Front - Catalogue
 * Page - Login
 * Page - Dealer Area
 * Page - About eneloop
 * Page - design & technology
 * Page - sustainable lifestyle
 * Page - Where to buy eneloop batteries
 * Page - contact
 * Page - Takumi
 * Page - Unsupported browser
 * Products - Overview
 * Families
 * News
 * FAQ
 * Popup cookie
 * Search
 * Responsive Styles
 *
 * ----------------- *
 * Colors            *
 * ----------------- *
 * #0098CA - eneloop Blue
 * #1260B9 - eneloop Dark Blue
 * #8EBD0B - Green
 * #738D00 - Green (alt)
 * #F89406 - Yellow/Orange
 * #C10841 - Red/Pink
 */

/*** Generic - Wrappers ***/
.inner-body {
    font-family: "Helvetica", sans-serif;
    position: relative;
}

.panels-flexible-region.container {
    float: none;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.panels-flexible-row.container {
    padding-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

.container .panels-flexible-row.row {
    margin-left: -15px;
    margin-right: -15px;
}

.panels-flexible-row.container-fluid {
    padding-bottom: 0;
}

.container .panels-flexible-region-inside {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.container .row .panels-flexible-region {
    padding-left: 15px;
    padding-right: 15px;
}

.panels-flexible-region {
    width: 100% !important;
}

.bg-blue {
    background-color: #0098CA;
}

.bg-green {
    background-color: #8EBD0B;
}

/*** Generic - Typography ***/
p {
    font-weight: 300;
}

a {
    color: #0098CA;
}

a:hover {
    color: #1260B9;
    text-decoration: none;
}

hr {
    border-color: transparent;
}

/*** Generic - Headings ***/
h1, h2, h3,
h4, h5, h6 {
    font-family: "Helvetica", sans-serif;
}

.title-row,
.node-title {
    border-bottom: 2px solid #F2F2F2;
    margin-bottom: 1rem !important;
    padding: 0 !important;
}

.title-row h1,
.node-title h1 {
    color: #333333;
    font-size: 1.5rem;
    font-weight: 300;
    margin: 20px 0;
}

.block-title {
    color: #0098CA;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    padding-bottom: 20px;
    position: relative;
}

.block-title.reverse {
    color: #FFFFFF;
}

.block-title::before {
    background-color: #0098CA;
    bottom: 1px;
    content: "";
    display: block;
    height: 4px;
    position: absolute;
    width: 40px;
}

.block-title.reverse::before {
    background-color: #FFFFFF;
}

.block-title::after {
    background-color: #0098CA;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    width: 100%;
}

.block-title.reverse::after {
    background-color: #FFFFFF;
}

h2.block-title {
    font-size: 1.5rem;
}

/*** Generic - Buttons ***/
.btn {
    border-radius: 0.1rem;
    font-weight: 300;
    padding: 0.5rem 1rem;
}

.btn-primary {
    background-color: #0098CA;
    border-color: #0098CA;
}

.btn-primary:hover {
    background-color: #FFFFFF;
    border-color: #0098CA;
    color: #0098CA;
}

.btn-success {
    background-color: #8EBD0B;
    border-color: #8EBD0B;
}

.btn-success:hover {
    background-color: #FFFFFF;
    border-color: #8EBD0B;
    color: #8EBD0B;
}

.btn-danger {
    background-color: #C10841;
    border-color: #C10841;
}

.btn-danger:hover {
    background-color: #FFFFFF;
    border-color: #C10841;
    color: #C10841;
}

.btn-warning {
    background-color: #F89406;
    border-color: #F89406;
    color: #FFFFFF;
}

.btn-warning:hover {
    background-color: #FFFFFF;
    border-color: #F89406;
    color: #F89406;
}

.btn-light {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #0098CA;
}

.btn-light:hover {
    background-color: transparent;
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.btn-dark {
    background-color: #1260B9;
    border-color: #1260B9;
}

.btn-dark:hover {
    background-color: #FFFFFF;
    border-color: #1260B9;
    color: #1260B9;
}

.btn-outline-primary {
    background-color: #FFFFFF;
    border-color: #0098CA;
    color: #0098CA;
}

.btn-outline-primary:hover {
    background-color: #0098CA;
    border-color: #0098CA;
    color: #FFFFFF;
}

/*** Generic - Input ***/
.input-group .input-group-prepend > span {
    background-color: #0098CA;
    border-color: #0098CA;
    border-radius: 0.1rem 0 0 0.1rem;
    color: #FFFFFF;
}

.input-group .form-control {
    border-color: #0098CA;
    border-radius: 0.1rem;
    font-size: 14px;
}

.input-group .form-control:focus {
    box-shadow: none;
}

/*** Generic - Tooltip ***/
.tooltip {
    background-color: transparent !important;
}

.tooltip .tooltip-inner {
    background-color: #0098CA;
}

.tooltip.bs-tooltip-auto[x-placement^=top] .arrow::before,
.tooltip.bs-tooltip-top .arrow::before {
    border-top-color: #0098CA !important;
}

.tooltip.bs-tooltip-auto[x-placement^=left] .arrow::before,
.tooltip.bs-tooltip-left .arrow::before {
    border-left-color: #0098CA !important;
}

.tooltip.bs-tooltip-auto[x-placement^=right] .arrow::before,
.tooltip.bs-tooltip-right .arrow::before {
    border-right-color: #0098CA !important;
}

.tooltip.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.tooltip.bs-tooltip-bottom .arrow::before {
    border-bottom-color: #0098CA !important;
}

/*** Generic - Pager - Pagination ***/
nav.eneloop-pager {
    margin: 0.5rem 0 2rem;
}

nav.eneloop-pager .pagination {
    margin: 0;
}

nav.eneloop-pager .pagination .page-item {
    margin: 0 0.25rem;
}

nav.eneloop-pager .pagination .page-item .page-link {
    background-color: #0098CA;
    border-color: #0098CA;
    border-radius: 0.1rem;
    color: #0098CA;
    color: #FFFFFF;
    font-family: "Helvetica", sans-serif;
    height: 40px;
    line-height: 40px;
    padding: 0;
    text-align: center;
    width: 40px;
}

nav.eneloop-pager .pagination .page-item .page-link::after {
    display: block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    left: 50%;
    position: absolute;
    text-indent: 0;
    top: 50%;
    transform: translate(-50%,-50%);
}

nav.eneloop-pager .pagination .page-item .page-link:active,
nav.eneloop-pager .pagination .page-item .page-link:focus,
nav.eneloop-pager .pagination .page-item .page-link:hover {
    background-color: #FFFFFF;
    color: #0098CA;
}

nav.eneloop-pager .pagination .page-item.disabled .page-link {
    color: #8F8F8F;
}

nav.eneloop-pager .pagination .page-item.page-current .page-link {
    background-color: #FFFFFF;
    color: #0098CA;
}

nav.eneloop-pager .pagination .page-item.page-ellipsis .page-link {
    background-color: transparent;
    border: none;
    border-radius: 0;
}

nav.eneloop-pager .pagination .page-item.page-first .page-link,
nav.eneloop-pager .pagination .page-item.page-previous .page-link,
nav.eneloop-pager .pagination .page-item.page-next .page-link,
nav.eneloop-pager .pagination .page-item.page-last .page-link {
    position: relative;
    text-indent: -9999px;
    white-space: nowrap;
}

nav.eneloop-pager .pagination .page-item.page-first .page-link::after {
    content: '\f100';
}

nav.eneloop-pager .pagination .page-item.page-previous .page-link::after {
    content: '\f104';
}

nav.eneloop-pager .pagination .page-item.page-next .page-link::after {
    content: '\f105';
}

nav.eneloop-pager .pagination .page-item.page-last .page-link::after {
    content: '\f101';
}

/* Generic - Progressbars */
.progress {
    background-color: #FFFFFF;
    background-color: transparent;
    border: 1px solid #0098CA;
    border-radius: 0;
}

.progress-bar {
    background-color: #0098CA;
}

/* Generic - Card */
.card {
    border: none;
    border-radius: 0.1rem;
}

.card .btn {
    font-size: 1rem;
    font-weight: 400;
    margin: 1.25rem 0;
}

/*** Generic - Accordion ***/
.accordion {}

.accordion .card {
    border: none;
    border-radius: 0;
    margin-bottom: 0.3rem;
}

.accordion .card-header {
    background-color: #F2F2F2;
    border: none;
    border-radius: 0.1rem;
    padding: 0;
}

.accordion .card-header .btn {
    border: none;
    border-radius: 0.1rem;
    color: #000000;
    display: block;
    margin: 0;
    overflow: visible;
    padding-left: 65px;
    position: relative;
    text-align: left;
    text-decoration: none;
    text-overflow: clip;
    white-space: normal;
    width: 100%;
}

.accordion .card-header .btn::before {
    color: #0098CA;
    content: '\f067';
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-size: 1.2rem;
    font-weight: 900;
    left: 0;
    line-height: 40px;
    position: absolute;
    text-align: center;
    top: 0;
    transition: color .15s ease-in-out;
    width: 45px;
}

.accordion .card-header .btn::after {
    background-color: #FFFFFF;
    content: '';
    display: inline-block;
    left: 45px;
    height: 100%;
    position: absolute;
    top: 0;
    transition: opacity .15s ease-in-out;
    width: 1px;
}

.accordion .card-header .btn[aria-expanded=true] {
    background-color: #0098CA;
    color: #FFFFFF;
}

.accordion .card-header .btn[aria-expanded=true]::before {
    color: #FFFFFF;
    content: '\f068';
}

.accordion .card-header .btn[aria-expanded=true]::after {
    opacity: 0.4;
}

.accordion .card-body {
    padding: 1rem 1rem 1rem 65px;
}

.accordion .card-body .btn {
    margin: 0;
}

.yt-iframe {
    background: #000;
    border: none;
    display: block;
    height: 80vh;
    width: 100%;
}

/*** Generic - Issuu ***/
.issuuembed {
    height: 0 !important;
    margin-bottom: 3rem;
    margin-top: 2rem;
    padding-top: 56.25%;
    position: relative;
}

.issuuembed > iframe {
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

/*** Header ***/
.topbar {
    background-color: #000000;
    color: #FFFFFF;
    height: 36px;
}

.topbar .panasonic-link {
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 0%, #dddddd 65%, #cccccc 75%, #aaaaaa 85%, #999999 100%);
    background: -webkit-linear-gradient(top, #ffffff 0%, #dddddd 65%, #cccccc 75%, #aaaaaa 85%, #999999 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #dddddd 65%, #cccccc 75%, #aaaaaa 85%, #999999 100%);
    display: inline-block;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#999999',GradientType=0 );
    height: 36px;
    line-height: 22px;
    padding: 6px 15px 8px;
    text-align: center;
    width: 90px;
}

.topbar .panasonic-link:hover {
    background: #FFFFFF;
    background: -moz-linear-gradient(top, #FFFFFF 0%, #DDDDDD 70%, #CCCCCC 80%, #AAAAAA 90%, #999999 100%);
    background: -webkit-linear-gradient(top, #FFFFFF 0%, #DDDDDD 70%, #CCCCCC 80%, #AAAAAA 90%, #999999 100%);
    background: linear-gradient(to bottom, #FFFFFF 0%, #DDDDDD 70%, #CCCCCC 80%, #AAAAAA 90%, #999999 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#999999',GradientType=0 );
}

.topbar nav.navbar-top {
    padding: 0;
}

.topbar nav.navbar-top > .menu {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.topbar nav.navbar-top > .menu > li {
    float: left;
    height: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.topbar nav.navbar-top > .menu > li > a {
    color: #FFFFFF;
    display: inline-block;
    font-size: 0.8rem;
    line-height: 24px;
    padding: 6px 12px;
}

.topbar nav.navbar-top > .menu > li > a:active,
.topbar nav.navbar-top > .menu > li > a:focus,
.topbar nav.navbar-top > .menu > li > a:hover {
    background-color: #1260B9;
    text-decoration: none;
}

.topbar nav.navbar-top .lang-switch {
    height: 36px;
    position: relative;
}

.topbar nav.navbar-top .lang-switch > button {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none !important;
    color: #FFFFFF;
    font-size: 0.8rem;
    line-height: 24px;
    /* margin-right: -12px; */
    padding: 6px 12px;
}

/* .topbar nav.navbar-top .lang-switch > button::after {
    border: none;
    content: "\f078" !important;
    font-family: "Font Awesome 5 Free";
} */

.topbar nav.navbar-top .lang-switch > button:hover {
    background-color: #1260B9;
}

.topbar nav.navbar-top .lang-switch > .dropdown-menu {
    background-color: #000000;
    /* border: 1px solid #000000; */
    border: none;
    border-radius: 0;
    left: auto;
    margin: 0;
    min-width: 100%;
    padding: 3px 0;
    right: 0;
}

.topbar nav.navbar-top .lang-switch > .dropdown-menu > li > a {
    color: #FFFFFF;
    display: block;
    font-size: 0.8rem;
    padding: 3px 12px;
    line-height: 18px;
    text-transform: uppercase;
    text-align: center;
}

.topbar nav.navbar-top .lang-switch > .dropdown-menu > li > a:hover {
    background-color: #1260B9;
    text-decoration: none;
}

/* .navbar-eneloop {
    height: 140px;
} */

/* .navbar-collapse {
    flex-grow: inherit;
} */

.navbar-eneloop .navbar-header {
    width: 100%;
}

.navbar-eneloop .navbar-header .navbar-toggler {
    border: none;
    color: #1260B9;
    margin-top: 16px;
}

.navbar-eneloop .navbar-brand {
    margin-right: 3rem;
}

.navbar-eneloop #main-menu {}

.navbar-eneloop #main-menu > li {
    display: block;
    height: 52px;
    list-style: none;
    padding: 0 .25rem;
}

.navbar-eneloop #main-menu > li > a {
    border: 1px solid transparent;
    color: #000000;
    display: block;
    font-family: "Helvetica", sans-serif;
    font-weight: 200;
    line-height: 20px;
    padding: 15px;
    position: relative;
    text-decoration: none;
    z-index: 999;
}

.navbar-eneloop #main-menu > li > a:active,
.navbar-eneloop #main-menu > li > a:focus,
.navbar-eneloop #main-menu > li > a:hover {
    color: #1260B9;
}

.navbar-eneloop #main-menu > li > a.active {
    color: #1260B9;
}

.navbar-eneloop #main-menu > li > a.active::after {
    border-bottom: 3.5px solid #1260B9;
    bottom: 0.4rem;
    content: "";
    left: 13px;
    position: absolute;
    right: 13px;
    width: auto;
}

.navbar-eneloop #main-menu > li.expanded {
    /* padding-right: 15px; */
    position: relative;
    z-index: 9999;
}

.navbar-eneloop #main-menu > li.expanded a {
    pointer-events: none;
}

.navbar-eneloop #main-menu > li.expanded > ul.dropdown-menu a {
    pointer-events: all;
}



/* .navbar-eneloop #main-menu > li.expanded::before {
    color: #000000;
    content: "\f078";
    cursor: context-menu;
    display: block;
    font-family: "Font Awesome 5 Free";
    font-size: 0.5rem;
    font-weight: 900;
    height: 20px;
    line-height: 20px;
    position: absolute;
    right: 10px;
    text-align: center;
    transform: translateY(-50%);
    top: 50%;
    vertical-align: middle;
    width: 15px;
} */

.navbar-eneloop #main-menu > li.expanded:hover::before {
    color: #1260B9;
}

/* .navbar-eneloop #main-menu > li.expanded > a {
    overflow: auto;
    position: relative;
    width: auto;
} */

/* .navbar-eneloop #main-menu > li.expanded:hover > a.active::after {
    display: none;
} */

.navbar-eneloop #main-menu > li.expanded > ul.menu.main-submenu.dropdown-menu {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 0;
    -webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.25);
    margin-left: .75rem;
    margin-top: -1px;
    min-width: 11rem;
    top: 100%;
    white-space: nowrap;
    z-index: 998;
}

.navbar-eneloop #main-menu > li.expanded:hover > ul.menu.main-submenu.dropdown-menu {
    display: block;
}

.navbar-eneloop #main-menu > li.expanded > ul.menu.main-submenu.dropdown-menu > li {
    list-style: none;
    margin: 0 5px;
    padding: 0;
}

.navbar-eneloop #main-menu > li.expanded > ul.menu.main-submenu.dropdown-menu > li > a {
    color: #000000;
    display: block;
    padding: 5px 10px;
}

.navbar-breadcrumb {
    background-color: #F2F2F2;
    margin-bottom: 1rem;
}

.navbar-breadcrumb > .breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
}

.navbar-breadcrumb > .breadcrumb > .breadcrumb-item + .breadcrumb-item::before {
    color: #8F8F8F;
    font-size: 0.9rem;
    line-height: 30px;
}

.navbar-breadcrumb > .breadcrumb > .breadcrumb-item > a,
.navbar-breadcrumb > .breadcrumb > .breadcrumb-item > span {
    color: #8F8F8F;
    display: inline-block;
    font-size: 0.9rem;
    line-height: 30px;
}

.navbar-breadcrumb > .breadcrumb > .breadcrumb-item > span {
    cursor: default;
}

@media (max-width: 767px) {
    .navbar-eneloop .navbar-brand {
        margin-right: 1rem;
        width: 200px;
    }

    .navbar-light .navbar-toggler {
        float: right;
    }
}

.mobile-fixed-block {
    background-color: #0098CA;
    border-top: 1px solid #FFFFFF;
    bottom: 0;
    line-height: 50px;
    position: fixed;
    text-align: center;
    width: 100%;
    z-index: 9999;
}

.mobile-fixed-block a {
    color: white;
}

.search-icon {
    cursor: pointer;
    display: none;
    font-size: 17px;
    font-weight: 900;
    margin-right: 5px;
}

.eneloop-search-block {
    background: #1260B9;
    display: flex!important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    flex-grow: 1;
    transition: all .5s ease-in-out;
}

.eneloop-search-block.search-block-active,
.page-search .eneloop-search-block {
    display: flex !important;
}

.eneloop-search-block .shortcode-block {
    width: 100%;
}

.eneloop-search-block form {
    position: relative;
    margin-bottom: 0.5em;
}

.eneloop-search-block .form-item.form-type-textfield {
    margin: 0.75em 0;
}

.eneloop-search-block input[type=text] {
    background: #1260B9;
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-weight: 300;
    outline: none;
    width: 100%;
}

.eneloop-search-block .form-actions {
    background: #1260B9;
    display: inline-block;
    margin: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.eneloop-search-block .form-actions:before {
    content: "\f002";
    color: #fff;
    display: block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 17px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

.eneloop-search-block .form-actions input {
    cursor: pointer;
    opacity: 0;
    width: 30px;
}

/*** Footer ***/
footer {
    font-family: "Helvetica", sans-serif;
    margin-top: 1.5rem;
}

footer .footer-main {
    background-color: #0098CA;
    border-top: 1px solid #FFFFFF;
    padding: 2.5rem 0;
}

footer .footer-main h2 {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.25rem;
    margin-top: 30px;
    padding-bottom: 20px;
    position: relative;
}

footer .footer-main h2::before {
    background-color: #FFFFFF;
    bottom: 1px;
    content: "";
    display: block;
    height: 4px;
    position: absolute;
    width: 40px;
}

footer .footer-main h2::after {
    background-color: #FFFFFF;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    width: 100%;
}

footer .footer-main .footer-col .content {
    display: none;
}

footer .footer-main .footer-col.footer-col-active .content {
    display: block;
}

footer .footer-main .footer-col:after, footer .footer-main .footer-col.footer-col-active:after {
    content: "\f055";
    color: white;
    font-family: 'Font Awesome 5 Free';
    font-size: 1.25rem;
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 35px;
}

footer .footer-main .footer-col.footer-col-active:after {
    content: "\f056";
}

footer .footer-main p {
    color: #FFFFFF;
    font-weight: 300;
}

footer .footer-main .socials {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

footer .footer-main .socials > li {
    margin: 2.5px 5px;
}

footer .footer-main .socials > li:first-child {
    margin-left: 0;
}

footer .footer-main .socials > li > a {
    background-color: #1260B9;
    color: #FFFFFF;
    display: block;
    height: 35px;
    line-height: 35px;
    position: relative;
    text-align: center;
    width: 35px;
}

footer .footer-main .socials > li.facebook > a {
    background-color: #4267B2;
}

footer .footer-main .socials > li.youtube > a {
    background-color: #FF0000;
}

/* footer .footer-main .socials > li > a:active,
footer .footer-main .socials > li > a:focus,
footer .footer-main .socials > li > a:hover {
    background-color: transparent;
} */

footer .footer-main .socials > li > a > svg {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
}

footer .footer-main .menu {
    margin: 0;
    padding: 0;
}

footer .footer-main .menu > li {
    list-style: none;
    margin: 0;
}

footer .footer-main .menu > li > a {
    color: #FFFFFF;
    font-weight: 300;
}

footer .footer-bottom {
    background-color: #0098CA;
    border-top: 1px solid #FFFFFF;
    margin-bottom: 50px;
    padding: 1rem 0;
}

footer .footer-bottom span.copyright {
    color: #FFFFFF;
    display: inline-block;
    font-size: .9rem;
    font-weight: 200;
    line-height: 28px;
}

#newsletter-signup {
    height: 40px;
    position: relative;
}

#newsletter-signup input[type=email] {
    background-color: #BDE4F1;
    border: 2px solid #BDE4F1;
    border-radius: 50px;
    color: #0098CA;
    font-size: 0.8rem;
    height: 40px;
    line-height: 30px;
    outline: none;
    padding: 3px 100px 3px 20px;
    position: absolute;
    width: 100%;
}

#newsletter-signup input[type=email]:focus {
    border-color: #FFFFFF;
}

#newsletter-signup input[type=submit] {
    background-color: #FFFFFF;
    border: 2px solid #FFFFFF;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
    color: #0098CA;
    cursor: pointer;
    font-size: 0.8rem;
    line-height: 30px;
    outline: none;
    padding: 3px 0;
    position: absolute;
    right: 0;
    text-align: center;
    width: 100px;
}

#newsletter-signup input[type=submit]:hover {
    background-color: #0098CA;
    color: #FFFFFF;
}

footer .actions {
    bottom: 75px;
    position: fixed;
    right: 25px;
    text-align: right;
    width: 150px;
    z-index: 999;
}

footer .actions .btn {
    background-color: #0098CA;
    border: solid 1px #FFFFFF;
    border-radius: 100%;
    display: block;
    height: 50px;
    margin-bottom: 10px;
    margin-left: 100px;
    padding: 14px;
    position: relative;
    vertical-align: middle;
    width: 50px;
}

footer .actions .btn:active,
footer .actions .btn:focus,
footer .actions .btn:hover {
    background-color: #0098CA !important;
    border-color: #FFFFFF !important;
    box-shadow: none !important;
    color: #FFFFFF;
}

footer .actions .btn.btn-edit {
    display: none;
}

footer .actions .btn > i,
footer .actions .btn > svg {
    font-size: 20px;
    height: 20px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 20px;
}

/*** Messages ***/
#messages {
    margin-bottom: 15px;
    margin-top: 10px;
}

.front #messages {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 997;
}

#messages .message-bar {
    background-color: #000000;
    border-bottom: none;
    bottom: 0;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-size: 1.5rem;
    padding: 6px 10px;
    position: absolute;
}

#messages .message-bar > span {
    margin-right: 7.5px;
}

#messages .message-bar > span:last-child {
    margin-right: 0;
}

#messages .message-bar > span.status {
    color: #2DC36A;
}

#messages .message-bar > span.warning {
    color: #FE8A01;
}

#messages .message-bar > span.error {
    color: #F62635;
}

#messages .message-bar > span.disabled {
    color: #FFFFFF;
    opacity: 0.5;
}

#messages #message-block > .card {
    background-color: #FFFFFF;
    background-image: none;
    background-position: 7.5px center;
    background-repeat: no-repeat;
    border-left-width: 40px !important;
    border-radius: 0;
    margin-bottom: 5px;
    padding: 20px;
    position: relative;
}

#messages #message-block > .card:after {
    background-color: #000000;
    color: #FFFFFF;
    content: "\f05a";
    font-family: 'Font Awesome 5 Free';
    font-size: 1.25rem;
    font-weight: 900;
    left: -20px;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

#messages #message-block > .card.status:after {
    background-color: #2DC36A;
    content: "\f05a";
}

#messages #message-block > .card.warning:after {
    background-color: #FE8A01;
    content: "\f06a";
}

#messages #message-block > .card.error:after {
    background-color: #F62635;
    content: "\f057";
}

#messages #message-block > .card.status {
    border: #2DC36A solid 3px;
}

#messages #message-block > .card.warning {
    border: #FE8A01 solid 3px;
}

#messages #message-block > .card.error {
    border: #F62635 solid 3px;
}

#messages #message-block > .card > .card-body {
    padding: 0;
}

#messages #message-block > .card > .card-body > ul {
    margin: 0;
    padding-left: 20px;
}

#messages #message-block > .card button.close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 21px;
}

#messages #message-block > .card.status button.close {
    color: #2DC36A;
}

#messages #message-block > .card.warning button.close {
    color: #FE8A01;
}

#messages #message-block > .card.error button.close {
    color: #F62635;
}

/*** Cards - News ***/
.view-news.view-id-news.view-display-id-latest nav.eneloop-pager {
    margin-top: 0;
}

.card-news {
    border: none;
    border-radius: 0;
}

.card-news .card-img-top-wrapper {
    border-radius: 0.1rem;
    display: block;
    height: 175px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.card-news .card-img-top-wrapper::after {
    color: #FFFFFF;
    content: '\f03e';
    display: none;
    font-family: "Font Awesome 5 Free";
    font-size: 5rem;
    font-weight: 900;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
}

.card-news .card-img-top-wrapper.img-error {
    background-color: #0098CA;
}

.card-news .card-img-top-wrapper.img-error::after {
    display: block;
}

.card-news .card-img-top-wrapper .card-img-top {
    border-radius: 0.1rem;
}

.card-news .card-img-top-wrapper.img-error .card-img-top {
    display: none;
}

.card-news .card-body {
    padding-left: 0;
    padding-right: 0;
}

.card-news .card-title {
    height: 50px;
    margin-bottom: 10px;
    overflow: hidden;
}

.card-news .card-title a {
    color: #000000;
    display: block;
    font-family: "Helvetica", sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 25px;
}

.card-news .card-text {
    font-family: "Helvetica", sans-serif;
    font-size: 0.925rem;
    height: 100px;
    margin-bottom: 10px;
    overflow: hidden;
}

.card-news .btn {
    background-color: #0098CA;
    border-color: #0098CA;
    border-radius: 0.1rem;
    /* font-size: 0.9rem; */
    font-weight: 300;
    padding: 0.5rem 1rem;
}

.card-news .btn:active,
.card-news .btn:focus,
.card-news .btn:hover {
    background-color: #FFFFFF;
    color: #0098CA;
}

/*** Page - Home/Front ***/
.homepage-block-item {
    display: block;
    margin-bottom: 0px;
    margin-top: 15px;
}

.homepage-block-item:active,
.homepage-block-item:focus,
.homepage-block-item:hover {
    opacity: 0.8;
    text-decoration: none;
}

.homepage-block-item > .title {
    align-items: center;
    background-color: #0098CA;
    display: flex;
    height: 70px;
    padding: 12px 30px;
}

.homepage-block-item > .title > h3 {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
    text-align: center;
    width: 100%;
}

.homepage-block-item > .image {
    height: 150px;
    overflow: hidden;
    width: 100%;
}

.homepage-block-item > .image > img {
    height: 150px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.homepage-block-item > .excerpt {
    height: auto;
    overflow: hidden;
    padding: 10px;
}

.homepage-block-item > .excerpt > p {
    color: #0098CA;
    font-size: 0.85rem;
    height: auto;
    line-height: 20px;
    margin: 0;
    overflow: hidden;
}

/*** Page - Home/Front - Competitors ***/
.competitors {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    height: 90%;
    margin: 0 -15px;
}

.competitors .competitor {
    color: #0098CA;
    margin: 25px 0;
    padding: 0 15px;
    text-align: center;
    width: 50%;
}

.competitors .competitor .percentage {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 25px;
}

.competitors .competitor .name {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 30px;
}

.competitors .competitor .progress {
    height: 0.6rem;
    margin: 7.5px 5%;
}

.competitors .competitor:nth-child(2n) {
    color: #738D00;
}

.competitors .competitor:nth-child(2n) .progress {
    border-color: #738D00;
}

.competitors .competitor:nth-child(2n) .progress-bar {
    background-color: #738D00;
}

.competitors .competitor:nth-child(4n-1) {
    color: #F89406;
}

.competitors .competitor:nth-child(4n-1) .progress {
    border-color: #F89406;
}

.competitors .competitor:nth-child(4n-1) .progress-bar {
    background-color: #F89406;
}

.competitors .competitor:nth-child(4n) {
    color: #C10841;
}

.competitors .competitor:nth-child(4n) .progress {
    border-color: #C10841;
}

.competitors .competitor:nth-child(4n) .progress-bar {
    background-color: #C10841;
}

/*** Page - Home/Front - Family Battery Blocks ***/
.family-battery-block {
    margin-bottom: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.family-battery-block p {
    min-height: 120px;
}

.family-battery-block > img {
    max-height: 200px;
}

/*** Page - Home/Front - Good Reasons ***/
#good-reasons {
    margin-bottom: 3rem;
    margin-top: 3.5rem;
}

#good-reasons .good-reason {
    color: #FFFFFF;
}

#good-reasons .good-reason .icon {
    height: 150px;
}

#good-reasons .good-reason .icon > svg {
    height: 80px;
    margin: 35px 0;
    width: 100%;
}

/*** Page - Home/Front - Where To Buy ***/
#where-to-buy-bar p,
#productfinder-bar p {
    color: #FFFFFF;
    font-size: 1.75rem;
    line-height: 35px;
    margin: 2rem 0;
    margin-bottom: 10px;
}

#where-to-buy-bar a.btn,
#productfinder-bar a.btn {
    color: #8EBD0B;
    float: right;
    line-height: 30px;
    margin: 2rem 0;
    margin-top: 0px;
    padding: 9px 2rem;
    width: 100%;
}

#where-to-buy-bar a.btn:hover,
#productfinder-bar a.btn:hover {
    color: #FFFFFF;
}

#productfinder-bar p,
#productfinder-bar a.btn {
    margin: 1.5rem 0;
}

.wtb-eneloop .panel-separator {
    display: none !important;
}

.enelp-takumi-container {
    background: url(/sites/all/themes/eneloop/assets/images/background/Motoaki-Shimamura.jpg);
    background-size: cover;
    background-position-y: -10px;
}

.enelp-takumi-container #takumi-block .takumi-content {
    background: white;
    margin-top: 200px;
    margin-bottom: 40px;
}

.takumi-content p.takumi-name {
    margin-bottom: 5px;
    padding-top: 25px;
    font-size: 20px;
}

.takumi-content p.takumi-title, .l-e-content .takumi-title {
    color: #0198c9;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.takumi-content p.takumi-text, .l-e-content .takumi-text {
    font-size: 14px;
}

.takumi-content a {
    margin-bottom: 30px;
}

.enelp-limited-edition-container {
    background: url(/sites/all/themes/eneloop/assets/images/background/limited-edition-bg.jpg);
    background-size: cover;
}

.enelp-limited-edition-container .l-e-content {
    background: #fff;
    margin: 80px 0;
    padding-top: 40px;
    padding-bottom: 40px;
}

.enelp-limited-edition-container .l-e-content img {
    width: 100%;
}

/*** Page - Home/Front - News ***/
#homepage-news {
    padding-bottom: 0;
    padding-top: 4rem;
}

#latest-news-item {
    color: #FFFFFF;
    /* height: 100%; */
    padding: 1.2rem;
}

#latest-news-item h5 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    padding-top: 0.5rem;
}

#latest-news-item p {
    margin: 1.25rem 0;
}

#latest-news-item a.btn {
    color: #8EBD0B;
    margin: 1rem 0 0;
}

#latest-news-item a.btn:hover {
    color: #FFFFFF;
}

#more-eneloop-news {
    padding: 1.2rem;
    position: relative;
}

#more-eneloop-news > a.btn {
    position: relative;
    right: 1.2rem;
    top: 1.2rem;
}

.more-news-list {}

.more-news-list ul {
    margin: 0;
}

.more-news-list .news-item {
    border-bottom: 1px solid #DDDDDD;
}

.more-news-list .news-item:last-child {
    border-bottom: none;
}

.more-news-list .news-item .news-item-inner {
    align-items: center;
    color: #000000;
    display: flex;
    text-decoration: none;
    padding: 1.5rem 0;
}

.more-news-list .news-item .news-item-inner:hover {
    opacity: 0.8;
}

.more-news-list .news-item:first-child .news-item-inner {
    padding-top: 0.5rem;
}

.more-news-list .news-item:last-child .news-item-inner {
    padding-bottom: 0.5rem;
}

.more-news-list .news-item .news-item-image {
    border-radius: 100%;
    height: 100px;
    overflow: hidden;
    width: 100px;
    flex-shrink: 1;
}

.more-news-list .news-item .news-item-image > img {
    flex-grow: 1;
    height: 100px;
    object-fit: cover;
    width: 100%;
}

.more-news-list .news-item .news-item-body {
    flex-grow: 1;
    width: 50%;
}

.more-news-list .news-item .news-item-body h5 {
    color: #0098CA;
    font-size: 1rem;
}

.more-news-list .news-item .news-item-body p {
    color: #000000;
    margin: 0;
}

.more-news-list .news-item .news-item-body small {
    color: rgba(0,152,202,0.5);
    font-weight: 300;
}

/*** Page - Home/Front - Video ***/
.homepage-video-wrapper {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.homepage-video-wrapper .homepage-video-inner {
    left: 50%;
    padding-top: 56.25%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}

.homepage-video-wrapper iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

/*** Page - Home/Front - Family Summary ***/
.family-summary {}

.family-summary .card {
    border: none;
    border-radius: 0;
    margin-bottom: 4rem !important;
    margin-top: 4rem !important;
}

.family-summary .card .card-header {
    background-color: #FFFFFF;
    border-color: rgba(0,152,202,0.25);
    position: relative;
}

.family-summary .card .card-title {
    color: #0098CA;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 70px;
    margin-bottom: 1rem;
}

.family-summary .card .card-icon {
    border: 1px solid #000000;
    border-radius: 100%;
    display: block;
    height: 70px;
    line-height: 70px;
    position: absolute;
    right: 1.25rem;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    top: 0.75rem;
    width: 70px;
}

.family-summary .card .card-icon:hover {
    background-color: #0098CA;
    border-color: #0098CA;
}

.family-summary .card .card-icon::before {
    color: #0098CA;
    display: block;
    font-family: "Font Awesome 5 Free";
    font-size: 30px;
    font-weight: 900;
    height: 35px;
    left: 50%;
    line-height: 35px;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 35px;
}

.family-summary .card .card-icon:hover::before {
    color: #FFFFFF;
}

.family-summary .card .card-icon.camera::before {
    content: '\f030';
}

.family-summary .card .card-icon.camera-retro::before {
    content: '\f083';
}

.family-summary .card .card-icon.feather::before {
    content: '\f52d';
}

.family-summary .card .card-icon.feather-alt::before {
    content: '\f56b';
}

.family-summary .card .card-icon.house::before {
    content: '\f015';
}

.family-summary .card .card-icon.leaf::before {
    content: '\f06c';
}

.family-summary .card .list-group {}

.family-summary .card .list-group .list-group-item {
    border-color: rgba(0,152,202,0.25);
    font-weight: 300;
}

.family-summary .card .list-group .list-group-item::before {
    font-family: "Font Awesome 5 Free";
    font-size: 1.05rem;
    font-weight: 900;
    margin-right: 10px;
}

.family-summary .card .list-group .list-group-item.plug::before {
    content: '\f1e6';
}

.family-summary .card .list-group .list-group-item.bulb::before {
    content: '\f0eb';
}

.family-summary .card .list-group .list-group-item.chart::before {
    content: '\f201';
}

.family-summary .card .list-group .list-group-item.sun::before {
    content: '\f185';
}

.family-summary .card .list-group .list-group-item.solar::before {
    content: '\f5ba';
}

.family-summary .card .list-group .list-group-item.tachometer::before {
    content: '\f3fd';
}

.family-summary .card .list-group .list-group-item.thermometer::before {
    content: '\f2ca';
}

.family-summary .card .btn {
    font-size: 1rem;
    font-weight: 400;
    padding: 1rem;
    margin: 1.25rem 0;
}

/*** Page - Home/Front - Catalogue ***/
.panels-flexible-region-2-download_our_catalogue {
    margin-top: 20px;
}

#download-catalogue {
    color: #FFFFFF;
    /* height: 100%; */
    padding: 1.2rem;
}

#download-catalogue .catalogue-description img {
    display: block;
    margin: auto;
    width: 80%;
}

#download-catalogue .catalogue-description .col-12 {
    text-align: center;
}

#download-catalogue .catalogue-description p {
    color: white;
    font-size: 15px;
    margin-bottom: 30px;
}

#facebook-block {
    display: none;
    max-width: 100%;
    overflow: hidden;
    text-align: center;
}

/*** Page - Home/Front - Sustainable Lifestyl ***/
.sustainable-lifestyle-banner {
    background-image: url('../images/background/earth.jpg');
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

#sustainable-lifestyle-block {
    background-color: #FFFFFF;
    margin: 0.5rem 0 3rem;
    padding: 1.2rem;
}

#sustainable-lifestyle-block h3 {
    color: #0098CA;
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

#sustainable-lifestyle-block p {
    color: #0098CA;
    margin-bottom: 2rem;
}

#sustainable-lifestyle-block a.btn {
    padding: 0.8rem 2.5rem;
    margin-bottom: 0.5rem;
}

/*** Page - Login ***/
#panasonic-login-form {
    border: 1px solid #0098CA;
    border-radius: 0.1rem;
    margin: 1.25rem 0;
    padding: 1.5rem 1.25rem;
}

#panasonic-login-form h1 {
    color: #0098CA;
    font-size: 18px;
    margin: 0 0 0.5rem 0;
}

#panasonic-login-form .card-body {
    padding: 0;
}

#panasonic-login-form #edit-actions {
    margin: 0;
}

/*** Page - Dealer Area ***/
#dealer-area {}

#dealer-area .card-dealer-area {
    border: none;
}

#dealer-area .card-dealer-area .card-body {
    text-align: center;
}

#dealer-area .card-dealer-area .icon {
    margin: 1rem 0 2.5rem;
}

#dealer-area .card-dealer-area .icon > svg {
    font-size: 7.5rem;
}

#dealer-area .card-dealer-area h3 {
    color: #8F8F8F;
    display: block;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 35px;
    margin: 1rem 0 2.5rem;
    padding-bottom: 15px;
    position: relative;
}

#dealer-area .card-dealer-area h3::before {
    background-color: #0098CA;
    bottom: 1px;
    content: "";
    display: block;
    height: 4px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 40px;
}

#dealer-area .card-dealer-area h3:after {
    background-color: #0098CA;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    width: 100%;
}

#dealer-area .card-dealer-area .btn {}

#dealer-area .card-dealer-area .btn > i,
#dealer-area .card-dealer-area .btn > svg {
    margin-right: 5px;
}

/*** Product ***/
#tech-specs {
    margin-top: 0.5rem;
}

#tech-specs .tech-specs-title {
    background-color: #F2F2F2;
    font-weight: 400;
    padding: 0.5rem 0.75rem;
    text-transform: uppercase;
}

#tech-specs .tech-specs-list {
    padding: 0.5rem 0.75rem;
}

#tech-specs .tech-specs-item {
    display: flex;
    margin-bottom: 0.5rem;
}

#tech-specs .tech-specs-item:last-child {
    margin-bottom: 0;
}

#tech-specs .tech-specs-item > * {
    display: inline-block;
    width: 50%;
}

#tech-specs .tech-specs-item > label {
    font-weight: 400;
    margin: 0;
}

#tech-specs .tech-specs-item > .value {
    color: #8F8F8F;
    font-weight: 300;
}

#media-carousel .carousel-inner {
    background-color: #FFFFFF;
    border: none;
    height: 250px;
    margin-top: 0;
    max-height: 50vh;
}

#media-carousel .carousel-inner .carousel-item {
    height: 100%;
    text-align: center;
}

#media-carousel .carousel-inner .carousel-item img {
    left: 50%;
    margin: 0 auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

#media-carousel .carousel-inner .carousel-item .carousel-video-wrapper {
	height: 0;
    padding-bottom: 52.75%;
	padding-top: 25px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

#media-carousel .carousel-inner .carousel-item .carousel-video-wrapper iframe,
#media-carousel .carousel-inner .carousel-item .carousel-video-wrapper video {
    border: none;
	height: 100%;
	left: 0;
    position: absolute;
	top: 0;
	width: 100%;
}

#media-carousel .carousel-inner .carousel-item .carousel-video-wrapper .video-controls {
    display: none;
    flex-wrap: wrap;
    left: 50%;;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    width: 120px;
}

#media-carousel .carousel-inner .carousel-item .carousel-video-wrapper .video-control {
    background-color: #FFFFFF;
    border: solid 1px #8ebd0b;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    color: #8ebd0b;
    cursor: pointer;
    font-size: 1.5rem;
    height: 50px;
    line-height: 48px;
    margin: 5px;
    padding: 0;
    position: relative;
    text-transform: uppercase;
    -webkit-transition-property: background-color,color;
    transition-property: background-color,color;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    width: 50px;
}

#media-carousel .carousel-inner .carousel-item .carousel-video-wrapper .video-control svg {
    height: 18px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
}

#media-carousel .carousel-inner .carousel-item .carousel-video-wrapper .video-controls.playing .video-control[data-action=play],
#media-carousel .carousel-inner .carousel-item .carousel-video-wrapper .video-controls.paused .video-control[data-action=pause],
#media-carousel .carousel-inner .carousel-item .carousel-video-wrapper .video-controls.soundon .video-control[data-action=soundon],
#media-carousel .carousel-inner .carousel-item .carousel-video-wrapper .video-controls.soundoff .video-control[data-action=soundoff] {
    display: none;
}

#media-carousel .carousel-inner .carousel-item .carousel-video-wrapper .video-control:hover {
    background-color: #8ebd0b;
    color: #FFFFFF;
}

#media-carousel .carousel-inner .carousel-item .carousel-video-wrapper:hover .video-controls {
    display: flex;
}

#media-carousel .carousel-indicators {
    bottom: 0;
    display: none;
    flex-wrap: wrap;
    left: 0;
    margin: 3% 0 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

#media-carousel .carousel-indicators.four,
#media-carousel .carousel-indicators.five,
#media-carousel .carousel-indicators.six,
#media-carousel .carousel-indicators.seven,
#media-carousel .carousel-indicators.eight {
    justify-content: space-between;
}

#media-carousel .carousel-indicators li {
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border: solid #eee 1px;
    border-radius: 0;
    box-sizing: border-box;
    float: left;
    height: 0 !important;
    margin: 0 2% 1% 0;
    padding-top: 24%;
    text-indent: 0;
    transition: border-color .15s linear;
    width: 24%;
}

#media-carousel .carousel-indicators.four li {
    margin: 0;
    padding-top: 24%;
    width: 24%;
}

#media-carousel .carousel-indicators.five li {
    margin: 0;
    padding-top: 19%;
    width: 19%;
}

#media-carousel .carousel-indicators.six li {
    margin: 0;
    padding-top: 15%;
    width: 15%;
}

#media-carousel .carousel-indicators.seven li {
    margin: 0;
    padding-top: 13%;
    width: 13%;
}

#media-carousel .carousel-indicators.eight li {
    margin: 0;
    padding-top: 11%;
    width: 11%;
}

#media-carousel .carousel-indicators.more li {
    margin: 0 2% 1% 0;
    padding-top: 15%;
    width: 15%;
}

#media-carousel .carousel-indicators.more li:nth-child(6n) {
    margin: 0 0 1% 0;
}

#media-carousel .carousel-indicators li:hover,
#media-carousel .carousel-indicators li:focus {
    border-color: #0098ca;
}

#media-carousel .carousel-indicators li.active,
#media-carousel .carousel-indicators li.active:hover,
#media-carousel .carousel-indicators li.active:focus {
    border-color: #0098CA;
}

#media-carousel .carousel-indicators li.thumb-360,
#media-carousel .carousel-indicators li.video {
    position: relative;
}

#media-carousel .carousel-indicators li.thumb-360:after,
#media-carousel .carousel-indicators li.video:after {
    bottom: auto;
    color: #fff;
    content: "\f04b";
    display: block;
    font-family: "Font Awesome 5 Free";
    font-size: 45px;
    font-weight: 900;
    height: 50px;
    left: 50%;
    line-height: 50px;
    position: absolute;
    text-shadow: 0px 0px 5px rgba(150,150,150,1);
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: auto;
}

body.node-type-product .nav-banner {
    background-color: #F2F2F2;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

body.node-type-product .nav-tabs {
    border: none;
    display: block;
    display: -webkit-box;
    display: -moz-box;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
}

body.node-type-product .nav-tabs > li {
    float: none;
    margin-bottom: 0;
}

body.node-type-product .nav-tabs > li > a {
    border: none;
    border-radius: 0;
    color: #212529;
    display: inline-block;
    letter-spacing: .5px;
    line-height: 30px;
    margin-right: 0;
    padding: 15px 25px;
    position: relative;
    text-transform: uppercase;
    vertical-align: middle;
}

body.node-type-product .nav-tabs > li > a::after {
    background-color: transparent;
    bottom: 0;
    content: " ";
    display: block;
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    transition: background-color .2s ease-in;
    width: 100%;
}

body.node-type-product .nav-tabs > li > a.active,
body.node-type-product .nav-tabs > li > a.active:focus,
body.node-type-product .nav-tabs > li > a.active:hover {
    background-color: transparent;
    border: none;
    color: #212529;
    text-decoration: none !important;
}

body.node-type-product .nav-tabs > li > a:hover::after {
    background-color: #0098CA;
}

body.node-type-product .nav-tabs > li > a.active::after {
    background-color: #8EBD0B;
}

body.node-type-product .tab-pane .tab-title {
    background-color: #F2F2F2;
    font-weight: 400;
    margin-bottom: 1rem;
    padding: .5rem .75rem;
    text-transform: uppercase;
}

.how-to-wrapper {}

.how-to-wrapper .how-to-step {
    margin-bottom: 2rem;
}

.how-to-wrapper .how-to-step .row:first-of-type {
    margin-bottom: 1rem;
}

.how-to-wrapper .how-to-step .how-to-number {
    display: inline-block;
    font-weight: 600;
    margin-right: 0.5rem;
}

.how-to-wrapper .how-to-step .how-to-title {
    display: inline-block;
}

.how-to-wrapper .how-to-step .how-to-illustration {
    margin-bottom: 1rem;
    overflow: hidden;
}

.how-to-wrapper .how-to-step .how-to-illustration > img {
    height: auto;
    max-width: 100%;
}

.how-to-wrapper .how-to-step .how-to-video {
    height: 0;
    margin-bottom: 1rem;
    overflow: hidden;
    padding-top: 56.25%;
    position: relative;
}

.how-to-wrapper .how-to-step .how-to-video > iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.how-to-wrapper .how-to-step .how-to-text {
    color: #8F8F8F;
}

.how-to-wrapper .how-to-step .how-to-text p {
    line-height: 25px;
}

.how-to-wrapper .how-to-step .how-to-text ul {
    list-style: none;
    padding: 0;
}

.how-to-wrapper .how-to-step .how-to-text ul > li {
    font-weight: 300;
    line-height: 25px;
}

.how-to-wrapper .how-to-step .how-to-text ul > li::before {
    content: "\00BB";
    display: inline-block;
    font-size: 20px;
    height: 25px;
    line-height: 25px;
    padding: 0 5px 0 0;
}

.how-to-table {
    border: 2px solid #0098CA;
    margin-bottom: 1rem;
    text-align: center;
}

.how-to-table .how-to-table-row {
    /* align-items: center; */
    border-bottom: 1px solid #0098CA;
    display: flex;
}

.how-to-table .how-to-table-row:last-of-type {
    border-bottom: none;
}

.how-to-table .how-to-table-column {
    align-items: center;
    border-right: 1px solid #0098CA;
    display: flex;
    flex-wrap: wrap;
    width: 33.3333%;
}

.how-to-table .how-to-table-column:last-of-type {
    border-right: none;
}

.how-to-table .how-to-table-cell {
    border-bottom: 1px solid #0098CA;
    display: block;
    padding: 0.5rem 0;
    width: 100%;
}

.how-to-table .how-to-table-cell:last-of-type {
    border-bottom: none;
}

.how-to-table .how-to-table-cell-horizontal {
    border-right: 1px solid #0098CA;
    display: block;
    flex-grow: 1;
    padding: .5rem .1rem;
}

.how-to-table .how-to-table-cell-horizontal:last-of-type {
    border-right: none;
}

.how-to-table label {
    color: #0098CA;
    margin-bottom: 0;
}

.how-to-table p {
    color: #8F8F8F;
    margin-bottom: 0;
}

.download-wrapper {
    background-color: #F2F2F2;
    padding: 2rem 5rem;
    text-align: center;
}

.download-wrapper .download-title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.download-wrapper .download-text {
    color: #8F8F8F;
    margin-bottom: 2rem;
}

.download-wrapper .download-text > p:last-of-type {
    margin-bottom: 0;
}

.download-wrapper a:hover {
    background-color: transparent;
}

#product-tabs-content #video iframe {
    border: none;
}

#product-tabs-content #video p {
    font-weight: 500;
    margin-bottom: 3px;
}

/*** Page - About eneloop ***/
.about-slide .col-sm-8 {
    display: none;
}

.pane-content .field-items .container .row.about-slide {
    background: #0098CA;
    color: white;
}

.row.about-slide .slid-content {
    bottom: 0;
    padding: 15px 25px 15px 15px;
    right: 0;
    width: auto;
}

.row.about-slide .slid-content h1.title {
    font-size: 18px;
}

.row.about-slide .slid-content p.descriptions {
    font-size: 12px;
}

.economic-benefits-banner {
    background-image: url(../images/background/economic-benifits-sm.jpg);
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.environmentally-friendly-banner {
    background-image: url(../images/background/childrev_0.jpg);
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.ready-to-use-banner {
    background-image: url(../images/background/sunlight_1.jpg);
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.high-power-banner {
    background-image: url(../images/background/power.jpeg);
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.low-temperatures-banner {
    background-image: url(../images/background/low-temperature.jpeg);
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-why-eneloop .sustainable-lifestyle-banner, .about-why-eneloop .economic-benefits-banner,
 .about-why-eneloop .environmentally-friendly-banner, .about-why-eneloop .ready-to-use-banner,
  .about-why-eneloop .high-power-banner, .about-why-eneloop .low-temperatures-banner {
    color: #fff;
    padding-bottom: 142px;
    padding-top: 142px;
    position: relative;
    text-align: center;
}

.about-why-eneloop .sustainable-lifestyle-banner .overlay, .about-why-eneloop .economic-benefits-banner .overlay,
 .about-why-eneloop .environmentally-friendly-banner .overlay, .about-why-eneloop .ready-to-use-banner .overlay,
  .about-why-eneloop .high-power-banner .overlay, .about-why-eneloop .low-temperatures-banner .overlay {
    background: #000;
    height: 100%;
    opacity: .2;
    filter: alpha(opacity=20);
    width: 100%;
    top: 0;
    position: absolute;
}

.about-why-eneloop .title-box {
    border-color: rgba(255,255,255,.3);
    border-style: solid;
    border-width: 0;
    border-bottom-width: 1px;
    margin-bottom: 40px;
    position: relative;
    zoom: 1;
}

.about-why-eneloop .title-box:before {
    background: #fff;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 50%;
    margin-left: -20px;
    margin: 0 0 -1px;
    position: absolute;
    width: 40px;
}

.about-why-eneloop .title-box h1 {
    font-size: 18px;
}

.about-why-eneloop .sustainable-lifestyle-banner p, .about-why-eneloop .economic-benefits-banner p,
 .about-why-eneloop .environmentally-friendly-banner p, .about-why-eneloop .ready-to-use-banner p,
  .about-why-eneloop .high-power-banner p, .about-why-eneloop .low-temperatures-banner p {
    font-size: 14px;
}

/*** Page - design & technology ***/
.graphic-design-block {
    background-color: #fbfafa;
    padding: 30px;
}

.graphic-design-block h2, .eneloop-technology-block h2 {
    font-size: 22px;
    font-weight: bold;
}

.eneloop-technology-block h4 {
    font-size: 18px;
    font-weight: normal;
}

.graphic-design-block p, .graphic-design-block ol li, .eneloop-technology-block p, .eneloop-technology-block ol li, .eneloop-technology-block ul li {
    font-size: 14px;
    font-weight: 300;
}

.graphic-design-block .label-highlight {
    display: inline-block;
    font-size: 14px;
}

.graphic-design-block .label-primary {
    background-color: #0098CA;
    border-radius: .25em;
    color: #fff;
    display: inline;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    padding: .3em;
    text-align: center;
    vertical-align: baseline;
    white-space: nowrap;
}

.description.designer-desc {
    color: #7f7f7f;
    display: inline-block;
    font-size: 12px;
    font-style: italic;
    line-height: 18px;
    margin-bottom: 22px;
    max-width: 100%;
}

img.eneloop_aaa {
    width: 100%;
}

/*** Page - sustainable lifestyle ***/
.sustainable-lifestyle h2 {
    font-size: 22px;
    font-weight: bold;
}

.sustainable-lifestyle p, .sustainable-lifestyle ol li {
    font-size: 14px;
    font-weight: 300;
}

/*** Page - contact ***/
.webform-client-form.webform-client-form-161 div:first-of-type {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.webform-client-form.webform-client-form-161 .webform-component {
    display: block;
    flex-wrap: unset;
    margin: 0;
    margin-bottom: 10px;
    margin-top: 5px;
}

.panasonic-contact-form input[type='text'], .panasonic-contact-form input[type='email'],
 .panasonic-contact-form select, .panasonic-contact-form textarea {
    border: 1px solid #0098CA;
    color: #000;
    display: block;
    margin-top: 0;
    width: 100%;
}

.panasonic-contact-form input::-webkit-input-placeholder, .panasonic-contact-form input::-moz-placeholder,
 .panasonic-contact-form input:-ms-input-placeholder, .panasonic-contact-form input:-moz-placeholder,
  .panasonic-contact-form textarea::-webkit-input-placeholder, .panasonic-contact-form textarea::-moz-placeholder,
   .panasonic-contact-form textarea:-ms-input-placeholder, .panasonic-contact-form textarea:-moz-placeholder {
    color: #000;
}

.panasonic-contact-form select {
    background: transparent;
    border-radius: 0 !important;
    color: #000;
    height: 28px;
    line-height: 28px;
    -webkit-appearance: none;
}

.panasonic-contact-form .panasonic-contact-countries:after {
    box-sizing: border-box;
    content: "\f078";
    color: #0098CA;
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    height: 100%;
    padding: 12px 8px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    text-align: center;
    top: -4px;
    width: 10%;
    z-index: 1;
    font-weight: 900;
}

.panasonic-contact-data input[type="checkbox"] {
    position: absolute;
    height: 100%;
    left: 0;
    margin: 0;
    opacity: 0;
    top: 0;
    width: 100%;
}

.panasonic-contact-data input[type="checkbox"] ~ label {
    color: #000;
    display: inline-block;
    line-height: 25px;
    margin: 0;
    padding-left: 25px;
    position: relative;
}

.panasonic-contact-data input[type="checkbox"] ~ label::before {
    color: #0098CA;
    content: '\f0c8';
    font-family: "Font Awesome 5 Free";
    font-size: 20px;
    font-weight: 900;
    height: 25px;
    left: 0;
    line-height: 27.5px;
    position: absolute;
}

.panasonic-contact-data input[type="checkbox"]:checked ~ label::before {
    color: #0098CA;
    content: '\f14a';
}

.panasonic-contact-form .panasonic-contact-fname, .panasonic-contact-form .panasonic-contact-countries {
    padding-right: 15px;
}

.panasonic-contact-data .form-checkboxes, .panasonic-contact-data .description, #edit-submitted-i-agree {
    display: inline-block;
}

.panasonic-contact-data .description {
    z-index: 999;
    position: relative;
}

.panasonic-contact-form input[type="submit"] {
    background-color: #0098CA;
    border: solid 1px #0098CA;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    color: #fff;
    padding: 10px 50px;
    -webkit-transition-property: background-color,color;
    transition-property: background-color,color;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.panasonic-contact-form input[type="submit"]:hover {
    background-color: #fff;
    color: #0098CA;
}

.webform-client-form .form-actions {
    display: block;
    float: none;
    width: 100%;
}

/*** Page - Where to buy eneloop batteries ***/
.dealers {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    width: 100%;
}

.dealer {
    margin-bottom: 7.5px;
}

.dealer-country .title-box {
    border-bottom-width: 1px;
    border-bottom-color: #e1e1e1;
    border-bottom-style: solid;
    display: block;
    margin-bottom: 40px;
    position: relative;
    width: 100%;
}

.dealer-country .title-box:before {
    background: #1e1e1e;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    margin: 0 0 -1px;
    position: absolute;
    width: 40px;
}

.dealer-country .title-box .title {
    color: #7f7f7f;
    font-size: 18px;
    font-weight: normal;
    margin: 0 0 12px 0;
    padding: 14px 0 0;
}

.dealer-country .card, .manuals .card {
    border-radius: 0.1rem;
    border: 1px solid #0098CA;
    margin: 0 !important;
    margin-bottom: 20px !important;
    text-align: center;
}

.dealer-country .card .caption {
    color: #7f7f7f;
    display: inline-block;
    font-size: 12px;
    font-style: italic;
    line-height: 18px;
    min-height: 90px;
    max-width: 100%;
}

.dealer-country .card address {
    min-height: 95px;
}

.dealer-country .card .caption img, .manuals .card .caption img {
    display: block;
    margin: 0 auto 10px;
    width: 100%;
}

.manuals .card .caption .description {
    color: #7f7f7f;
    display: inline-block;
    font-size: 12px;
    font-style: italic;
}

.dealer-country .card a {
    font-size: 15px;
    margin: 0;
    white-space: initial;
}

.manuals .card a {
    display: block;
    width: 100%;
    white-space: initial;
    font-size: 13px;
    padding: 0.5rem;
}

.manuals .card a .fa-file-pdf {
    margin-right: 5px;
    font-size: 10px;
}

.dealer-country .card address {
    font-size: 13px;
    margin-bottom: 0;
}

/*** Page - Takumi ***/
#takumi {
    margin-top: -1rem;
}

.takumi-bg__grey {
    background-color: #F2F2F2;
    padding: 2rem 0;
}

.takumi-bg__image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
}

.takumi-bg__image-curved {
    height: auto;
    padding: 100px 0;
    position: relative;
}

.takumi-bg__image-curved::before {
    background-color: #FFFFFF;
    border-bottom-left-radius: 100%;
    border-bottom-right-radius: 100%;
    content: '';
    display: block;
    height: 75px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}

.takumi-bg__image-curved::after {
    background-color: #FFFFFF;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
    bottom: 0;
    content: '';
    display: block;
    height: 75px;
    position: absolute;
    width: 100%;
    z-index: 2;
}

.takumi-card {
    background-color: #FFFFFF;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
    margin: -5rem 0 5rem;
    padding: 1.5rem;
    text-align: center;
}

.takumi-card > img {
    margin-bottom: 3rem;
    margin-top: 2rem;
    max-width: 75%;
}

.takumi-card > span {
    display: block;
}

.takumi-card-name {
    font-size: 1.2rem;
    font-weight: 300;
}

.takumi-card-function {
    font-size: 0.8rem;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 1rem;
}

.takumi-card-title {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.takumi-card-quote {
    line-height: 1.75rem;
    margin-bottom: 2rem;
}

.takumi-video {
    height: 0;
    margin-bottom: 3rem;
    padding-top: 56.25%;
    position: relative;
}

.takumi-video > iframe {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}

.takumi-text-box {
    background-color: #FFFFFF;
    margin-top: 2rem;
    padding: 1.5rem;
}

.takumi-text-box > span {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.takumi-text-box > h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.takumi-text-box > p {
    font-size: 0.95rem;
    margin: 0;
}

.takumi-text-box__big {
    background-color: #F2F2F2;
    margin-bottom: 2rem;
    margin-top: 2rem;
    padding: 1.5rem;
}

.takumi-text-box__big > p {
    font-size: 1rem;
    line-height: 1.75rem;
}

.takumi-design-awards-intro {
    margin-bottom: 4rem;
}

.takumi-design-awards-intro > h3 {
    color: #0098CA;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.takumi-design-awards-timeline {
    margin: 0 auto;
    width: 80%;
}

.takumi-design-awards-tab-head {
    margin-bottom: 3rem;
    text-align: center;
}

.takumi-design-awards-tab-head__title {
    margin-bottom: 1.3rem;
}

.takumi-design-awards-tab-head__title > img {
    width: 75px;
}

.takumi-design-awards-tab-head__title > span {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 0.5rem;
}

.takumi-design-awards-tab-head__sub {
    font-size: 1.2rem;
    font-weight: 300;
}

.takumi-design-awards-tab-content img {
    display: block;
}

.takumi-design-awards-tab-content__note {
    color: #999999;
    display: inline-block;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 0.25rem;
    margin-top: 0.25rem;
}

.takumi-design-awards-tab-content__img > img {
    height: auto;
    max-width: 100%;
    width: auto;
}

#takumi-design-awards-timeline-tab {
    margin-bottom: 3rem !important;
    margin-top: 3rem;
}

#takumi-design-awards-timeline-tab .nav-item {
    width: 100%;
}

#takumi-design-awards-timeline-tab .nav-link {
    padding-bottom: 25px;
    padding-left: 5px;
    padding-right: 5px;
    position: relative;
    text-align: center;
}

#takumi-design-awards-timeline-tab .nav-link::before {
    background-color: #F2F2F2;
    bottom: 5px;
    content: '';
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
}

#takumi-design-awards-timeline-tab .nav-link::after {
    background-color: #D2D2D2;
    border-radius: 100%;
    bottom: 1px;
    content: '';
    display: block;
    height: 10px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 10px;
}

#takumi-design-awards-timeline-tab .nav-link > img {
    margin-right: 1rem;
    width: 30px;
}

#takumi-design-awards-timeline-tab .nav-link > span {
    color: #D2D2D2;
    font-size: 0.75rem;
}

#takumi-design-awards-timeline-tab .nav-link.active {
    background-color: transparent;
}

#takumi-design-awards-timeline-tab .nav-link.active::after {
    background-color: #0098CA;
}

#takumi-design-awards-timeline-tab .nav-link.active > span {
    color: #000000;
    font-weight: 600;
}

.takumi-design-awards-other {
    margin-top: 5rem;
}

.takumi-design-awards-other h3 {
    color: #0098CA;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.takumi-design-awards-other-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.takumi-design-awards-other-list-item {
    align-items: center;
    border: 1px solid #F2F2F2;
    box-sizing: border-box;
    display: flex;
    margin-bottom: 1%;
    padding: 2rem;
    width: 100%;
}

.takumi-design-awards-other-list-item-img {
    height: 80px;
    line-height: 80px;
    margin-right: 20px;
    overflow: hidden;
    text-align: center;
    width: 80px;
}

.takumi-design-awards-other-list-item-img > img {
    height: auto;
    max-height: 100%;
    max-width: 100%;
    width: auto;
}

.takumi-design-awards-other-list-item-info span {
    display: block;
    line-height: 30px;
}

.takumi-design-awards-other-list-item-info span:first-of-type {
    font-weight: 600;
    margin-top: 10px;
}

.takumi-design-awards-other-list-item-info span:last-of-type {
    font-weight: 300;
    margin-bottom: 10px;
}

.takumi-master-craftman img {
    width: 60px;
    display: inline-block;
}

.takumi-master-craftman .takumi-img-mc {
    display: inline-block;
    transform: translateY(16px);
    margin-left: 10px;
}

.takumi-master-craftman .takumi-img-mc span {
    display: block;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 300;
}

.takumi-family-block h3 {
    color: #0098ca;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

@media (min-width: 992px) {
    .takumi-bg__image-curved {
        height: 550px;
    }

    .takumi-text-box__big {
        padding: 4rem;
    }

    .takumi-card > img {
        max-width: 25%;
    }

    #takumi-design-awards-timeline-tab .nav-item {
        width: 25%;
    }

    .takumi-design-awards-tab-head__title > img {
        margin-right: 1rem;
    }
    
    .takumi-design-awards-tab-head__title > span {
        display: inline;
        margin-top: 0;
    }

    .takumi-design-awards-other-list-item {
        padding: 2rem 4rem;
        width: 49%;
    }

    .takumi-design-awards-other-list-item:nth-child(odd) {
        margin-right: 0.5%;
    }
    
    .takumi-design-awards-other-list-item:nth-child(even) {
        margin-left: 0.5%;
    }
}

/***  Page - Unsupported browser ***/
.page-node-783 .node-title {
    display: none !important;
}

.unsupported-browser .unsupported-title {
    color: #333;
    font-size: 2.2rem;
    font-weight: 300;
    margin: 20px 0;
    text-align: center;
}

.unsupported-browser p, .unsupported-browser ul {
    text-align: center;
}

.unsupported-browser ul li {
    display: inline-block;
    font-size: 40px;
    margin: 0 10px;
}

/*** Page - Limited Edition Timeline ***/
#limited-edition-timeline {
    margin-top: -1rem;
}

#limited-edition-timeline .row {
    margin-bottom: 4rem;
    margin-top: 4rem;
}

#limited-edition-timeline .row p {
    font-weight: 300;
}

#limited-edition-timeline .row h2 {
    margin-bottom: 1rem;
}

.limited-edition-timeline-bg__grey {
    background-color: #F2F2F2;
    padding: 2.5rem 0;
}

.limited-edition-timeline-bg__grey p:last-of-type {
    margin: 0;
}

.limited-edition-timeline-img {
    text-align: center;
}

.limited-edition-timeline-img > img {
    height: auto;
    max-width: 100%;
    width: auto;
}

.limited-edition-timeline-bg__blue {
    background-color: #0098CA;
    color: #FFFFFF;
    padding: 2rem 0;
}

.limited-edition-timeline-bg__blue span {
    display: block;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.limited-edition-timeline-bg__blue h3 {
    margin-bottom: 1.5rem;
}

.limited-edition-timeline-bg__blue p {
    font-weight: 300;
    margin: 0;
}

.limited-edition-timeline-bg__curved {
    padding: 150px 0;
    position: relative;
}

.limited-edition-timeline-bg__curved::before {
    background-color: #FFFFFF;
    border-bottom-left-radius: 100%;
    border-bottom-right-radius: 100%;
    content: '';
    display: block;
    height: 75px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}

.limited-edition-timeline-bg__curved::after {
    background-color: #FFFFFF;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
    bottom: 0;
    content: '';
    display: block;
    height: 75px;
    position: absolute;
    width: 100%;
    z-index: 2;
}

.limited-edition-timeline-design-awards {
    margin-top: 5rem;
}

.limited-edition-timeline-design-awards-intro span {
    display: block;
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.limited-edition-timeline-design-awards-intro h3 {
    color: #0098CA;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
}

.limited-edition-timeline-design-awards-intro p {
    margin-bottom: 3rem;
}

.limited-edition-timeline-design-awards-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.limited-edition-timeline-design-awards-list-item {
    align-items: center;
    border: 1px solid #F2F2F2;
    box-sizing: border-box;
    display: flex;
    margin-bottom: 1%;
    padding: 2rem;
    width: 100%;
}

.limited-edition-timeline-design-awards-list-item-img {
    height: 80px;
    line-height: 80px;
    margin-right: 20px;
    overflow: hidden;
    text-align: center;
    width: 80px;
}

.limited-edition-timeline-design-awards-list-item-img > img {
    height: auto;
    max-height: 100%;
    max-width: 100%;
    width: auto;
}

.limited-edition-timeline-design-awards-list-item-info span {
    display: block;
    line-height: 30px;
}

.limited-edition-timeline-design-awards-list-item-info span:first-of-type {
    font-weight: 600;
    margin-top: 10px;
}

.limited-edition-timeline-design-awards-list-item-info span:last-of-type {
    font-weight: 300;
    margin-bottom: 10px;
}

@media (min-width: 992px) {
    .limited-edition-timeline-design-awards-list-item {
        padding: 2rem 4rem;
        width: 49%;
    }

    .limited-edition-timeline-design-awards-list-item:nth-child(odd) {
        margin-right: 0.5%;
    }
    
    .limited-edition-timeline-design-awards-list-item:nth-child(even) {
        margin-left: 0.5%;
    }
}

#wtb-application h2, .wtb-form-selection h2, #wtb-application-online h2 {
    color: #0098CA;
    font-size: 1.5rem;
    text-transform: uppercase;
}

#wtb-application .shop-wrapper, #wtb-application-online .shop-wrapper {
    border: 1px solid #0098CA;
    margin-bottom: 15px;
    margin-left: 0;
    margin-right: 0;
    padding: 15px 0;
    position: relative;
}

#wtb-application .shop-close-btn, #wtb-application-online .shop-close-btn {
    background-color: #0098CA;
    border: 1px solid #0098CA;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 1.5rem;
    height: 30px;
    line-height: 26px;
    position: absolute;
    right: -1px;
    text-align: center;
    top: -1px;
    width: 30px;
    z-index: 2;
}

#wtb-application .shop-close-btn:hover, #wtb-application-online .shop-close-btn:hover {
    background-color: #FFFFFF;
    color: #0098CA;
}

.wtb-space {
    height: 15px;
    clear: both;
}

.wtb-field {
    display: inline-block;
    width: 100%;
}

.wtb-field-half {
    float: left;
    width: 49%;
}

.wtb-field-half.odd {
    margin-right: 1%;
}

.wtb-field-half.even {
    margin-left: 1%;
}

.wtb-field * {
    box-sizing: border-box;
}

.wtb-field > label {
    color: #8F8F8F;
    display: inline-block;
    font-size: .9rem;
    font-weight: normal;
    width: 100%;
}

.wtb-field > img {
    margin-bottom: 0.5rem;
    max-width: 50%;
}

.wtb-field-required > label::after {
    color: #0098CA;
    content: '*';
    font-weight: bold;
    margin-left: 2px;
}

.wtb-field-radio > label,
.wtb-field-checkbox > label {
    color: #212529;
    cursor: pointer;
    font-size: 1rem;
}

.wtb-field > span {
    color: #212529;
    display: inline-block;
    font-size: .75rem;
    font-weight: 300;
    line-height: 1rem;
    font-style: italic;
}

.wtb-field.wtb-field-file > span {
    width: 100%;
}

.wtb-field input[type=text],
.wtb-field input[type=url],
.wtb-field select {
    border: 1px solid #0098CA;
    line-height: 33px;
    margin-bottom: .5rem;
    padding: 0 10px;
    width: 100%;
}

.wtb-field select {
    background: 0 0;
    border-radius: 0 !important;
    color: #dbdbdb;
    height: 33px;
    -webkit-appearance: none;
}

.wtb-field input[type=file],
.wtb-field input[type=image] {
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    width: 0.1px;
    z-index: -1;
}

.wtb-field label.wtb-file-btn > span {
    margin-left: .5rem;
}

.wtb-field input[type=file] + label.wtb-file-btn,
.wtb-field input[type=url] + label.wtb-file-btn {
    color: #FFFFFF;
    background-color: #0098CA;
    border: 1px solid #0098CA;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    font-weight: 300;
    line-height: 33px;
    margin: .75rem 0;
    padding: 0 10px;
    text-align: center;
    text-transform: uppercase;
    width: auto;
}

.wtb-field input[type=file]:focus + label.wtb-file-btn,
.wtb-field input[type=file] + label.wtb-file-btn:hover,
.wtb-field input[type=url]:focus + label.wtb-file-btn,
.wtb-field input[type=url] + label.wtb-file-btn:hover  {
    background-color: #FFFFFF;
    color: #0098CA;
}

.form-link {
    color: #fff !important;
    margin: 10px 0;
    width: 100%;
}

.form-link:hover {
    color: #0098ca !important;
}

.wtb-application-online-fields, .wtb-application-fields, .wtb-application-retail-fields {
    display: none !important;
}

.wtb-active-form {
    display: block !important;
}

/*** Products - Overview ***/
.product {
    margin-bottom: 1rem;
    text-align: center;
}

.rotation .default {
    min-height: 343px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.rotation .default, .rotation .front-end {
    overflow: hidden;
    position: relative;
    -webkit-transform: rotateX(0deg) rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-transform: rotateX(0deg) rotateY(0deg);
    -moz-transform-style: preserve-3d;
    -moz-backface-visibility: hidden;
    transform: rotateY(0deg);
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    z-index: 24;
}

.product .product-image {
    display: block;
    float: none;
    height: 0;
    line-height: 0;
    margin: 0;
    overflow: hidden;
    padding: 100% 0 0;
    position: relative;
}

.product .product-image img {
    height: auto;
    left: 50%;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}

.product .product-description {
    background: transparent;
    border-top: 1px solid #0098CA;
    bottom: 0;
    color: #0098CA;
    display: table;
    font-size: 13px;
    height: 72px;
    line-height: 18px;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 1;
}

.product .product-description .vertical {
    display: table-cell;
    height: 72px;
    padding-left: 5px;
    padding-right: 5px;
    vertical-align: middle;
}

.product .product-name {
    color: #0098CA;
    font-size: 13px;
    line-height: 18px;
    margin: 0 0 4px;
}

.product .product-name a {
    color: #0098CA;
    text-decoration: none;
    -webkit-transition: opacity .2s linear;
    transition: opacity .2s linear;
}

.rotation .product-hover, .rotation .back-end {
    background: #0098CA;
    display: block !important;
    height: inherit;
    -webkit-transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-transform: rotateY(-180deg);
    -moz-transform-style: preserve-3d;
    -moz-backface-visibility: hidden;
    transform: rotateY(-180deg);
    -moz-transition: all .6s ease-in-out;
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    width: 100%;
    z-index: 13;
}

.product .product-hover {
    /* background: #1e1e1e; */
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    bottom: 0;
    color: #7f7f7f;
    display: none;
    font-size: 12px;
    line-height: 20px;
    left: 0;
    padding: 16px 20px 90px;
    position: absolute;
    right: 0;
    top: 0;
    width: auto !important;
}

.product .product-hover a {
    text-decoration: none;
    display: block;
}

.product .product-hover a, .product .product-hover h3 {
    color: #fff;
}

.product .product-hover h3 {
    font-size: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.product .product-hover ul {
    margin: 0;
    max-height: 200px;
    overflow: hidden;
    padding: 0;
}

.product .product-hover ul li {
    background-repeat: no-repeat;
    background-position: 0 5px;
    line-height: 20px;
    list-style: none;
    padding: 0 0 0 20px;
    position: relative;
    text-align: left;
}

.product .product-hover ul li:before {
    display: block;
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    left: 0;
    position: absolute;
    width: 20px;
}

.product .product-hover ul li > label {
    margin: 0 1px 0 0;
    font-weight: 300;
}

.product .product-hover ul li > span {
    font-weight: 300;
}

.product .product-hover a.btn {
    bottom: 10px;
    color: #0098CA;
    left: 20px;
    margin: 0;
    position: absolute;
    right: 20px;
}

.product .product-hover a.btn:hover {
    color: white;
}

.rotation:hover .default, .rotation:hover .front-end {
    z-index: 35;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transition-delay: .2s;
    -moz-transition-delay: .2s;
    transition-delay: .2s;
}

.rotation:hover .product-hover, .rotation:hover .back-end {
    z-index: 46;
    -webkit-transform: rotateX(0deg) rotateY(0deg);
    -moz-transform: rotateX(0deg) rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transition-delay: .2s;
    -moz-transition-delay: .2s;
    transition-delay: .2s;
}

/*** Families ***/
.pane-menu-menu-families ul.menu {
    display: flex;
    list-style: none;
    margin: 1.5rem 0 2rem 0;
    overflow-x: scroll;
    padding: 0;
}

.pane-menu-menu-families ul.menu > li.leaf {
    list-style: none;
    margin: 0 1rem 0 0;
    padding: 0;
}

.pane-menu-menu-families ul.menu > li.leaf > a {
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: .1rem;
    color: #000000;
    display: inline-block;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.5rem 1rem;
    text-align: center;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
    white-space: nowrap;
}

.pane-menu-menu-families ul.menu > li.leaf > a:active,
.pane-menu-menu-families ul.menu > li.leaf > a:focus,
.pane-menu-menu-families ul.menu > li.leaf > a:hover,
.pane-menu-menu-families ul.menu > li.leaf.active-trail > a {
    color: #0098CA;
}

.pane-menu-menu-families ul.menu > li.leaf.active-trail > a {
    border-color: #0098CA;
    font-weight: 400;
}

.specifications-wrapper .eneloop-pro-row p {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.specifications-wrapper .summary-row.eneloop-min-height {
    min-height: 230px;
}

.specifications-wrapper .summary-row p {
    font-size: 22px;
    font-weight: 600;
}

.specifications-wrapper .summary-row img {
    display: block;
    margin: auto;
    max-height: 250px;
    object-fit: contain;
    width: 75%;
}

.specifications-wrapper .a-plus-full-row {
    background-size: cover !important;
    margin: 20px 0 0;
}

.specifications-wrapper .a-plus-full-row .eneloop-a-plus-subtitle {
    color: white;
    display: block;
    font-size: 25px;
    line-height: 33px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.specifications-wrapper .a-plus-full-row .eneloop-a-plus-subtitle span {
    font-size: 30px;
}

.specifications-wrapper .a-plus-full-row .eneloop-a-plus-title {
    color: white;
    display: block;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 30px;
    text-transform: uppercase;
    width: 100%;
}

.specifications-wrapper .usable-for-row {
    background: #1a98cb;
    padding: 50px 0;
}

.specifications-wrapper .usable-for-row.eneloop-pro-clr {
    background: #1f2f3f;
}

.specifications-wrapper .usable-for-row .usable-for-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 25px;
}

.specifications-wrapper .usable-for-row ul {
    display: block;
    list-style-type: none;
    padding: 0;
    text-align: center;
    width: 100%;
}

.specifications-wrapper .usable-for-row ul li {
    color: white;
    padding: 0 40px;
}

.specifications-wrapper .usable-for-row ul li img {
    margin-bottom: 10px;
    width: 75px;
}

.specifications-wrapper .usable-for-row ul li p {
    font-weight: 500;
}

.specifications-wrapper .eneloop-usps .usps-title {
    display: block;
    font-weight: 600;
    font-size: 25px;
    margin-top: 30px;
    width: 100%;
}

.specifications-wrapper .eneloop-usps.eneloop-pro-usps .usps-title {
    margin-top: 40px;
}

.specifications-wrapper .eneloop-usps img {
    display: block;
    margin: auto;
    width: 50%;
}

.specifications-wrapper .eneloop-usps.eneloop-pro-usps img {
    width: 80%;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: 0;
}

.specifications-wrapper .eneloop-usps ul {
    display: block;
    list-style-type: none;
    padding: 0;
    text-align: center;
    width: 100%;
    margin-bottom: 35px;
}

.specifications-wrapper .eneloop-usps.eneloop-pro-usps ul {
    text-align: left;
}

.specifications-wrapper .eneloop-usps ul li {
    display: inline-block;
    padding: 0 25px;
}

.specifications-wrapper .eneloop-usps.eneloop-pro-usps ul li {
    padding: 0;
    display: block;
    margin-bottom: 7px;
    padding-left: 30px;
    position: relative;
}

.specifications-wrapper .eneloop-usps ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    font-weight: 900;
    color: #8ebd09;
    margin-right: 5px;
}

.specifications-wrapper .eneloop-usps.eneloop-pro-usps ul li:before {
    margin-right: 15px;
    position: absolute;
    left: 0;
}

.specifications-wrapper .benefits-row {
    background: #f2f2f2;
}

.specifications-wrapper .benefits-row .benefits-title {
    display: block;
    font-weight: 600;
    font-size: 25px;
    margin-top: 30px;
    width: 100%;
}

.specifications-wrapper .benefits-row .col-12 {
    text-align: center;
}

.specifications-wrapper .benefits-row .col-12 img {
    height: 110px;
}

.specifications-wrapper .benefits-row .col-12 p {
    margin-bottom: 40px;
}

.specifications-wrapper .benefits-row .col-12 p.benefits-subtitle {
    color: #000;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 20px;
    padding: 0;
}

.specifications-wrapper .eneloop-seo {
    margin-top: 35px;
}

.specifications-wrapper .eneloop-seo .seo h2 {
    font-size: 25px;
    font-weight: 500;
}

.specifications-wrapper .eneloop-seo .seo h3 {
    font-size: 23px;
    font-weight: 500;
}

.specifications-wrapper .eneloop-seo .seo h4 {
    font-size: 21px;
    font-weight: 500;
}

.specifications-wrapper .eneloop-seo ul {
    font-weight: 300;
}

a.btn.btn-primary.wtb-product-btn {
    position: fixed;
    bottom: 0;
    right: 0;
    border-top: 1px solid white;
    border-left: 1px solid white;
    min-width: 240px;
    z-index: 999999;
}

a.btn.btn-primary.wtb-product-btn:hover {
    border-top: 1px solid #0098ca;
    border-left: 1px solid #0098ca;
}

@media (max-width: 675px){
    a.btn.btn-primary.wtb-product-btn {
        background-color: #0098ca;
        border-top: 1px solid #fff;
        border-left: 0;
        bottom: 0;
        line-height: 50px;
        position: fixed;
        text-align: center;
        width: 100%;
    }

    a.btn.btn-primary.wtb-product-btn:hover {
        border-top: 1px solid #0098ca;
        border-left: 0px;
    }
}

/*** News ***/
#featured-image {
    height: 350px;
    margin-bottom: 1.5rem;
}

#featured-image .content > img {
    height: 350px;
    object-fit: cover;
    width: 100%;
}

#news-title {
    color: #0098CA;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 20px;
    position: relative;
}

#news-title::before {
    background-color: #0098CA;
    bottom: 1px;
    content: "";
    display: block;
    height: 4px;
    position: absolute;
    width: 40px;
}

#news-title::after {
    background-color: #0098CA;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    width: 100%;
}

.news-sidebar h3 {
    background-color: #0098CA;
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 25px;
    margin-bottom: 1rem;
    padding: 10px 15px;
}

.recent-news, .related-news {}

.recent-news .recent-news-items,
.related-news .related-news-items {
    padding: 0 15px;
}

.recent-news .recent-news-items .recent-item,
.related-news .related-news-items .related-item {
    list-style: none;
}

.recent-news .recent-news-items .recent-item > a,
.related-news .related-news-items .related-item > a {
    color: #000000;
    display: block;
    font-weight: 300;
    line-height: 20px;
    padding: 5px 0 5px 20px;
    position: relative;
    text-decoration: none;
}

.recent-news .recent-news-items .recent-item > a::before,
.related-news .related-news-items .related-item > a::before {
    content: '\f111';
    display: block;
    font-family: "Font Awesome 5 Free";
    font-size: 6px;
    font-weight: 900;
    height: 30px;
    left: 0;
    line-height: 30px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 15px;
}

.recent-news .recent-news-items .recent-item > a:active,
.recent-news .recent-news-items .recent-item > a:focus,
.recent-news .recent-news-items .recent-item > a:hover,
.related-news .related-news-items .related-item > a:active,
.related-news .related-news-items .related-item > a:focus,
.related-news .related-news-items .related-item > a:hover {
    color: #0098CA;
}

.recent-news .recent-news-items .recent-item > a:active::before,
.recent-news .recent-news-items .recent-item > a:focus::before,
.recent-news .recent-news-items .recent-item > a:hover::before,
.related-news .related-news-items .related-item > a:active::before,
.related-news .related-news-items .related-item > a:focus::before,
.related-news .related-news-items .related-item > a:hover::before {
    color: #0098CA;
    font-weight: 400;
}

a.our-types {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    color: #FFFFFF;
    display: block;
    font-size: 35px;
    height: 200px;
    line-height: 40px;
    margin-bottom: 15px;
    padding: 80px 20px;
    text-align: center;
    text-shadow: 2px 1px #000000;
    -webkit-transition: background-size .5s ease-in-out;
    transition: background-size .5s ease-in-out;
}

.node-type-article .pane-node-body img {
    height: auto !important;
    width: 100% !important;
}

/*** FAQ ***/
#faq-overview .views-exposed-widgets {
    display: block;
    justify-content: space-between;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

#faq-overview .views-exposed-widgets::after {
    display: none;
}

#faq-overview .views-exposed-widgets #edit-title-wrapper {
    padding: 0;
    width: 57%;
}

#faq-overview .views-exposed-widgets #edit-tid-wrapper {
    float: right;
    margin-bottom: 10px;
    padding: 0;
    width: 40%;
}

#faq-overview .views-exposed-widgets .views-submit-button {
    display: block;
    float: none;
    overflow: hidden;
    padding: .5em 0 0 0;
    position: relative;
    width: 100%;
}

#faq-overview .views-exposed-widgets input,
#faq-overview .views-exposed-widgets select {
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #DDDDDD;
    border-radius: 0.1rem;
    color: #8F8F8F;
    font-size: 0.9rem;
    line-height: 30px;
    margin: 0 !important;
    outline: none;
    padding: 5px 1rem;
    width: 100%;
}

#faq-overview .views-exposed-widgets .form-type-select {
    position: relative;
}

#faq-overview .views-exposed-widgets .form-type-select::after {
    color: #8F8F8F;
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    line-height: 42px;
    position: absolute;
    right: 1px;
    text-align: center;
    top: 0;
    width: 40px;
    z-index: 1;
}

#faq-overview .views-exposed-widgets select {
    padding-right: 40px;
    position: relative;
    z-index: 2;
}

#faq-overview .views-exposed-widgets input[type=submit] {
    background-color: #0098CA;
    border: 1px solid #0098CA;
    color: #FFFFFF;
    cursor: pointer;
    transition: all .15s ease-in-out;
}

#faq-overview .views-exposed-widgets input:active,
#faq-overview .views-exposed-widgets input:focus,
#faq-overview .views-exposed-widgets select:active,
#faq-overview .views-exposed-widgets select:focus {
    border-color: #0098CA;
}

#faq-overview .views-exposed-widgets input[type=submit]:active,
#faq-overview .views-exposed-widgets input[type=submit]:focus,
#faq-overview .views-exposed-widgets input[type=submit]:hover {
    background-color: #FFFFFF;
    color: #0098CA;
}

.faq-more {
    color: #0098CA;
    padding: 0;
}

.faq-more:active,
.faq-more:focus,
.faq-more:hover {
    color: #1260B9;
    text-decoration: none;
}

.faq-image-block img {
    width: 100% !important;
    height: auto !important;
}

.col-md-4.news-sidebar.faq-sidebar .panel-separator {
    display: none !important;
}

.col-md-4.news-sidebar.faq-sidebar .panels-flexible-region-inside {
    position: relative;
}

.col-md-4.news-sidebar.faq-sidebar .faq-image-text-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
}

.col-md-4.news-sidebar.faq-sidebar .faq-image-text-block .field-item {
    color: white;
    font-size: 30px;
    text-align: center;
    text-shadow: 2px 2px black;
}

.col-md-4.news-sidebar.faq-sidebar .faq-image-link-block {
    position: absolute;
    text-align: center;
    top: 77%;
    width: 100%;
}

.col-md-4.news-sidebar.faq-sidebar .faq-image-link-block .field-item a {
    background: #0098ca;
    color: white;
    padding: 10px 20px;
}

.pane-faq-satisfaction-faq-satisfaction h2.pane-title {
    display: none !important;
}

.rating-wrapper {
    border-top: 1px solid #333333;
    margin-bottom: 20px;
    padding-top: 15px;
}

.rating-wrapper .rating-title {
    color: #0098ca;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.rating-wrapper > .stars {
    display: flex;
}

.rating-wrapper > .stars > .star {
    cursor: pointer;
    font-size: 3rem;
    height: 35px;
    line-height: 35px;
    text-align: center;
    vertical-align: middle;
    width: 35px;
}

.rating-wrapper > .stars > .star > svg {
    color: #0098ca;
    width: 100%;
}

.rating-wrapper > .stars > .star.checked > svg {
    color: #F48034;
}

.rating-wrapper.idle > .stars:hover > .star.checked > svg {
    color: #0098ca;
}

.rating-wrapper .loader {
    bottom: 0;
    display: none;
    height: 35px;
    left: 70px;
    line-height: 35px;
    position: absolute;
    text-align: center;
    width: 35px;
}

.rating-wrapper .loader > svg {
    color: #0098ca;
}

.rating-wrapper .loader > span {
    display: inline-block;
    text-indent: -99999px;
}

.rating-wrapper .thanks {
    display: none;
    position: absolute;
    top: 100%;
}

.rating-wrapper .thanks > span {
    line-height: 35px;
}

.rating-wrapper.loading > .stars,
.rating-wrapper.ready > .stars {
    opacity: 0.1;
}

.rating-wrapper.loading > .stars > .star,
.rating-wrapper.ready > .stars > .star {
    cursor: not-allowed;
}

.rating-wrapper.loading .loader {
    display: inline-block;
}

.rating-wrapper.ready .thanks {
    display: inline-block;
}


/*** Popup cookie ***/
.logged-in #sliding-popup {
    display: none !important;
}

#sliding-popup.sliding-popup-top {
    /* left: 5px; */
    /* top: 5px !important; */
    /* width: 35% !important; */
}

#sliding-popup .popup-content {
    align-items: center;
    border: 1px solid #FFFFFF;
    display: flex;
    max-width: 100%;
    padding: 20px 10px;
    justify-content: space-around;
}

#sliding-popup .popup-content #popup-text {
    margin: 0;
}

#sliding-popup .popup-content #popup-text p {
    color: white;
    font-size: 14px;
    margin-bottom: 0px;
    text-align: left;
}

#sliding-popup .popup-content #popup-text a {
    color: white;
}

#sliding-popup .popup-content #popup-text a:hover {
    color: white;
    text-decoration: underline;
}

#sliding-popup .popup-content button.agree-button {
    background-color: transparent;
    border: solid 1px #fff;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    color: #fff;
    font-size: 15px;
    min-width: 200px;
    padding: 5px 10px;
    text-transform: uppercase;
    -webkit-transition-property: background-color,color;
    transition-property: background-color,color;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    width: 100%;
}

#sliding-popup .popup-content button.decline-button {
    display: none;
}

#sliding-popup .popup-content button.agree-button:hover {
    background-color: #fff;
    color: #0098CA !important;
}

#sliding-popup .popup-content .eu-cookie-compliance-more-button {
    font-size: 10px;
    display: block;
    margin: auto;
    margin-top: 5px;
}

.cookie-popup .image {
    background-image: url(/sites/all/themes/eneloop/assets/images/cookie.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 90px;

}

/*** Search ***/
.page-search-node .content h2 {
    margin-bottom: 20px;
}

.page-search-node .content form{
    display: none;
}

.page-search-node ol.search-results, .search-results .search-snippet-info {
    padding-left: 0;
}

.page-search-node ol.search-results li {
    margin-bottom: 20px;
}

/*** Responsive Styles ***/
@media (min-width: 768px) {
    #sliding-popup.sliding-popup-top {
        left: 5px;
        top: 5px !important;
        width: 35% !important;
    }

    .about-slide .col-sm-8 {
        display: block;
    }

    /*** Generic - Headings ***/
    .title-row h1,
    .node-title h1 {
        font-size: 2.2rem;
    }

    /*** Header ***/
    .topbar {
        display: block;
    }

    .navbar-eneloop {
        min-height: 140px;
    }

    .navbar-eneloop .navbar-header {
        width: auto;
    }

    .navbar-eneloop .navbar-brand > img {
        display: inline;
        height: 60px;
        max-height: 60px;
    }

    .navbar-eneloop #main-menu > li.expanded a {
        pointer-events: all;
    }

    /*** Footer ***/
    footer .actions {
        bottom: 40px;
        right: 50px;
    }

    footer .actions .btn.btn-edit {
        display: inline-block;
    }

    footer .footer-bottom {
        margin-bottom: 0px;
    }

    footer .footer-main h2 {
        margin-top: 0px;
    }

    footer .footer-main .footer-col .content {
        display: block;
    }

    footer .footer-main .footer-col:after, footer .footer-main .footer-col.footer-col-active:after {
        content: "";
        display: none
    }

    /*** Page - Home/Front ***/
    .homepage-block-item {
        margin-bottom: 20px;
        margin-top: -70px;
    }

    .homepage-block-item > .excerpt {
        height: 100px;
    }

    .homepage-block-item > .excerpt > p {
        height: 80px;
    }

    .homepage-block-item > .title > h3 {
        font-size: 0.8rem;
        line-height: 15px;
    }

    /*** Page - Home/Front - Competitors ***/
    .competitors {
        flex-wrap: nowrap;
    }

    .competitors .competitor {
        margin: 0;
        width: 25%;
    }

    /*** Page - Home/Front - Catalogue ***/
    #facebook-block {
        display: block;
    }

    /*** Page - Home/Front - Where To Buy ***/
    #where-to-buy-bar p,
    #productfinder-bar p {
        line-height: 50px;
        margin-bottom: 2rem;
    }

    #where-to-buy-bar a.btn, #productfinder-bar a.btn {
        margin-top: 2rem;
        width: auto;
    }

    /*** Page - Home/Front - News ***/
    #homepage-news {
        padding-bottom: 4rem;
    }

    #more-eneloop-news > a.btn {
        position: absolute;
    }

    /*** Page - Home/Front - Video ***/
    .homepage-video-wrapper {
        height: 400px;
    }

    /*** Product ***/
    #media-carousel .carousel-inner {
        border: 1px solid #F2F2F2;
        height: 350px;
        max-height: none;
    }

    #media-carousel .carousel-inner .carousel-item .wrapper-video {
        height: 350px;
        max-height: none;
    }

    #media-carousel .carousel-indicators {
        display: flex;
        justify-content: flex-start;
    }

    .specifications-wrapper .summary-row p {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .specifications-wrapper .a-plus-full-row {
        background-size: cover !important;
        background-position: bottom !important;
    }

    .specifications-wrapper .a-plus-full-row .eneloop-a-plus-subtitle {
        margin-bottom: 250px;
    }

    .specifications-wrapper .a-plus-full-row .eneloop-a-plus-title {
        margin-top: 250px;
    }

    .specifications-wrapper .usable-for-row ul li {
        display: inline-block;
    }

    .specifications-wrapper .benefits-row .col-12 p {
        padding: 0 100px;
    }

    .specifications-wrapper .eneloop-seo .seo {
        -webkit-column-count: 2; /* Chrome, Safari, Opera */
        -moz-column-count: 2; /* Firefox */
        column-count: 2;
        -webkit-column-gap: 40px; /* Chrome, Safari, Opera */
        -moz-column-gap: 40px; /* Firefox */
        column-gap: 40px;
    }

    /*** FAQ ***/
    #faq-overview .views-exposed-widgets {
        display: flex;
        justify-content: space-between;
        margin-bottom: 2rem;
        margin-top: 1rem;
    }

    #faq-overview .views-exposed-widgets #edit-tid-wrapper {
        padding: 0;
        width: 25%;
    }

    #faq-overview .views-exposed-widgets .views-submit-button {
        padding: 0;
        width: 13%;
    }

    /*** Page - design & technology ***/
    img.eneloop_aaa {
        width: auto;
    }

    /*** Page - Where to buy eneloop batteries ***/
    .dealers {
        -webkit-columns: 4;
        -moz-columns: 4;
        columns: 4;
    }

    .product .product-description {
        position: absolute;
    }
}

@media (min-width: 992px) {
    /*** Header ***/
    .eneloop-search-block {
        display: none !important;
    }
    
    .eneloop-search-block.search-block-active,
    .page-search .eneloop-search-block {
        display: flex !important;
    }

    .search-icon {
        display: block;
    }

    /*** Page - Home/Front ***/
    .homepage-block-item > .title > h3 {
        font-size: 1.1rem;
        line-height: 23px;
    }
}
