
/*
Theme Name: ToyBox
Theme URI: http://www.inthetoybox.co.uk
Author: Brand Exponents
Author URI: http://www.brandexponents.com/
Description:  Multi Layout Multi-Purpose Responsive Wordpress theme
Version: 4.0
License: GPL 2.0
License URI: license.txt
Tags: black, green, white, light, two-columns, three-columns, left-sidebar, right-sidebar, fixed-layout, responsive-layout, custom-header, custom-menu, featured-images, flexible-header, full-width-template, post-formats, sticky-post, theme-options, translation-ready
*/
/*=======================
=========================
=====  BASE STYLES  =====
=========================
=======================*/
* {
    vertical-align: baseline;
    font-weight: inherit;
    font-family: inherit;
    font-style: inherit;
    font-size: 100%;
    border: 0 none;
    outline: 0;
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

html {
    font-size: 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 3.6rem;
    font-weight: 700;
}

h2 {
    font-size: 3.6rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #4c8098;
    text-align: center;
}

h3 {
    font-size: 3.2rem;
    font-weight: 600;
    color: #444444;
    margin-top: 1em;
}

h4 {
    font-size: 1.8rem;
    font-weight: 600;
}

h5 {
    font-size: 2.4rem;
    font-weight: 400;
}

h6 {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.2em;
}



p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #444;
    letter-spacing: 0.02em;
}

a {
    color: #337ab7;
    text-decoration: underline;
    text-decoration-skip-ink: auto;
    cursor: pointer;
}

a:hover {
    color: #ff6e02;
}

a:active {
    color: #555;
}

input {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #aaaaaa;
    letter-spacing: 0.05em;
}

figure {
    width: 100%;
    overflow: hidden;
}

ul,
ol {
    list-style: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

ul li::before {
    content: "\2022";
    color: #ccc;
    font-weight: bold;
    display: inline-block;
    width: 1rem;
    margin-left: -1rem;
}

table {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #444;
    letter-spacing: 0.02em;
    max-width: 100%;
    width: 100%;
    margin: 30px 0;
}


@media (max-width: 600px) {
    table {
        font-size: 1.2rem;
    }
}

@media (max-width: 350px) {
    table {
        font-size: 1.0rem;
    }
}

textarea {
    max-width: 100%;
    border: 1px solid #ccc;
}

/*===========================
=============================
=====  UTILITY CLASSES  =====
=============================
===========================*/

.l-bg-light-gray {
    background-color: #fafafa;
}

.background-white {
    background-color: #ffffff;
}

.centered {
    text-align: center;
}

.l-full-width-container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.post-container {
    width: 1170px;
    margin: auto;
}

@media (max-width:1169px) {

    ul.mobile-visible,
    form.mobile-visible {
        display: block;
    }

    .featured-product.mobile-visible {
        display: block;
    }
}



/*===================
=====================
=====  BUTTONS  =====
=====================
===================*/

a.primary-button, .largebtn {
    background-image: linear-gradient(15deg, #ff6e02, #ff9c00);
    position: relative;
    z-index: 100;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 5px;
    cursor: pointer;
    color: white;
    display: inline-block;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.6rem 1rem;
    -webkit-box-shadow: 0px 5px 10px rgba(1, 1, 1, 0.1);
            box-shadow: 0px 5px 10px rgba(1, 1, 1, 0.1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a.primary-button:before, .largebtn:before {
    border-radius: inherit;
    background-image: linear-gradient(-15deg, #50cc7f, rgb(173, 189, 34));
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -100;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a.primary-button:hover, .largebtn:hover {
    -webkit-box-shadow: 0px 5px 10px rgba(1, 1, 1, 0.20);
            box-shadow: 0px 5px 10px rgba(1, 1, 1, 0.20);
    color: white;
}

a.primary-button:hover:before, .largebtn:hover:before {
    opacity: 1;
}

a.primary-button:active:before, .largebtn:active:before {
    opacity: 0;
}

a.primary-button:visited, .largebtn:visited {
    color: white;
}


.icon-arrow_right-up:before {
    content: "\00279C";
}

.be-button-wrap.align-block {
    margin: 40px 0;
}

/* GHOST BUTTON */

a.ghost-button {
    background: white;
    position: relative;
    z-index: 100;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 5px;
    cursor: pointer;
    color: #ff6e02;
    display: inline-block;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    padding: 14px 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 2px solid #ff6e02;
}

a.ghost-button:hover {
    color: #6fc65f;
    border: 2px solid #6fc65f;
}

/*=======================
=====  SITE HEADER  =====
=======================*/

.site-header {
    max-width: 1170px;
    height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: white;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
}

.mobile-menu-button-icon {
    width: 22px;
    height: 22px;
    display: inline-block;
    margin-bottom: -2px;
}

@media (max-width: 1169px) {
    .site-header {
        height: 75px;
        width: 100%;
    }
}

/* ================================  WEBSITE LOGO  ================================*/

.site-header-logo {
    width: auto;
    height: 68px;
    margin-right: 100px;
}

.site-header-logo img {
    max-height: 100%;
    width: auto;
}

@media (max-width: 1169px) {
    .site-header-logo {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        max-height: 50px;
        width: auto;
        margin: 0;
    }
}

@media (max-width: 360px) {
    .site-header-logo {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        max-height: 40px;
        width: auto;
        margin: 0;
    }
}

/* ================================  MAIN MENU  ===================================*/

.site-header-main-menu {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: block;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
}

.mobile-menu-button {
    width: 75px;
    height: 100%;
    display: none;
    background: white;
    color: #777;
    font-size: 22px;
    text-decoration: none;
    border-right-width: 1px;
    border-style: solid;
    -o-border-image: linear-gradient(#fff, #ddd, #fff) 1;
       border-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(#ddd), to(#fff)) 1;
       border-image: linear-gradient(#fff, #ddd, #fff) 1;
}

.mobile-menu-button:after {
    display: block;
    content: 'MENU';
    font-family: 'Poppins', sans-serif;
    font-size: 8px;
    color: #aaa;
}

.main-menu-list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 20px 0 0;
    height: 100%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    font-family: 'Poppins', sans-serif;
}

.main-menu-list .menu-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    list-style: none;
    -ms-flex-item-align: center;
        align-self: center;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.main-menu-list .menu-item>a {
    -ms-flex-item-align: center;
        align-self: center;
    position: relative;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;

}



.main-menu-list .menu-item:before {
    display: none;
}

.main-menu-list .menu-item .sub-menu li:before {
    display: none;
}

.main-menu-list .menu-item .sub-menu li,
.sub-menu li>a {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

@media (min-width:1170px) {

    .menu-item a {
        width: 100%;
        padding: 10px 15px;
        display: block;
    }

    .main-menu-list .menu-item:hover {
        background: #eee;
    }

    .main-menu-list .menu-item:hover>a {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        
    }

    .main-menu-list li>.sub-menu {
        top: 12rem;
        left: 0;
    }

    .sub-menu {
        position: absolute;
        background-color: white;
        z-index: 10;
        -webkit-box-shadow: 0px 5px 10px rgba(1, 1, 1, 0.2);
                box-shadow: 0px 5px 10px rgba(1, 1, 1, 0.2);
        display: none;
        padding: 1em 0;
        left: 100%;
        top: 0;
        width: 16em;
        -webkit-transition: none;
        transition: none;
    }

    .main-menu-list .menu-item .sub-menu li {
        list-style: none;
        display: block;
        /* padding: 0.75em 3em 0.75em 1.5em; */
        padding: 0;
        text-transform: none;
        position: relative;
        letter-spacing: 0;
        -webkit-transition: none;
        transition: none;
    }

    .sub-menu.has-submenu:after {
        content: '\0203A';
        color: #aaa;
        display: block;
        position: absolute;
        right: 1.5em;
        top: 0.75em;
    }

    .has-submenu:hover:after {
        color: white;
    }

    .main-menu-list .menu-item .sub-menu li:hover {
        background: #ff6e02;
    }

    .sub-menu li:hover>a {
        color: white;
    }

    li:hover>.sub-menu li,li:hover>.sub-menu  {
        display: block;
    }

}

@media (max-width: 1169px) {
    @-webkit-keyframes slide-down {
        0% {
            opacity: 0;
            -webkit-transform: translateY(-3%);
                    transform: translateY(-3%);
        }

        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }
    }
    @keyframes slide-down {
        0% {
            opacity: 0;
            -webkit-transform: translateY(-3%);
                    transform: translateY(-3%);
        }

        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }
    }

    .site-header-main-menu {
        -webkit-box-ordinal-group: 1;
            -ms-flex-order: 0;
                order: 0;
        margin: 0;
        max-width: 75px;
    }

    .mobile-menu-button {
        display: block;
    }

    .main-menu-list {
        display: none;
        height: auto;
        position: absolute;
        overflow: hidden;
        z-index: 200;
        width: 100%;
        height: auto;
        background: #ff6e02;
        -webkit-box-shadow: 0px 5px 10px rgba(1, 1, 10, 0.2);
                box-shadow: 0px 5px 10px rgba(1, 1, 10, 0.2);
        -webkit-animation: slide-down .3s ease-out;
        animation: slide-down .3s ease-out;
    }

    .main-menu-list li>a {
        color: white;
        height: auto;
    }

    .main-menu-list .menu-item {
        position: relative;
        display: block;
        text-align: center;
        width: 100%;
        margin: 30px auto 0;
        padding: 0;
        padding-bottom: 30px;
        border-bottom-width: 1px;
        border-style: solid;
        -o-border-image: linear-gradient(90deg, #ff6e02, #d15e06, #ff6e02) 1;
           border-image: -webkit-gradient(linear, left top, right top, from(#ff6e02), color-stop(#d15e06), to(#ff6e02)) 1;
           border-image: linear-gradient(90deg, #ff6e02, #d15e06, #ff6e02) 1;
        -webkit-transition: none;
        transition: none;
    }

    .sub-menu {
        letter-spacing: 0;
        margin-top: 2em;
        padding: 1em 0;
        position: relative;
        display: none;
        top: 0;
        left: 0;
        background: #ddd;
        -webkit-animation: slide-down .3s ease-out;
        animation: slide-down .3s ease-out;
        z-index: 100;
    }

    .main-menu-list .menu-item .sub-menu li {
        position: relative;
        text-transform: none;
        padding: 1em 0;
        border: 0;
    }

    .main-menu-list .menu-item-has-children {
        border: 0;
    }

    .sub-menu li a {
        color: #555;
    }

    .main-menu-list .menu-item-has-children:after {
        content: '\2261';
        font-size: 1.5rem;
        position: absolute;
        top: 1.2rem;
        left: 1em;
        color: #999;
        display: block;
    }

    .main-menu-list li.menu-item-has-children:after {
        color: #fabb8b;
        top: -2px;
    }

    .main-menu-list .menu-item-has-children>ul {
        background: white;
    }

    .submenu-open>.sub-menu {
        display: block;
    }

    .main-menu-list li.submenu-open {
        -webkit-transition: none;
        transition: none;
        padding-bottom: 0;
    }

    .main-menu-list li>a,
    .submenu-item>a {
        display: block;
        padding: 0 4em;
    }
}

/* ================================  SEARCH FIELD  ================================*/

.site-header-search {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.mobile-header-search-button {
    width: 75px;
    height: 100%;
    display: none;
    background: white;
    color: #777;
    font-size: 22px;
    border-left-width: 1px;
    border-style: solid;
    -o-border-image: linear-gradient(#fff, #ddd, #fff) 1;
       border-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(#ddd), to(#fff)) 1;
       border-image: linear-gradient(#fff, #ddd, #fff) 1;
}

.mobile-header-search-button:after {
    display: block;
    content: 'SEARCH';
    font-family: 'Poppins', sans-serif;
    font-size: 8px;
    color: #aaa;
}

.site-header-search-form {
    position: relative;
    display: block;
    margin: auto;
}

.site-header-search-form-input {
    width: 240px;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 2rem;
}

.site-header-search-form-input:focus {
    border: 1px solid #ff9c00;
    -webkit-box-shadow: 0px 0px 5px #eee;
            box-shadow: 0px 0px 5px #eee;
}


@media (max-width: 1169px) {
    .site-header-search {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        display: block;
    }

    .site-header-search-form {
        display: none;
        height: auto;
        overflow: hidden;
        position: absolute;
        width: 100%;
        text-align: center;
        padding: 1rem;
        left: 0;
        background: #eee;
        z-index: 1;
        -webkit-animation: slide-down .3s ease-out;
        animation: slide-down .3s ease-out;
    }

    .site-header-search-form-input {
        width: 100%;
        border: 0px solid;
        border-bottom: 1px solid #ccc;
    }

    .mobile-header-search-button {
        display: block;
    }
}


/*==========================
=====  ARTICLE HEADER  =====
==========================*/

.article-header {
    position: relative;
    width: 100%;
}

.article-title-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("/wp-content/themes/palatetopen/images/page-banner-bg.jpg") no-repeat top center fixed, #000;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://www.inthetoybox.co.uk/wp-content/uploads/2018/11/toy-review-background-e1543419116345.jpg") no-repeat top center fixed, #000;
    background-repeat: no-repeat;
    background-position: auto, top center;
    background-size: auto, auto 50%;
}

.article-title-section {
    max-width: 1170px;
    margin: auto;
    padding: 6rem 2rem 45rem;
}

.publish-date {
    text-align: center;
    width: 100%;
    color: orange;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.article-title {
    text-align: center;
    width: 100%;
    color: white;
    margin: 0;
}

.article-background-cutout {
    position: absolute;
    display: block;
    width: 100%;
    height: 90px;
    bottom: -1px;
    right: 0px;
    left: 0px;

}

@media (min-width:1921px) {
    .article-title-container {
        background: -webkit-gradient(linear, left top, right top, color-stop(15%, rgba(0, 0, 0, 1)), color-stop(25%, rgba(0, 0, 0, 0.4)), color-stop(75%, rgba(0, 0, 0, 0.4)), color-stop(95%, rgba(0, 0, 0, 1))), url("https://www.inthetoybox.co.uk/wp-content/uploads/2018/11/toy-review-background-e1543419116345.jpg") no-repeat top center fixed, #000;
        background: linear-gradient(90deg, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 0.4) 25%, rgba(0, 0, 0, 0.4) 75%, rgba(0, 0, 0, 1) 85%), url("https://www.inthetoybox.co.uk/wp-content/uploads/2018/11/toy-review-background-e1543419116345.jpg") no-repeat top center fixed, #000;
    }
}

@media (max-width: 1169px) {
    .article-title-container {
        background-size: auto, auto 55%;
    }

    .article-title-section {
        margin: 0 auto;
        padding: 6rem 2rem 45rem;
    }

}

@media (max-width:767px) {
    .article-background-cutout {
        height: 50px;
    }
}

@media (min-width:320px) and (max-width:480px) {
    .article-title-section {
        padding: 3rem 2rem 35rem;
        margin: 0 auto;
    }

    .article-title {
        font-size: 28px;
    }

    .publish-date {
        margin-bottom: 0.5rem;
        font-size: 12px;
    }
}


/*=============================
=====  FEATURED PRODUCTS  =====
=============================*/

@-webkit-keyframes slider {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slider {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.featured-products-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    width: 100%;
    background-color: #fafafa;
}

.featured-products {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 1170px;
    border-radius: 5px;
    overflow: hidden;
    background-color: white;
    -webkit-box-shadow: 0px 5px 10px rgba(1, 1, 1, 0.1);
    box-shadow: 0px 5px 10px rgba(1, 1, 1, 0.1);
    margin-top: -400px;
}

.featured-product {
    position: relative;
    height: 100%;
    text-align: center;
    background: white;
    opacity: 1;
    -webkit-transition: all 0.5s ease;
    z-index: 1;
    -webkit-animation: slider .5s ease-out;
            animation: slider .5s ease-out;
}

.featured-product:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 2;
    -webkit-box-shadow: 0px -20px 25px rgba(1, 1, 1, 0.15);
    box-shadow: 0px 0px 25px rgba(1, 1, 1, 0.15);
}

.featured-product-best-value {
    border-left-width: 1px;
    border-right-width: 1px;
    border-style: solid;
    -o-border-image: linear-gradient(#fff, #ddd, #fff) 1;
    border-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(#ddd), to(#fff)) 1;
    border-image: linear-gradient(#fff, #ddd, #fff) 1;

}

.featured-badge {
    width: 100%;
}

.featured-badge-title {
    display: block;
    position: absolute;
    top: 7px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    color: white;
    z-index: 10;
    text-transform: uppercase;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.featured-product-figure {
    height: 250px;
    width: 390px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.featured-product-figure a img {
    margin: 20px 0;
    height: 85%;
    width: auto;
}


.featured-product-image {
    height: 100%;
    width: auto;
}

.featured-product-title  {
    font-weight: 700;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.featured-product-title a {
    color: #444;
    text-decoration: none;
}



.featured-badge-background {
    width: 260px;
    height: 60px;
}

.featured-product-best-choice .featured-badge-background {
    fill: #228dbf;
}

.featured-product-best-value .featured-badge-background {
    fill: #5bb13d;
}

.featured-product-premium-pick .featured-badge-background {
    fill: #c5b358;
}

.featured-product-rating {
    color: #e4be26;
    margin-bottom: 1rem;
}

.featured-product-rating a {
    color: #e4be26;
    text-decoration: none;
}

.featured-description {
    border-top-width: 1px;
    border-style: solid;
    -o-border-image: linear-gradient(90deg, #fff, #ddd, #fff) 1;
    border-image: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(#ddd), to(#fff)) 1;
    border-image: linear-gradient(90deg, #fff, #ddd, #fff) 1;
    padding: 1rem 0;
    font-size: 18px;
    font-weight: 200;
    color: #555;
    margin-bottom: 0;
}

a.featured-product-button {
    min-width: 270px;
    margin-bottom: 40px;
}

.slider-button {
    position: relative;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 36px;
    background: none;
    color: white;
    width: 50px;
    height: 50px;
    margin: -250px auto 0;
    cursor: pointer;
    display: none;
}

.slider-button svg {
    display: block;
    margin: auto;
    width: 28px;
    height: 28px;
}

@media (min-width:481px) and (max-width:1169px) {
    .featured-products {
        position: relative;
        display: block;
        width: 390px;
    }

    .featured-product {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .featured-product-best-choice {
        display: none;
    }

    .featured-product-best-value {
        display: none;
        border: 0;
    }

    .featured-product-premium-pick {
        display: none;
    }

    .slider-button {
        display: block;
        background: rgba(255, 255, 255, 0.5);
        color: black;
        border-radius: 10px;
    }

}

@media (min-width:320px) and (max-width:480px) {
    .featured-products {
        position: relative;
        display: block;
        width: 270px;
        min-height: 430px;
        margin-top: -320px;
    }

    .featured-product {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .featured-product-figure {
        height: 250px;
        width: 100%;
    }

    .featured-product-figure a img {
        margin: 20px 0;
        height: 85%;
        width: auto;
    }

    .featured-product-title {
        font-size: 16px;
    }

    .featured-badge-background {
        width: 90%;
        height: 60px;
    }

    .featured-badge-title {
        line-height: 1.4;
    }

    .featured-badge-icon {
        font-size: 14px;
    }

    .featured-description {
        font-size: 16px;
        padding: 0.5rem 1rem;
    }

    a.featured-product-button {
        min-width: 90%;
        margin: 0 auto 15px;
    }

    .featured-product-best-choice {
        display: none;
    }

    .featured-product-best-value {
        display: none;
        border: 0;
    }

    .featured-product-premium-pick {
        display: none;
    }

    .slider-button {
        display: block;
        margin: -180px auto 0;
    }
}


/*==========================
=====  SINGLE ARTICLE  =====
==========================*/

.article-content {
    width: 100%;
    display: block;
    padding: 60px 0 20px;
    background-color: #fafafa;
}


.normal-page .article-content {
    padding: 20px 0 20px;
}


.skip-links {
    max-width: 100%;
    width: 50%;
    text-align: left;
    list-style-type: decimal;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 40px;
}

.skip-links li {

    margin-bottom: 5px;

}

/*==========================
=====  2 Column Layout  =====
==========================*/

.thecontainer {
    max-width: 1170px;
    margin:0 auto;
}


.normal-page .article-content {
    display: flex;
}

.sidebar {
    padding: 30px;
    margin:40px 0;
    background: #ffffff;
    -webkit-box-shadow: 0px 5px 10px rgba(1, 1, 1, 0.1);
    box-shadow: 0px 5px 10px rgba(1, 1, 1, 0.1);
    border-radius: 5px;
}

.sidebarin .hash4 {
    font-family: "Poppins";
    text-transform: capitalize;
    font-size: 2.4rem;
    font-weight: 600;
    color: #444444;
}

.sidebar .menu {
    margin:20px 0;
    padding-left:10px;
}

.sidebar .menu li {
    margin:5px 0;
}

.sidebar .menu li a {
    text-decoration: none;
}

.normal-page .main-section {
    float: left;
    max-width: 72%;
    margin-right: 1%;
}

.normal-page .sidebar {
    float: left;
    max-width: 27%;
}

.be-button.rounded {
    padding: 16px 50px;
}
.clearboth {
    clear: both;
}

.normal-page h1 {
    text-transform: capitalize;
    color:#444;
}

.normal-page h2 {
    text-transform: capitalize;
    font-size: 3.2rem;
    font-weight: 600;
    color: #444444;
    margin-top: 1em;
}

.article-content h2 {
    margin-top: 1em 0;
    margin-bottom: 1em 0;
}

.section-title {
    margin: auto;
    max-width: 1170px;
    padding: 0 30px;
    text-align: center;
}

.section-title-body {
    text-align: center;
    margin: 10px auto 60px;
    max-width: 1170px;
}

.section-title-body p {
    max-width: 1170px;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    text-align: center;
    padding: 0 30px;
    color: #777777;
    margin: 10px auto 20px;
}

.single-article-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    position: relative;
    padding: 30px;
    max-width: 1170px;
    background: #ffffff;
    -webkit-box-shadow: 0px 5px 10px rgba(1, 1, 1, 0.1);
            box-shadow: 0px 5px 10px rgba(1, 1, 1, 0.1);
    border-radius: 5px;
    margin: auto auto 40px;
}

.single-article-container img {
    max-width: 100%;
    height: auto;
}

img.size-full, .wp-caption.aligncenter, .attachment-post-thumbnail {
    display: block;
    margin-right: auto;
    margin-left: auto;
}
img.size-full,.attachment-post-thumbnail {
 margin-top: 45px;  
 margin-bottom: 45px;   
 max-width: 100%;
 height: auto;
}

@media (min-width:769px) and (max-width:1170px) {
    .single-article-container {
        margin: auto 30px 40px;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .article-content {
        padding: 60px 0 20px;
    }

    .single-article-container {
        margin: 70px 15px;
        padding: 20px 20px 0;
    }
}



@media (min-width:481px) and (max-width:1169px) {

    .normal-page .main-section {
        float: none;
        max-width: 100%;
        margin-right: 0%;
    }

    .normal-page .sidebar {
        float: none;
        max-width: 100%;
        padding: 20px 30px;
        margin:0 30px;
    }

}

@media (min-width:320px) and (max-width:480px) {
    .article-content {
        padding: 20px 0 20px;
    }
    .single-article-container {
        margin: 10px 15px 20px;
        padding: 20px 20px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .section-title-body {
        font-size: 16px;
        margin-bottom: 60px;
    }

    .single-article-container {
        min-width: 260px;
    }


    .normal-page .main-section {
        float: none;
        max-width: 100%;
        margin-right: 0%;
    }

    .normal-page .sidebar {
        float: none;
        max-width: 100%;
        padding: 20px 30px;
        margin:10px 15px 20px;
    }


    .be-button.rounded {
        padding: 16px 20px;
    }

}




/*=====  SINGLE ARTICLE TITLE  =====*/

.single-article-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.single-article-badge {
    min-width: 75px;
    min-height: 75px;
    display: block;

    border-radius: 5px;
    text-align: center;
    color: white;
    margin-right: 20px;
    -webkit-box-shadow: 0px 5px 10px rgba(1, 1, 1, 0.1);
    box-shadow: 0px 5px 10px rgba(1, 1, 1, 0.1);
    background-image: -webkit-gradient(linear, left bottom, left top, from(#a1abb2), to(#86989e));
    background-image: linear-gradient(0deg, #a1abb2, #86989e);
}

.single-article-badge>svg {
    display: block;
    margin: 1em auto 0;
    width: 22px;
    height: 22px;
    color: white;
}

.single-article-badge-number {
    line-height: 75px;
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 0;
    color: white;

}

.single-article-badge-best {
    background: #228dbf;

}

.single-article-badge-value {
    background: #5bb13d;

}

.single-article-badge-premium {
    background: #c5b358;

}

.single-article-badge-featured i {
    font-size: 18px;
    width: 100%;
}

.single-article-badge-featured p {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
    margin-top: 0.5rem;
    margin-bottom: 0;
    color: white;
}

.single-article-title {
    margin-top: 0;
    margin-bottom: 0;
}

@media (min-width:481px) and (max-width: 768px) {
    .single-article-header {
        margin-top: -60px;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .single-article-title {
        width: 100%;
        margin-top: 1.5rem;
        margin-bottom: 0;
        text-align: center;
    }
}

@media (min-width:320px) and (max-width: 480px) {
    .single-article-header {
        margin-top: -40px;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin-bottom: 20px;
    }

    .single-article-title {
        width: 100%;
        margin-top: 1rem;
        margin-bottom: 0;
        font-size: 24px;
        text-align: center;
    }

    .single-article-badge {
        min-width: 45px;
        min-height: 45px;
        margin-right: 0;
    }

    .single-article-badge>svg {
        margin: 0.5em auto 0;
        width: 14px;
        height: 14px;
    }

    .single-article-badge:first-of-type {
        margin-right: 10px;
    }

    .single-article-badge-number {
        font-size: 20px;
        line-height: 45px;
    }

    .single-article-badge-featured i {
        font-size: 12px;
    }

    .single-article-badge-featured p {
        font-size: 8px;
        margin-top: 4px;
    }

}


/*=====  SINGLE ARTICLE MAIN CONTENT =====*/
.single-article-main {
    -ms-flex-preferred-size: 740px;
        flex-basis: 740px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    background: #fff;
    margin-right: 30px;
}

.single-article-main ul {
    font-size: 1.6em;

    margin: 20px 0 20px 20px;
}


.single-article-main ul li {
    line-height: 1.6;
}

.single-article-main-figure {
    width: 100%;
    height: 400px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.single-article-main-figure img {
    height: 80%;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
}

.single-article-main-links {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 2rem;
}

.single-article-main-links-button {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    text-align: center;
}

.single-article-main-links-button:first-of-type {
    margin-right: 20px;
}

@media (max-width: 1169px) {
    .single-article-main {
        width: 100%;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        margin-right: 0;
    }

    .single-article-main-links {
        margin-bottom: 1rem;
    }

    .single-article-main-links-button {
        min-width: 230px;
        margin-bottom: 1rem;
    }
}

@media (max-width:650px) {
    .single-article-main-links-button:first-of-type {
        margin-right: 0;
        width: 100%;
        margin-bottom: 1em;
    }
}

@media (min-width:320px) and (max-width:480px) {
    .single-article-main {
        margin-right: 0;
    }

    .single-article-main-figure {
        margin-bottom: 20px;
        width: 100%;
        height: auto;
    }

    .single-article-main-figure-image {
        height: auto;
        width: 100%;
    }

    a.single-article-main-links-button {
        margin-bottom: 10px;
    }
}

/*=====  SINGLE ARTICLE ASIDE  =====*/
.single-article-aside {
    -ms-flex-preferred-size: 340px;
        flex-basis: 340px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 100%;
}

.single-article-aside-sidebar {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}

.single-article-aside-sidebar-rating {
    background: #f7fbfc;
    border-color: #cfe1e5;
}

.single-article-aside-sidebar-pros {
    background-color: #f7fcfa;
    background: url("/wp-content/themes/palatetopen/images/pros-bg.png") bottom right no-repeat, #f7fcfa;
    border-color: #cfe5dc;
}

.single-article-aside-sidebar-cons {
    background-color: #fcf9f7;
    background: url("/wp-content/themes/palatetopen/images/cons-bg.png") bottom right no-repeat, #fcf9f7;
    border-color: #e5d8cf;
}

.single-article-aside-sidebar-title {
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 16px;
    width: 100%;
    padding: 20px 0;
    margin-bottom: 0;
    border-bottom: 1px solid;
    -o-border-image: linear-gradient(90deg, #fff, #ddd, #fff) 1;
       border-image: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(#ddd), to(#fff)) 1;
       border-image: linear-gradient(90deg, #fff, #ddd, #fff) 1;
    -webkit-box-shadow: 0px 3px 5px rgba(1, 1, 1, 0.05);
            box-shadow: 0px 3px 5px rgba(1, 1, 1, 0.05);
}

.single-article-aside-sidebar-rating .single-article-aside-sidebar-title {
    color: #4c7f99;
    -o-border-image: linear-gradient(90deg, rgba(207, 225, 229, 0), rgba(207, 225, 229, 1), rgba(207, 225, 229, 0)) 1;
       border-image: -webkit-gradient(linear, left top, right top, from(rgba(207, 225, 229, 0)), color-stop(rgba(207, 225, 229, 1)), to(rgba(207, 225, 229, 0))) 1;
       border-image: linear-gradient(90deg, rgba(207, 225, 229, 0), rgba(207, 225, 229, 1), rgba(207, 225, 229, 0)) 1;
}

.single-article-aside-sidebar-pros .single-article-aside-sidebar-title {
    color: #36b503;
    -o-border-image: linear-gradient(90deg, rgba(207, 229, 220, 0), rgba(207, 229, 220, 1), rgba(207, 229, 220, 0)) 1;
       border-image: -webkit-gradient(linear, left top, right top, from(rgba(207, 229, 220, 0)), color-stop(rgba(207, 229, 220, 1)), to(rgba(207, 229, 220, 0))) 1;
       border-image: linear-gradient(90deg, rgba(207, 229, 220, 0), rgba(207, 229, 220, 1), rgba(207, 229, 220, 0)) 1;
}

.single-article-aside-sidebar-cons .single-article-aside-sidebar-title {
    color: #ca3535;
    -o-border-image: linear-gradient(90deg, rgba(229, 216, 207, 0), rgba(229, 216, 207, 1), rgba(229, 216, 207, 0)) 1;
       border-image: -webkit-gradient(linear, left top, right top, from(rgba(229, 216, 207, 0)), color-stop(rgba(229, 216, 207, 1)), to(rgba(229, 216, 207, 0))) 1;
       border-image: linear-gradient(90deg, rgba(229, 216, 207, 0), rgba(229, 216, 207, 1), rgba(229, 216, 207, 0)) 1;
}

.single-article-aside-sidebar-title-icon {
    height: 18px;
    width: 18px;
    display: inline-block;
    vertical-align: top;
    margin-right: 0.5rem;
}

.single-article-aside-sidebar-rating-content {
    font-size: 14px;
    color: #777;
    text-align: center;
    margin-top: 20px;
}

.single-article-aside-sidebar-rating-content svg {
    vertical-align: top;
    color: #e4be26;
    width: 20px;
    height: 20px;
}

.single-article-aside-sidebar-list {
    margin: 30px 30px 30px 40px;
}

.single-article-aside-sidebar-list-item {
    margin-bottom: 1rem;
    color: #555;
    letter-spacing: 0.04em;
}

@media (min-width:320px) and (max-width:480px) {
    .single-article-aside-sidebar {
        width: 100%;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        border-radius: 5px;
        border: 1px solid #ccc;
        margin-bottom: 20px;
    }
}

/*==========================
=====  ARTICLE ASIDE  ======
==========================*/

.article-additional-aside {
    padding: 40px 0;
}

@media (min-width:320px) and (max-width:480px) {
    .article-additional-aside {
        padding: 20px 0 20px;
    }
}

.article-additional-aside-container {
    max-width: 1170px;
    margin: auto;
    padding: 0 20px;
}


.article-additional-aside-container ul {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    margin-left: 20px;
    margin-bottom: 1.5rem;
    color: #444;
    letter-spacing: 0.02em;
}
.article-additional-aside-container ul li {
    margin-bottom: 10px;
}
/*========================
=====  MORE REVIEWS  =====
========================*/

.more-reviews {
    background: url("/wp-content/themes/toybox/images/white-triangle-bg.jpg") top center no-repeat, #eee;
    background-size: 100%;
    border-top: 1px solid white;
    margin-bottom: -150px;
}

.more-reviews-container {
    max-width: 1170px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.more-reviews-title {
    width: 100%;
    text-align: center;
    padding: 0 20px;
    margin: auto;
    margin-bottom: 1em;
}

.more-reviews-single-review {
    max-width: 370px;
    min-width: 250px;
    border-radius: 5px;
    overflow: hidden;
    -webkit-box-shadow: 0px 5px 10px rgba(1, 1, 1, 0.1);
    box-shadow: 0px 5px 10px rgba(1, 1, 1, 0.1);
    margin-bottom: 30px;
}

.more-reviews-single-review-image {
    max-width: 370px;
    max-height: 270px;
    margin-bottom: 0;
}

.more-reviews-single-review-content {
    width: 100%;
    height: 100%;
    background: white;
    padding-bottom: 1px;
}

.more-reviews-single-review-title {
    font-size: 24px;
    padding: 20px;
    margin-top: 0;
}

.more-reviews-single-review-title a {
    display: contents;
    border: 0;
    font-size: 24px;
    text-transform: capitalize;
    color: #444;
}

a.more-reviews-single-review-content-link {
    display: block;
    margin: 0 20px 20px;
}

@media (max-width: 1169px) {
    .more-reviews {
        background-size: auto;
    }

    .more-reviews-container {
        -ms-flex-pack: distribute;
            justify-content: space-around;
    }
}

@media (min-width:320px) and (max-width:480px) {
    .more-reviews-single-review {
        width: 100%;
        margin: 20px;
    }


}

/*======================
=====  NEWSLETTER  =====
======================*/

.newsletter {
    background: url('/wp-content/themes/toybox/images/gray-triangle-bg.png') top center no-repeat, url('https://www.inthetoybox.co.uk/wp-content/uploads/2018/11/toy-review-background-e1543419116345.jpg') top center no-repeat;
    padding-top: 275px;
    background-size: 100%, cover;
    height: 740px;
}

.newsletter-container {
    display: none;
    position: relative;
    max-width: 630px;
    margin: auto;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0 0 5px 5px;
    border-top: none;
}

.newsletter-container:before {
    display: block;
    content: '';
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.5)), color-stop(10%, rgba(255, 255, 255, 0.5)), color-stop(10%, rgba(255, 255, 255, 0)), color-stop(90%, rgba(255, 255, 255, 0)), color-stop(90%, rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0.5)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 10%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0.5) 90%, rgba(255, 255, 255, 0.5) 100%);
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
}

.newsletter-title {
    font-size: 42px;
    color: white;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0.25em;
    padding: 0 1em;
}

.newsletter-subtitle {
    margin: -0.5em auto 0;
    width: 80%;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-align: center;
    color: orange;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

.newsletter-form {
    height: 100%;
    padding: 20px;
}

.newsletter-input {
    display: block;
    min-width: 100%;
    display: block;
    margin: 0 auto 20px;
    height: 54px;
}

a.newsletter-button {
    margin-bottom: 40px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

@media (max-width:1169px) {
    .newsletter {
        background-size: auto, cover;
    }

    .newsletter-title {
        font-size: 2.8rem;
    }

    .newsletter-subtitle {
        margin-bottom: 0.5rem;
        font-size: 1.2rem;
    }
}

@media (max-width:670px) {
    .newsletter-container {
        margin: 20px;
    }
}

@media (min-width: 320px) and (max-width: 480px) {
    .newsletter {
        height: 600px;
        padding-top: 225px;
    }

    .newsletter-container {
        margin: 20px;
    }

    a.newsletter-button {
        display: block;
        margin: 0 auto;
    }
}

/*==================
=====  FOOTER  =====
==================*/
.site-footer {
    width: 100%;
    background: linear-gradient(80deg, #161719, #212226);
    color: white;
}

.site-footer-container {
    max-width: 1170px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: auto;
}

.site-footer-group {
    -ms-flex-preferred-size: 285px;
        flex-basis: 285px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-top: 60px;
}

.site-footer-group-title {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid;
    -o-border-image: linear-gradient(90deg, rgba(76, 127, 153, 1), rgba(76, 127, 153, 0)) 1;
       border-image: -webkit-gradient(linear, left top, right top, from(rgba(76, 127, 153, 1)), to(rgba(76, 127, 153, 0))) 1;
       border-image: linear-gradient(90deg, rgba(76, 127, 153, 1), rgba(76, 127, 153, 0)) 1;
}

.site-footer-group-links {
    padding: 0 1rem 0;
}

li.site-footer-group-links-item {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
}
li.site-footer-group-links-item a {
    text-decoration: none;
    color: white;
}

li.site-footer-group-links-item a:hover {
    text-decoration: underline;
}
li.site-footer-group-links-item a:before {
    content: "\2022";
    color: #ff6e02;
    font-weight: bold;
    display: inline-block;
    width: 1rem;
    margin-left: -1rem;
}

.site-footer-disclaimer {
    width: 100%;
}

.site-footer-disclaimer-logo {
    display: block;
    width: 236px;
    height: auto;
    margin: auto;
    margin-top: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid;
    -o-border-image: linear-gradient(90deg, rgba(76, 127, 153, 0), rgba(76, 127, 153, 1), rgba(76, 127, 153, 0)) 1;
       border-image: -webkit-gradient(linear, left top, right top, from(rgba(76, 127, 153, 0)), color-stop(rgba(76, 127, 153, 1)), to(rgba(76, 127, 153, 0))) 1;
       border-image: linear-gradient(90deg, rgba(76, 127, 153, 0), rgba(76, 127, 153, 1), rgba(76, 127, 153, 0)) 1;
}

.site-footer-disclaimer-text {
    padding: 20px 0;
    text-align: center;
    color: #aaa;
    font-size: 12px;
    margin: 0;
}

@media (max-width: 1170px) {
    .site-footer-container {
        padding: 0 30px;
    }
}