﻿@charset "UTF-8";
/*============================
*	Base
	all base files to reset and get the site started
*/
/*-----------------------------------------------------------------------------
----------------------------0--------$VARIABLES--------------------------------
-------------------------------------------------------------------------------*/
@font-face {
    font-family: conduit;
    src: url(fonts/conduititcstd-extrabold-webfont.eot);
    src: url(fonts/conduititcstd-extrabold-webfont.eot?#iefix) format('embedded-opentype'),url(fonts/conduititcstd-extrabold-webfont.woff) format('woff'),url(fonts/conduititcstd-extrabold-webfont.ttf) format('truetype'),url(fonts/conduititcstd-extrabold-webfont.svg#Conduit) format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: block !important
}

@font-face {
    font-family: deck reg;
    src: url(fonts/DeckReg.eot);
    src: url(fonts/DeckReg.eot?#iefix) format('embedded-opentype'),url(fonts/DeckReg.woff) format('woff'),url(fonts/DeckReg.ttf) format('truetype'),url(fonts/DeckReg.svg#97073eb8cd68908aa550e05e5dd3c959) format('svg');
    font-style: normal;
    font-weight: 400;
    font-display: block !important
}

@font-face {
    font-family: deck bold;
    src: url(fonts/DeckBold.eot);
    src: url(fonts/DeckBold.eot?#iefix) format('embedded-opentype'),url(fonts/DeckBold.woff) format('woff'),url(fonts/DeckBold.ttf) format('truetype'),url(fonts/DeckBold.svg#627a08211e7c680a55e9388d99505af6) format('svg');
    font-style: normal;
    font-weight: 400;
    font-display: block !important
}

/*
		Usage: @include prefixer(border-radius, $radii, webkit ms spec);
	*/

/*-----------------------------------------------------------------------------
------------------2--------$NORMALISATION/RESET--------------------------------
-------------------------------------------------------------------------------*/
footer, header {
    display: block;
    background-color: #495740;
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    background-color: #495740;
}

html, button, input {
    font: normal 20px / 25px "Libre Baskerville", serif;
}

body {
    margin: 0;
    font-size: 14px !important;
    line-height: 1.4;
    min-width: 320px;
    background-color: #495740;
    padding: 0px;
    float: left;
    width: 100%;
    position: relative;
}

a {
    background: transparent;
    color: #00e;
}

    a:hover {
        color: #CDD531;
    }

    a:hover, a:active, a:focus {
        outline: 0;
    }

b {
    font-weight: bold;
}

ul {
    list-style: none;
    list-style-image: none;
    margin: 0;
    padding: 0;
}

img {
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}

form {
    margin: 0;
}

label {
    cursor: pointer;
}

button, input {
    font-size: 100%;
    margin: 0;
    vertical-align: baseline;
}

button {
    width: auto;
    overflow: visible;
}

button, input {
    line-height: normal;
}

button {
    cursor: pointer;
    -webkit-appearance: button;
}

    button::-moz-focus-inner, input::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/*  Blockquotes  */

/* #Clearing
================================================== */
/* Self Clearing Goodness */

/* Use clearfix class on parent to clear nested columns,
or wrap each row of columns in a <div class="row"> */

/* You can also use a <br class="clear" /> to clear columns */

/* #Images
================================================== */

/* #Site wide Box-Sizing
================================================== */
/**
    * Let’s make the box model all nice, shall we...?
    */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    /* #Global Font Optimisation
================================================== */
    /**
    * Let’s make those fonts render nicely in good browsers...?
    */
    *, *:before, *:after {
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
    }



@media screen and (max-width: 960px) {
    body {
        padding-top: 80px;
    }

    #hero_image {
        width: 100% !important;
    }
}

html {
    font-size: 62.5%;
    line-height: 62.5%;
}

body {
    font-family: "Libre Baskerville", serif;
    font-size: 20px;
    line-height: 25px;
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: normal;
    text-align: left;
}

/* Paragraph sizes */

li {
    font-family: "Libre Baskerville", serif;
    font-size: 20px;
    line-height: 25px;
    font-size: 2rem;
    line-height: 2.5rem;
}

    li.iti__country {
        font-size: 14px;
    }

.iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px;
    font-size: 14px;
}

a,
a:active {
    color: #2d2d2d;
    text-decoration: none;
}

/*a:hover {
        color: #ffffff;
        text-decoration: none;
    }*/

/*-----------------------------------------------------------------------------
-------------------------------HEADINGS----------------------------------------
-------------------------------------------------------------------------------*/

.t-heading-delta {
    position: relative;
    display: block;
    margin: 10px 0;
    color: #ffffff;
    font-size: 30px;
    line-height: 35px;
    font-family: "Libre Baskerville", serif;
    font-weight: bold;
}

/*============================
*	Layout
	Main layout elements of site - Header, sidebar footer etc but none of the reusable
	elements that are inside of these including headers, links etc. Make these in a
	more modular method.
*/
/* ======

Grid:

	- Container
	- Columns
	- Row
	- Flex

====== */
.l-container {
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
}

    .l-container:before, .l-container:after {
        content: " ";
        display: table;
    }

    .l-container:after {
        clear: both;
    }

.l-container {
    *zoom: 1;
}

.l-col {
    float: left;
}

.l-col--content {
    padding-left: 10px;
    padding-right: 10px;
}

.l-col--12 {
    width: 100%;
}

@media screen and (max-width: 725px) {
    .l-col--mq-tab-x-sml {
        position: relative;
        width: 100%;
        margin: 0 0 10px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.l-header {
    z-index: 16;
    width: 100%;
    padding: 20px 0;
    background: #fdf6ee;
    transition: all 1.2s cubic-bezier(0.665, 0, 0.43, 1);
}



.l-header {
    background-color: #fdf6ee;
}

.title_login {
    text-transform: uppercase;
    text-align: left;
}

.l-nav__link {
    font-family: "Libre Baskerville", serif;
    line-height: 20px;
    line-height: 2rem;
    color: #ffffff;
    font-weight: 700;
    transition: all 0.5s cubic-bezier(0.665, 0, 0.43, 1);
}



.l-footer {
    padding: 25px 0 20px;
    background: #495740;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
}

    .l-footer * {
        color: #ffffff;
    }

    .l-footer a:hover {
        color: white;
    }

@media screen and (max-width: 725px) {
    .l-footer {
        padding: 20px 0;
        text-align: center;
    }
}


.l-footer__nav__item {
    font-size: 20px;
    line-height: 15px;
    line-height: 1.8rem;
    margin-bottom: 10px;
    display: inline-block;
}

.l-footer__nav__link {
    font-size: 18px !important;
    line-height: 12px;
    font-size: 1.2rem;
    line-height: 1.2rem;
    font-family: "Libre Baskerville", serif;
    font-weight: 500;
    padding-left: 10px;
    padding-right: 10px;
}

@media screen and (max-width: 725px) {

    .l-footer__nav__link {
        font-size: 13px !important;
        line-height: 12px;
        line-height: 1.2rem;
        font-family: "Libre Baskerville", serif;
        text-transform: uppercase;
        font-weight: 400;
    }
}

/*============================
*	Modules
	this will be the core styles for the site. this should be as modular as possible
	but no state styles. These are for the next section.
*/

/*! Flickity v2.0.5
http://flickity.metafizzy.co
---------------------------------------------- */

/* draggable */

/* ---- previous/next buttons ---- */

/* right to left */

/* ---- page dots ---- */

/*============================
*	Modules
	this will be the core styles for the site. this should be as modular as possible
	but no state styles. These are for the next section.
*/
.c-btn {
    color: #000;
}

@media screen and (max-width: 725px) {
    .c-btn {
        float: none;
        margin: 0 auto;
    }
}

.c-btn--inline {
    float: none;
    display: inline-block;
}



/*.c-btn--orange {
    position: relative;
}

.c-btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 18px 27px;
    border: none;
    border-radius: 2px;
    font-family: conduit,Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 25px;
    text-align: center;
    background-color: #c81432;
    color: #fff;
    display: inline-block;
    transition: all ease .2s;
}

.c-btn--orange:hover:after {
    opacity: 0;
    content: '';
    position: absolute;
    top: 23px;
    right: 5px;
    width: 18px;
    height: 16px;
    background: url(/content/images/arrow-short--white.svg) center no-repeat;
    background-size: contain;
    transition: all ease .2s;
}

.c-btn--orange:hover {
    padding-left: 15px;
    padding-right: 39px;
}

.c-btn:hover {
    background: #e83e44;
}*/



.c-btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 15px 25px;
    border: 1px solid #CDD531;
    border-radius: 2px;
    font-family: 'Cardo',Georgia,Times New Roman,serif;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    display: inline-block;
    transition: all ease .2s;
}


.c-btn--orange {
    position: relative;
    background-color: #4a6145;
    color: #ffffff;
    border: 1px solid transparent;
    font-weight: bold;
}
    /*
    .c-btn--orange:after {
        opacity: 0;
        content: '';
        position: absolute;
        top: 23px;
        right: 5px;
        width: 18px;
        height: 16px;
        background: url('/content/images/arrow-short--white.svg') center no-repeat;
        background-size: contain;
        transition: all ease 200ms;
    }*/

    .c-btn--orange:hover {
        background: #ffffff;
        color: #344a7f !important;
        border: 1px solid #344a7f;
    }
/*
        .c-btn--orange:hover:after {
            opacity: 1;
            right: 12px;
        }*/



.c-btn--white {
    position: relative;
    background-color: white;
    color: #000;
}
    /*
    .c-btn--white:after {
        opacity: 0;
        content: '';
        position: absolute;
        top: 23px;
        right: 5px;
        width: 18px;
        height: 16px;
        background: url('/content/images/arrow-short--black.svg') center no-repeat;
        background-size: contain;
        transition: all ease 200ms;
    }*/

    .c-btn--white:hover {
        background-color: #f4f4f4;
    }

/*  .c-btn--white:hover:after {
            opacity: 1;
            right: 12px;
        }
*/



/*.c-btn--orange {
    font-family: conduit,Helvetica,Arial,sans-serif;
    background: #C52433;
    border: 2px solid #C52433;
    border-radius: 4px;
    padding: 19px 30px;
    font-size: 16px;
    line-height: 23px;
    display: inline-block;
    color: #FFFFFF;
}

    .c-btn--orange:hover {
        background: #E83E44;
        border: 2px solid #E83E44;
        color: #FFFFFF;
        opacity: 0;
        content: '';
        position: absolute;
        background: url(/content/images/arrow-short--white.svg) center no-repeat;
        background-size: contain;
        transition: all ease .2s;
    }




.c-btn--White {
    font-family: conduit,Helvetica,Arial,sans-serif;
    background: #FFFF;
    border: 2px solid #C52433;
    border-radius: 4px;
    padding: 19px 30px;
    font-size: 16px;
    line-height: 23px;
    display: inline-block;
    color: #C52433;
}

    .c-btn--White:hover {
        background: #FFFFFF;
        border: 2px solid #E83E44;
        color: #E83E44;
    }

*/


.c-btn--pushed {
    margin-top: 20px;
}

.c-logo {
    z-index: 10;
    margin: auto;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.665, 0, 0.43, 1);
}

/*.c-logo:hover {
        transform: scale(1.1);
    }*/


@media screen and (max-width: 960px) {
    .c-logo {
        top: 15px;
        left: 15px;
        width: auto;
    }

        .c-logo img {
            height: 100%;
        }
}


/*============================
* Utilities
*/
/*-----------------------------------------------------------------------------
-------------------------------HELPER/HELPERS----------------------------------
-------------------------------------------------------------------------------*/

/* Positioning */

.u-upper-shadow {
    box-shadow: inset 0 15px 40px -20px rgba(0, 0, 0, 0.5);
}

/*============================
*	Libraries
	CSS files for any external libraries like fancybox etc.
*/

/*# sourceMappingURL=maps/main.css.map */

/*Communication channel item */
.prefs_channel {
    color: #ffffff;
}

    .prefs_channel .item {
        border: 1px solid #ffffff;
        /* border-image-source: url(/content/images/border.png);*/
        padding: 25px;
        margin: 5px;
        position: relative;
        box-shadow: 0 1px 2px rgba(0,0,0,0.15);
        /* max-width: 390px;*/
        border-image-slice: 20;
        border-image-width: 20;
    }

        .prefs_channel .item:hover {
            border: 1px solid #fdf6ee;
            /* border-image-source: url(/content/images/border.png);*/
            /*background-color: rgba(0, 0, 0, .25);*/
            /* border-image-slice: 20;
        border-image-width: 20;*/
        }



.image_email {
    content: url('/content/images/opened-email-envelope.png');
    float: left;
}

.image_sms {
    content: url('/content/images/speech-bubble.png');
    float: left;
}

.image_mail {
    content: url('/content/images/mail_direct.png');
    float: left;
}

.image_phone {
    content: url('/content/images/phone-call.png');
    float: left;
}



.k-radio:checked + .k-radio-label:after {
    content: "";
    width: 12px !important;
    height: 12px !important;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

    [type="radio"]:checked + label,
    [type="radio"]:not(:checked) + label {
        position: relative;
        padding-left: 28px;
        cursor: pointer;
        line-height: 20px;
        display: inline-block;
        color: #ffffff;
        margin: 0 15px;
    }

        [type="radio"]:checked + label:before,
        [type="radio"]:not(:checked) + label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 18px;
            height: 18px;
            border: 1px solid #ffffff;
            border-radius: 100%;
            background: transparent;
            padding: 5px;
        }

.k-radio:checked + .k-radio-label:before {
    border-color: #ffffff !important;
}

[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #ffffff;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.title_email, #OptIn_Email, .title_sms, #OptIn_Mobile, .title_mail, #OptIn_Mail, .title_phone, #OptIn_Phone {
    text-align: center;
}



.form-control {
    font-size: 14px;
}

.rewardtable {
    width: 100%;
}

    .rewardtable tr:nth-child(even) {
        background-color: #efefef;
    }


    .rewardtable tr:nth-child(odd) {
        background-color: #fff9f4;
    }



.Box {
    background-color: #fdf6ee;
    color: #000000 !important;
    border-radius: 4px;
}


.Noodle {
    position: fixed;
    top: -50px;
    right: -280px;
    z-index: -99;
}

.Stars {
    position: fixed;
    top: -300px;
    left: -250px;
    z-index: -99;
}


.Village {
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: -99;
    max-width: 900px;
}

.Water {
    position: fixed;
    bottom: 60px;
    right: 0px;
    z-index: -99;
}




.Wheat {
    position: fixed;
    bottom: 60px;
    right: 0px;
    z-index: -99;
}


.ImperfectCup {
    position: fixed;
    bottom: 60px;
    right: 0px;
    z-index: -99;
}

.Bowl {
    position: fixed;
    bottom: 60px;
    right: 0px;
    z-index: -99;
}


@media screen and (max-width: 960px) {
    .Stars, .Noodle, .Water, .Wheat, .ImperfectCup, .Bowl {
        display: none;
    }

    .Village {
        position: inherit;
    }

    .LogoText {
        width: 250px !important;
        padding-left: 15px;
    }
}

@media only screen and (max-width: 600px) {
    #iframe_survey {
        width: 100% !important;
        max-width: 100% !important;
    }
}
/*
@media (max-width: 500px) {
    .iti__country-list {
        width: 332px !important;
    }
}

@media (max-width: 768px) {
    .iti__country-list {
        width: 585px !important;
    }
}*/

.club-signup__lottie-container-1 {
    top: -45%;
    left: -250px;
    width: 2193px;
    height: 2708px;
    position: fixed;
    opacity: 0.5;
}

.welcome_text,
welcome_text span {
    font-size: 20px;
    font-family: "Libre Baskerville", serif;
    color: #ffffff;
}

a.txt1 {
    font-size: 12px !important;
    color: white;
    font-family: 'Cardo',Georgia,Times New Roman,serif;
}

#PasswordRecoveryBox a#ForgetPasswordBtn:hover {
    color: #344a7f;
    text-decoration: underline;
}

.inputLogin {
    width: 100%;
    border: 1px solid rgba(134,133,121,.3);
    border-radius: 4px;
    outline: 0;
    padding: 11px 20px 11px;
    height: 60px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 16px;
    font-family: 'Cardo',Georgia,Times New Roman,serif;
    line-height: 20px;
    background: 0 0;
    color: #000000;
    border-color: #000000;
}

    .inputLogin::placeholder {
        color: #000000;
    }

.inputOthers {
    width: 100%;
    border: 1px solid #ffffff;
    border-radius: 4px;
    outline: 0;
    padding: 11px 20px 11px;
    height: 50px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 14px;
    font-family: 'Cardo', Georgia, Times New Roman, serif;
    line-height: 20px;
    background: 0 0;
    color: #ffffff;
    border-color: #ffffff;
}
    .inputOthers::placeholder{
        color:#ffffff;
    }



    .control-label {
        margin-bottom: 10px;
    }




input.input-validation-error,
textarea.input-validation-error,
select.input-validation-error {
    background: #FEF1EC;
    border: 1px solid #CD0A0A;
}

.HideFormError {
    display: none !important;
}

.prefs_channel, .rewards {
    font-size: 16px;
    font-family: "Libre Baskerville", serif;
}

.p-4.text-right.HideOnLogin {
    font-family: "Libre Baskerville", serif;
}

.l-footer .HideOnLogin {
    border-top: 1px solid #ffffff;
    padding-top: 25px;
}


#PasswordRecoveryBox div {
    font-family: "Libre Baskerville", serif;
    font-size: 13px !important;
}

.login_text {
    font-family: "Libre Baskerville", serif;
    line-height: 35px;
}

#MyDetailsForm .t-heading-delta,
#PasswordRecoveryBox .t-heading-delta {
    font-family: "Libre Baskerville", serif;
}

#PasswordRecoveryBox .t-heading-delta,
#PasswordRecoveryBox div {
    text-align: center;
}

.box {
    position: relative;
}

.ribbon {
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 1;
    overflow: hidden;
    width: 93px;
    height: 93px;
    text-align: right;
}

    .ribbon span {
        font-size: 12px;
        color: #fff;
        text-transform: uppercase;
        text-align: center;
        font-weight: bold;
        line-height: 32px;
        transform: rotate(45deg);
        width: 125px;
        display: block;
        background: #8f0808;
        position: absolute;
        top: 17px;
    }

        .ribbon span::before {
            content: '';
            position: absolute;
            left: 0px;
            top: 100%;
            z-index: -1;
            /*border-left: 3px solid #79A70A;
            border-right: 3px solid transparent;
            border-bottom: 3px solid transparent;
            border-top: 3px solid #79A70A;*/
        }

        .ribbon span::after {
            content: '';
            position: absolute;
            right: 0%;
            top: 100%;
            z-index: -1;
            /* border-right: 3px solid #79A70A;
            border-left: 3px solid transparent;
            border-bottom: 3px solid transparent;
            border-top: 3px solid #79A70A;*/
        }

.red span {
    background: #8f0808;
}

    .red span::before {
        border-left-color: #8f0808;
        border-top-color: #8f0808;
    }

    .red span::after {
        border-right-color: #8f0808;
        border-top-color: #8f0808;
    }


.bar {
    content: "";
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #79a70a;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #79a70a;
}

.baz {
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    line-height: 2em;
    transform: rotate(45deg);
    width: 100px;
    display: block;
    background: #79a70a;
    background: linear-gradient(#9bc90d 0%, #79a70a 100%);
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 100px;
    left: 1000px;
}

#SubmitConfirmationMessage {
    color: #a85f3d;
    text-align: center;
    font-family: "Libre Baskerville", serif;
    padding: 15px;
    font-weight: bold;
    font-size: 20px;
}

.iti.iti--container {
    width: auto;
}

.iti--separate-dial-code .iti__selected-dial-code {
    line-height: 18px;
}
/*.iti__flag-container {
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 0 6px 0 8px;*/
/* width: 23%; */
/*position: fixed !important;
    height: 50px !important;
    top: initial !important;
    left: initial !important;
    right: initial !important;
    bottom: initial !important;
}*/
.login_text {
    color: #000000;
}
#UpdateContactForm{
    width:90%;
    margin:auto;
}
img#hero_image {
    border: 5px solid #ffffffd9;
}

.box.card {
    background-color: #fdf6ee;
    color:#000000;
}

.modal-header {
    color: #344a7f;
}

select option {
    color: #344a7f;
    padding: 10px;
    font-size: 13px;
  
}

#contact_selectedSite {
    position: relative;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}
select option:hover, select option:focus {
    background: #CDD531 !important;
}


.password-container,
.password-container2 {
    position: relative;
    display: flex;
    align-items: center;
}

#togglePassword {
    position: absolute;
    right: 10px;
    cursor: pointer;
    color:#ffffff;
}

#togglePassword2 {
    position: absolute;
    right: 10px;
    cursor: pointer;
    color: #ffffff;
}




#newpassword:-webkit-autofill,
#newpassword:-webkit-autofill:hover,
#newpassword:-webkit-autofill:focus,
#newpassword:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
    transition: transparent 5000s ease-in-out 0s;
}
#confirmnewpassword:-webkit-autofill,
#confirmnewpassword:-webkit-autofill:hover,
#confirmnewpassword:-webkit-autofill:focus,
#confirmnewpassword:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
    transition: transparent 5000s ease-in-out 0s;
}
.error-message{
    color:red;
}

.datepicker-dropdown,
.datepicker {
    min-width: 320px !important;
}

.datepicker table {
    width: 100%;
}
.c-btn-color {
    background: #fdf6ee;
    color:#000000;
}