:root {
    --white: #fff;
    --red: rgb(255, 0, 0);
    --yellow: #ff0;
    --pink-purple: #e2007e;
}

a:visited {
    color: initial;
}

/***********************************************************************

  animation

************************************************************************/

.js-animation {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: all 1s;
}

.js-animation.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}


.target {
    animation: floating-y 1.3s ease-in-out infinite alternate-reverse;
}

@keyframes floating-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}

.marker {
    background: linear-gradient(transparent 10%, rgba(255, 255, 0, 1) 10%);
    display: inline;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition: background-size 1s;
}

.marker.on {
    background-size: 100% 100%;
}

/****************************************************

swiper

****************************************************/
.swiper {
    padding: 0 15px;
}

.swiper-wrapper {
    padding-bottom: 75px;
}

.swiper-slide {
    text-align: center;
}

.swiper-pagination-bullet-active {
    background: #000 !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000 !important;
    top: 30%;
}

.swiper-button-next {
    right: -5px;
}

.swiper-button-prev {
    left: -5px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 14px !important;
    font-weight: bold;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {}

@media screen and (max-width: 798px) {
    .swiper {
        padding: 0px;
    }

    .swiper-wrapper {
        padding-bottom: 0px;
    }
}


/****************************************************

modal

****************************************************/
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1f1f1fab;
    z-index: 9997;
    cursor: pointer;
}

.modal.close {
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
}

.popup {
    position: relative;
    width: 100%;
    max-width: 500px;
    box-shadow: 0px 0px 13px 2px rgb(93 93 93 / 47%);
    z-index: 9999;
    animation: fadeUp 0.6s;
}

.popup a {
    opacity: 1;
}


.popup:hover {
    opacity: 1;
}

.popup a:hover {
    opacity: initial;
}

.popup img {
    width: 100%;
    border-radius: 15px;
}

.popup img:hover {
    opacity: 1;
}

@keyframes fadeUp {
    0% {
        transform: translateY(10px)
    }

    100% {
        transform: translateY(0px)
    }

}

.modalCloseBtn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 1.6rem;
    font-weight: bold;
    z-index: 9999;
    cursor: pointer;
    color: var(--white);
    ;
}

@media screen and (max-width: 798px) {
    .modalCloseBtn {
        right: 5px;
        top: -5px;
        padding: 10px;
    }

    .popup {
        width: 80%;
    }
}




/****************************************************

key-visual

****************************************************/

.key-visual {
    width: 100%;
    margin: -25px auto 0px;
    position: relative;
}

.key-visual img {
    width: 100%;
}

.key-visual .pc-banner {
    display: block;
    z-index: 2;
    position: relative;
}

.key-visual .sp-banner {
    display: none;
}

@media (max-width: 798px) {
    .key-visual {
        width: 100%;
        margin-top: 0px;
    }

    .key-visual .pc-banner {
        display: none;
    }

    .key-visual .sp-banner {
        display: block;
    }


}



/****************************************************

countdown-section 

****************************************************/

.countdown-section {
    width: 100%;
    /* background-color: var(--pink-purple); */
    background-color: #33180d;
    /* padding: 5px 0 15px; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 15px;
    max-width: 1000px;
    margin: auto;
}


.countdown-section_title {
    font-size: 3rem;
    color: var(--white);
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Montserrat';
    font-weight: bold;
    letter-spacing: 3px;
    width: 50%;
}

.countdown-section_detail {
    /*  margin-bottom: 15px; */
        width: 50%;
}
#countdown-label {
    font-size: initial;
    color: #fff;
    text-shadow: none;
    -webkit-text-stroke: 0;
}
.countdown-section_title img {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    display: block;
}

.countdown-section_detail span {
    font-size: 5rem;
    font-family: 'Montserrat';
    font-weight: bold;
    letter-spacing: 0.08rem;
    /* color: var(--yellow); */
    color: #FFEB3B;
    text-shadow: 6px 3px 0px rgb(0, 0, 0);
    -webkit-text-stroke: #000 1px;
}

.countdown-section_detail span.date {
    font-size: 2rem;
    margin-right: 5px;
    padding-left: 5px;
    letter-spacing: -1px;
    font-family: 'Noto Sans JP';
    /* font-weight: bold; */
    color: var(--white);
    text-shadow: none;
    -webkit-text-stroke: 0px;
    font-style: normal;
}

@media screen and (max-width: 798px) {
    .countdown-section {
        flex-direction: column;
        gap: 0;
    }

    .countdown-section_title {
        font-size: 24px;
        width: 100%;
    }

    .countdown-section_detail{
        padding-top: 3px;
        width: 100%;
        text-align: center;
    }
    .countdown-section_detail span {
        font-size: 26px;
        text-shadow: 3px 2px 0px rgb(0, 0, 0);
    }

    .countdown-section_detail span.date {
        font-size: 16px;
        margin-right: 3px;
        padding-left: 3px;
    }
}

@media screen and (max-width: 420px) {
    .countdown-section_title img {
        /* max-width: 255px; */
        padding: 0 15px;
    }
}

/****************************************************

wrapper

****************************************************/
.wrapper {
   /*  background-color: var(--white); */
    width: 100%;
    max-width: 1480px;
    margin: 0 auto 10px;
    padding: 55px 15px;
    /* box-shadow: 0px 0px 7px 0px #9b9b9b; */
    position: relative;
}


.wrapper .left_icon {
    position: fixed;
    left: 25px;
    bottom: 100px;
    width: 320px;
    z-index: 2;
}



.wrapper .right_icon {
    position: fixed;
    right: 1%;
    top: 15%;
    z-index: 2;
    width: 275px;
}


.wrapper .left_icon img,
.wrapper .right_icon img {
    width: 100%;
}


.yurayura {
    transform-origin: center bottom;
    animation: yurayura 2s linear infinite;
}

@keyframes yurayura {

    0%,
    100% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(-10deg);
    }
}


.yurayura2 {
    transform-origin: center bottom;
    animation: yurayura2 2s linear infinite;
}


@keyframes yurayura2 {

    0%,
    100% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(10deg);
    }
}

@media screen and (max-width: 498px) {
    @keyframes yurayura {

        0%,
        100% {
            transform: rotate(5deg);
        }

        50% {
            transform: rotate(-5deg);
        }
    }

    @keyframes yurayura2 {

        0%,
        100% {
            transform: rotate(-5deg);
        }

        50% {
            transform: rotate(5deg);
        }
    }
}

@media (max-width: 1380px) {
    .wrapper {
        width: 90%;
        padding: 55px 0;
    }
}

@media (max-width: 1380px) {

    .wrapper .left_icon,
    .wrapper .right_icon {
        width: 150px;
    }
}

@media (max-width: 798px) {
    .wrapper {
        padding: 35px 0 0;
        margin-top: 0px;
        box-shadow: none;
        width: 95%;
    }
}

@media (max-width: 498px) {

    .wrapper .left_icon,
    .wrapper .right_icon {
        width: 100px;
    }

    .wrapper .right_icon {
        top: 85px;
        z-index: 99;
    }

    .wrapper .left_icon {
        left: 15px;
        bottom: 125px;
    }
}

/****************************************************

pickup

****************************************************/

.pickupsale_title {
    text-align: center;
    margin-bottom: 65px;
}

.pickupsale_title img {
    width: 350px;
}

.pickupsale_list {
     max-width: 1240px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 70px auto 70px;
    padding-bottom: 100px;
    gap: 1%;
  /*   background-color: var(--white); */
    justify-content: center;
    align-content: flex-start;
    flex-direction: row;
}

.pickupsale_list a {
    display: block;
    width: 18%;
    margin-bottom: 2%;
   /*  box-shadow: 0 0 15px; */
}
.pickupsale_list img {
    border-radius: 0;
    border: 3px solid #181818;
}
@media (max-width: 798px) {
    .p-sale-section {
      /*   margin-top: 50px; */
    }

    .pickupsale_list a {
        width: 49%;
    }

}

@media (max-width: 498px) {
    .pickupsale_title {
        margin-bottom: 35px;
    }

    .pickupsale_title img {
        width: 175px;
    }
    .pickupsale_list a {
      /*   width: 100%; */
    }
}
/****************************************************

p-ranking-section

****************************************************/
.p-ranking-section {
    margin: 70px auto 70px;
    padding-bottom: 100px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1%;
    width: 100%;
}

.p-ranking-section_list {
    max-width: 1240px;
    width: 100%;
    background-color: var(--white);
}


.p-ranking-section_title {
    text-align: center;
    margin-bottom: 25px;
}

.p-ranking-section_sub-title {
    position: relative;
    font-size: 4rem;
    text-align: center;
    line-height: 3.5rem;
    margin: auto;
    z-index: 1;
    margin-bottom: 25px;
}

.p-ranking-section_sub-title::after {
    content: url(https://foulaevent.itembox.design/item/images/bnr/event-top-ranking.png);
    position: absolute;
    top:0px;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.p-ranking-section_sub-title:before {
    content: attr(data-cat-title);
    font-family: 'Montserrat';
    font-weight: 700;
    font-style: normal;
}

.p-ranking-section_sub-title.none-pick::after {
    content: "";
}

.p-ranking-section_sub-title span {
    display: block;
    font-size: 14px;
    font-family: 'Noto Sans JP';
    font-weight: bold;
}

.p-ranking-section_list {
    width: 100%;
    max-width: 1240px;
    margin: 0px auto 0;
    padding: 15px 15px 25px;
    border-bottom: 3px dotted #00000017;
    display: flex;
    flex-wrap: wrap;
}


.p-ranking-section_list img {
    width: 100%;
}

.p-ranking-section_list_item-list_img{
    position: relative;
}
.p-ranking-section_list_item-list_img .ranking-no {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.37);
    top: 0;
    right: 10px;
    color: var(--white);
    font-size: 28px;
    white-space: nowrap;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-ranking-section_list_item-list_img :hover{
    opacity: initial;
}

.ranking-no.one{
    background-color: #c4a602 !important;
}
.ranking-no.two{
    background-color: #c0c0c0 !important;
}
.ranking-no.three{
    background-color: #b87333 !important;
}
@media (max-width: 498px) {

    .p-ranking-section_list {
        padding-bottom: 55px;
    }

    .p-ranking-section_list_item-list {
        display: flex;
        flex-direction: column;
        height: 95%;
        flex: 1;
        margin: 0px;
    }

    .p-ranking-section_list .item-list_item-price {
        margin-bottom: 15px;
    }

    .p-ranking-section_title img {
        max-width: initial;
        width: 90%;
    }

}



/****************************************************

p-sale-section

****************************************************/
.p-sale-section {
    padding-top: 75px;
    /* background: var(--c_bg_w); */
    background-color: #fff;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
}
.p-sale-section_title {
    text-align: center;
    margin-bottom: 25px;
}

.p-sale-section_title img {
    text-align: center;
    max-width: 275px;
    width: 100%;
    margin-bottom: 35px;
}

.p-sale-section_sub-title {
    position: relative;
    font-size: 4rem;
    text-align: center;
    line-height: 3.5rem;
}

.p-sale-section_sub-title::after {
    content: url(https://foulaevent.itembox.design/item/images/bnr/event-top-pickup.png);
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.p-sale-section_sub-title:before {
    content: attr(data-cat-title);
    font-family: 'Montserrat';
    font-weight: 700;
    font-style: normal;
}

.p-sale-section_sub-title.none-pick::after {
    content: "";
}

.p-sale-section_sub-title span {
    display: block;
    font-size: 14px;
    font-family: 'Noto Sans JP';
    font-weight: bold;
}

.p-sale-section_list {
    width: 100%;
    max-width: 1240px;
    margin: 0px auto;
    padding: 15px 15px 100px;
    border-bottom: 3px dotted #00000017;
    display: flex;
    flex-wrap: wrap;
}

.p-sale-section_list_item-list {
    display: flex;
    flex-direction: column;
    height: 85%;
    flex: 1;
}

.p-sale-section_list_item-list_img {
    position: relative;
    flex: 0 0 auto;
}

.p-sale-section_list_item-list_img :hover{
    opacity: initial;
}

.p-sale-section_list_item-list_img .bubble-img {}

.p-sale-section_list_img-figure-bubble {
    position: absolute;
    top: 0;
    right: 0;
    width: 125px;
}


.p-sale-section_list_img-figure-bubble .bubble_text {
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    line-height: 22px;
    color: var(--pink-purple);
    font-size: 24px;
    white-space: nowrap;
    font-family: 'Montserrat';
    font-weight: bold;
    font-style: normal;
    letter-spacing: -0.05rem;
    /* font-style: italic; */
}


.bubble_text span {
    font-size: 14px;
    font-weight: bold;
    margin-left: 2px;
}

.bubble_text_off {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: bold;
}
.bubble_text .discount {
    font-size: 16px;
    font-style: normal;
    font-weight: bold;
    font-family: 'Montserrat';
    letter-spacing: -0.05rem;
}

.item-list_detail {
    margin-top: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hypersale {
    position: absolute;
    background-color: #e20000;
    color: var(--white);
    ;
    padding: 5px 10px;
    width: max-content;
    bottom: 15px;
    left: 20px;
    border-radius: 0px;
    font-weight: bold;
}

.item-list_item-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: -10px;
    font-family: 'Montserrat';
}

.item-list_item-price {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    letter-spacing: 0.05rem;
    font-style: normal;
    font-style: italic;
    position: relative;
    font-size: 4em;
    color: var(--red);
    margin: 3px auto 15px;
    width: max-content;
    text-align: center;
}

.item-list_item-price span {
    font-size: 14px;
    margin-left: 5px;
}
.item-list_item-detail-comment {
    padding-bottom: 25px;
    margin-bottom: 30px;
    font-size: 12px;
    margin-top: 10px;
    text-align: center;
    border-bottom: 1px solid #b7b7b7;
    overflow-wrap: break-word;
    flex-grow: 1;
}

.item-list_detail a {
    color: var(--white);
    font-size: 14px;
    padding: 10px 25px;
    align-items: center;
    justify-content: center;
    display: flex;
    /* width: max-content; */
    margin: 0 auto;
    border-radius: 5px;
    border: 1px solid #949494;
    background-color: #000;
}

.category-allitems {
    display: block;
    width: 350px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--pink-purple);
    color: var(--white) !important;
    font-size: 18px;
    padding: 15px 0;
    border-radius: 5px;
}

.category-allitems:hover {
    opacity: initial;
}

@media (max-width: 498px) {

    .pickupsale_list {
        padding: 0 15px;
        margin: 0px auto 0;
    }

    .p-sale-section_list {
        padding-bottom: 55px;
    }

    .p-sale-section_list_item-list {
        display: flex;
        flex-direction: column;
        height: 95%;
        flex: 1;
        margin: 0px;
    }

    .p-sale-section_title img {
        max-width: initial;
        width: 90%;
    }

    .item-list_detail a {
        width: 100%;
        max-width: 350px;
        padding: 15px 0;
        margin-bottom: 0px;
    }
}

/****************************************************

p-price-section

****************************************************/
.p-price-section {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto 50px;
    padding: 15px;
    background-color: var(--white);
}

.p-price-section ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 35px;
}

.p-price-section ul li {
    position: relative;
    border: 1px solid #d1d1d1;
    width: 24%;
    text-align: center;
    ;
}

.p-price-section ul li a {
    position: relative;
    padding-left: 10px;
    padding: 25px 0;
    font-family: 'Montserrat';
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    line-height: 2rem;
    display: block;
    transform-origin: left;
    transition: ease-in-out .2s;
    opacity: initial
}

.p-price-section ul li a::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #000;
    transform-origin: left;
    transition: ease-in-out .4s;
    z-index: -1;
}

.p-price-section ul li a:hover {
    color: var(--white);
    ;
    z-index: 99;
}

.p-price-section ul li a:hover::after {
    width: 100%;
}

.p-price-section ul li a span {
    font-size: 14px;
    padding-left: 3px;
}

@media (max-width: 798px) {
    .p-price-section {
        padding: 15px 5px;
    }

    .p-price-section ul {
        margin-top: 15px;
    }

    .p-price-section ul li {
        width: 49%;
    }
}
@media (max-width: 458px) {
.p-price-section ul li a {
    font-size: 16px;
}
}
/****************************************************

p-category-section

****************************************************/
.p-category-section {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto 50px;
    padding: 15px;
    background-color: var(--white);
}

.p-category-section ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 35px;
}

.p-category-section ul li {
    border: 1px solid #d1d1d1;
    width: 24%;
    background-color: var(--white);
}

.p-category-section ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform-origin: left;
    transition: ease-in-out .2s;
    opacity: initial;
    padding: 15px 0;
}

.p-category-section ul li a::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #000;
    transform-origin: left;
    transition: ease-in-out .4s;
    z-index: -1;
}

.p-category-section ul li a:hover {
    color: var(--white);
    z-index: 99;
    transition-delay: 0.1s;
}

.p-category-section ul li a:hover::after {
    width: 100%;
}

.p-category-section ul li .thumb-img {
    flex: 4;
    padding-left: 15px;
}

.p-category-section ul li .thumb-name {
    flex: 6;
    padding-left: 10px;
}

.p-category-section ul li .thumb-name .eng {
    font-family: 'Montserrat';
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    line-height: 2rem;
}


.p-category-section ul li .thumb-name .jp {
    font-size: 12px;
}

@media (max-width: 798px) {
    .p-category-section {
        width: 100%;
        max-width: 1240px;
        margin: 0 auto 50px;
        padding: 15px 5px;
        background-color: var(--white);
    }

    .p-category-section ul {
        margin-top: 15px;
    }

    .p-category-section ul li {
        width: 49%
    }

    .p-category-section ul li .thumb-img {
        padding-left: 5px;
    }
}

@media (max-width: 498px) {
    .p-category-section ul li .thumb-name {
        padding-left: 0px;
    }
    .p-category-section ul li .thumb-img {
        flex: 3;
    }
    .p-category-section ul li .thumb-name .eng {
        font-size: 14px;
    }

    .p-category-section ul li .thumb-name .jp {
        font-size: 11px;
    }
}

/****************************************************

p-brand-section

****************************************************/
.p-brand-section {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto 50px;
    padding: 15px;
    background-color: var(--white);
}
.p-brand-section .p-brand-section_list {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-top: 35px;
}
.p-brand-section .p-brand-section_list li{
    width: 12%;
    border: 1px solid #4b4b4b;
}
@media (max-width: 798px) {
    .p-brand-section .p-brand-section_list li{
    width: 24%;
 }
}


.marquee-right {
    overflow: hidden;
}

.marquee-right ul {
    animation: marquee-right 50s linear infinite;
    display: flex;
    margin: 0;
    padding: 0;
    width: max-content;
}

.marquee-right ul li {
    list-style: none;
    padding: 0 5px;
    width: 200px;
}

.marquee-right ul li:hover .marquee-right ul {
    animation: marquee-right none;
}


.marquee-right img {
    display: block;
    width: 100%;
}

@keyframes marquee-right {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-33%);
    }
}

@media (max-width: 798px) {
    .p-brand-section {
        padding: 10px 5px;
    }

    .marquee-right ul li {
        padding: 0px;
        width: 135px;
    }
}
 
/****************************************************

attention

****************************************************/
.attention-section {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    background-color:#ffffff;
    padding-bottom: 35px;
    border: 1px solid #000
}

.attention-section_title {
    background-color: rgb(48 48 48);
    text-align: center;
    padding: 15px;
    color: #d4d4d4;
    font-size: 18px;
    font-weight: bold;
}

.attention-section_title .yellow-text {
    font-size: 28px;
    color: var(--yellow);
}

.attention-section_text {
    font-size: 11px;
    /* font-weight: bold; */
    padding: 15px 5%;
    line-height: 180%;
    letter-spacing: initial;
}
.attention-section_text .red{
    color: var(--red);
    font-weight: bold;
}
.attention-section_text .bbotom {
    border-bottom: 1px solid #000;
    margin-bottom: 2px;
    display: inline-block;
}

.attention-section_text li {
    list-style: disc;
    margin-bottom: 5px;
}

.attention-section_text .bg-yellow {
    background-color: var(--yellow)
}

.attention-section_subtitle {
    background-color: rgb(48 48 48);
    text-align: center;
    padding: 15px;
    color: #d4d4d4;
    font-size: 14px;
    font-weight: bold;
}

@media (max-width: 798px) {
    .attention-section {
        padding-bottom: 0px;
    }
    .attention-section_text {
        font-size: 9px;
        padding-left: 15px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .attention-section_text li {
        list-style: none;
    }
    .attention-section_text .bbotom {
        display: inline;
    }
}

@media (max-width: 498px) {
    .attention-section_title {
        font-size: 16px;
        font-weight: bold;
    }

    .attention-section_title .yellow-text {
        font-size: 21px;
        color: var(--yellow);
    }

    .attention-section_subtitle {
        font-size: 16px;
    }
}


/****************************************************

mailmagazine-banner

****************************************************/
.mailmagazine-banner {
    position: fixed;
    bottom: 150px;
    right: -250px;
    opacity: 0;
    width: 250px;
    transition: 0.4s ease-in;
      display: none !important;
}
.mailmagazine-banner.fs-clientInfo--trueOnly{
   display: none;
}

.mailmagazine-banner.active {
    right: 0%;
    opacity: 1;
}

.mailmagazine-banner img {
    width: 100%;
}

@media (max-width: 498px) {
    .mailmagazine-banner {
        bottom: 130px;
        width: 130px;
    }
}

/****************************************************

footer-banner

****************************************************/
.footer-banner {
    background-color: #33180d;
    width: 100%;
    bottom: 0;
    position: fixed;
    z-index: 999;
}

.footer_banner_img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

.footer_banner_img img {
    width: 100%;
}

@media (max-width: 498px) {
    .footer_banner_img {
        max-width: initial;
    }
}