/*STORE*/
body {
    min-height: 100vh;
    display: block;
    font-family: 'Open Sans', sans-serif;
    /* overflow: hidden; */
    background-color: #f5f5f5;
}

h2 {
    font-size: .9em;
    color: #999;
}

h3 {
    font-size: .8em;
    color: #AAA;
}
    h3 span {
        font-size: .75em;
        color: #AAA;
    }
    
m-body[data-label="Delivery Policy Detail Body"] p {
    font-size: .8em;
    line-height: 1.5em;
    margin: 1em 0 4em 0;
}

ul {
    margin-left: 2em;
    font-size: .8em;
}

m-body[data-label="Sub Manager Body"] h2 {
    color: #555;
}
m-menu h3,
m-body[data-label="Sub Manager Body"] h3 {
    font-size: .7em;
    color: #BBB;
}

.list m-card m-selected,
.icons m-card m-selected {
    position: absolute;
    z-index: 100;
    width: 20px;
    height: 20px;
    background-color: #00AEEF;
    color: #FFF;
    font-size: .75em;
    display: flex;
    align-items: center;
    justify-content: center;
}
    .icons m-card m-selected {
        top: -2px;
        left: -2px;
    }
    .list m-card m-selected {
        top: calc(50% - 10px);
        right: 25px;
    }

.thumbnails m-image {
    margin: .15em;
    font-size: .8em;
    align-items: center;
    justify-content: center;
    display: flex;
    position: relative;
}
    .thumbnails m-image:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transition: all .35s;
    }
    .thumbnails m-image:hover:after {
        background-color: rgba(255,255,255,.5);
    }
    .thumbnails m-image:hover {
        cursor: pointer;    
    }

 /**
 * The CSS shown here will not be introduced in the Quickstart guide, but shows
 * how you can use CSS to style your Element's container.
 */
.StripeElement {
  background-color: white;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}

.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}

#flxPaymentInformation {
    margin: 0 auto;
    max-width: 600px;
    /*min-height: 400px;*/
    justify-content: center;
    /*align-items: center;*/ 
}
    #flxPaymentInformation h1 {
        font-size: 1.25em;
        margin-bottom: .75em;
        color: #454545;
        font-weight: 400;
    }
    #flxPaymentInformation .lnk {
        font-size: .75em;
        color: #00AEEF;
        margin: .25em;
    }
        #flxPaymentInformation .lnk:hover {
            text-decoration: underline;
            cursor: pointer;
        }
        #flxPaymentInformation #card-errors {
            font-size: .8em;
            color: red;
        }

.companyImposes.icons m-card {
    width: 32.333333%;
    max-width: 32.333333%;
}

/*--creditCard-------------------------------------------------------------------------------*/
m-card.creditCard {
    padding: 1em 1em 1em 3em;
    min-width: 300px;
}
    m-card.creditCard.active {
        border: 1px solid #00AEEF;
    }
    m-card.creditCard > .sQ {
        position: absolute;
        top: 0;
        left: 0;
        background-color: #00AEEF;
        color: #FFF;
    }
    m-card.creditCard h1 {
        font-size: .8em;
        font-weight: 800;
    }
        m-card.creditCard h1:last-child {
            margin-bottom: 2em;
        }
    m-card.creditCard h2 {
        font-size: .65em;
        font-weight: 100;
    }
/*--creditCard-------------------------------------------------------------------------------*/

/*--submitSuccess-------------------------------------------------------------------------------*/
.submitSuccess h1 {
    font-size: 1.5em;
}
.submitSuccess p {
    color: #AAA;
    font-size: .8em;
    margin-bottom: 2em;
}
/*--submitSuccess-------------------------------------------------------------------------------*/

/*--M-LSTORDERITEMS-------------------------------------------------------------------------------*/
#lstOrderItem {

}
    #lstOrderItem m-card h2 {
        font-size: .8em;
        font-weight: 800;
    }
    #lstOrderItem m-card h2[data-type="price"] {
        font-weight: 400;
    }
    #lstOrderItem m-card h2[data-type="price"] {
        font-weight: 400;
    }
    
    #lstOrderItem .itemOptions m-input:last-child {
        margin-bottom: 0;
    }
    #lstOrderItem .btnEditTotalsOrderItem {
        transition: all .35s;
    }
        #lstOrderItem .btnEditTotalsOrderItem:hover {
            background-color: #00AEEF;
            color: #FFF;
        }
/*--M-LSTORDERITEMS-------------------------------------------------------------------------------*/

/*--M-TAB-------------------------------------------------------------------------------*/
.shipping m-card:hover {
    background-color: #EEE;
    cursor: pointer;
}
.shipping m-card.active h1,
.shipping m-card.active h2,
.shipping m-card.active h6 {
    color: #FFF;
}
.shipping m-card.active {
    background-color: #00AEEF;
    color: #FFF;
}
/*--M-UPDATE-------------------------------------------------------------------------------*/
    
/*--M-AGREE-------------------------------------------------------------------------------*/
m-agree {
    display: flex;
    flex-direction: column;
    justify-content: start;
    flex: 1;
    min-width: 40%;
    margin: 1em;
    padding: 1.5em;
    background-color: #FFF;
    min-height: 175px;
}
    m-agree h4 {
        font-size: .75em;
        width: 100%;
        flex: 2;
    }
    m-agree h3 {
        font-size: .75em;
        color: #AAA;
        width: 100%;
        flex: 2;
    }
    m-agree h2 {
        font-size: .7em;
    }
    m-agree h1 {
        font-size: .85em;
    }
        m-agree .title h1 {
            margin-bottom: 1em;
        }
        m-agree .title h2 {
            margin-bottom: .15em;
        }
    m-agree m-input {
        flex: 1;
    }
        m-agree m-input input[type="checkbox"] {
            margin: 0 1em 0 0;
        }
    m-agree p {
        font-size: .65em;
        color: #BBB;
        width: 100%;
        flex: 2;
    }
    m-agree p.remove {
        width: auto;
        flex: initial;
    }
/*--M-AGREE-------------------------------------------------------------------------------*/

/*--M-SUMMARY-------------------------------------------------------------------------------*/
m-summary {
    display: flex;
    flex-direction: column;
    right: 0;
    top: 200px;
    width: 200px;
    z-index: 999;
    position: fixed;
    background-color: #FFF;
    padding: 1em;
    border-top: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
    border-left: 1px solid #DDD;
}
    m-summary h1 {
        font-size: .8em;
        font-weight: 800;
        margin-bottom: .5em;
    }
    m-summary h2 {
        font-size: .75em;
        font-weight: 100;
        /* margin-bottom: .5em; */
    }
    m-summary p {
        font-size: .7em;
        font-weight: 100;
        margin-bottom: .5em;
        color: #AAA;
    }

    m-summary m-totals {
        border-top: 1px solid #AAA;
        border-bottom: 1px solid #AAA;
        padding: .5em 0 .25em 0;
        margin-bottom: .5em;
    }
    m-summary m-totals > m-flex {
        margin-bottom: .35em !important; 
    }
/*--M-SUMMARY-------------------------------------------------------------------------------*/

/*--M-NAVIGATION-------------------------------------------------------------------------------*/
m-navigation {
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    transform: translateY(0);
    /*-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);*/
    border-bottom: 1px solid #dcdee1;
    top: 0;
    left: 0;
    background-color: #FFF;
}
    
    m-navigation m-flex.sC {
        height: 50px;
        border-bottom: 2px solid transparent;
        transition: all .35s;
    }
    m-navigation m-flex.sC:hover,
    m-navigation m-flex.sC.active {
        border-bottom: 2px solid #00AEEF;
    }
    m-navigation span {
        color: #424242;
        font-size: .8em;
    }
    m-navigation h2 {
        color: #888;
        font-weight: 100;
        font-size: .7em;
    }
    m-navigation img {
        max-height: 50px;
    }
/*--M-NAVIGATION-------------------------------------------------------------------------------*/
m-body[data-label="Primary"] {
    padding-top: 50px;
}
m-body[data-label="Primary"].demo {
    padding-top: 100px;
}

m-demo {
    width: 100%;
    height: 50px;
    background-color: #00AEEF;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    position: fixed;
    z-index: 1;
    top: 50px;
}

m-drop {
    padding: .5em;
    min-height: 100px;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: transparent 3px dashed;
    transition: all .35s;
}

    m-drop.onDragOver {
        border: #00AEEF 3px dashed;
    }

/*m-modal {
    padding-top: 50px;
    min-width: 310px;
    max-width: 310px;
}
    m-modal m-body {
        padding: 110px 0 0 0;
    }*/

/*--M-MODULE-------------------------------------------------------------------------------*/
/*m-modal {
    box-shadow: none;
}*/
/*--M-MODULE-------------------------------------------------------------------------------*/








/*DOCUMENTATION*/
.label-required {
    color: hsla(359,75%,60%,1);
}

.label-all {
    display: inline;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.3px;
}

ul {
    display: block;
    list-style: none;
    padding-left: 3em;
    line-height: 1.5em;
    background: rgba(96,105,113,0.1);
    padding: 2em;
    border-radius: 3px;
    font-size: .8em;
    color: #555;
}

    ul li {
    }

        ul li b {
            font-weight: 800;
        }

.tableRow {
    margin: 0;
}

m-accordian.faq {
    background-color: #FFF;
    margin-top: .5em;
    margin-bottom: .5em;
}

    m-accordian.faq m-banner {
        padding: .5em;
    }

    m-accordian.faq .bW {
        background-color: #f8f8f8;
    }

m-body[data-label="Sub"] {
    height: calc(100vh - 50px);
    top: 0;
    left: 0;
    padding-top: 50px;
    padding-left: 300px;
    overflow: scroll;
}

/*--M-SUBNAVIGATION-------------------------------------*/
m-subnavigation {
    width: 300px;
    overflow: scroll;
    height: 100vh;
    padding: 50px 1em 4em 1em;
    display: block;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 10000;
    position: fixed;
    transform: translateY(0);
    border-right: 1px solid #dcdee1;
    top: 0;
    left: 0;
    background-color: #EEE;
}

    m-subnavigation h1 {
        font-size: .8em;
        font-weight: 800;
        text-transform: uppercase;
        display: block;
        margin-top: 3em;
    }

    m-subnavigation m-flex h2 {
        font-size: .75em;
        font-weight: 400;
        height: 35px;
        line-height: 35px;
        padding-left: 1em;
        color: #888;
    }

    m-subnavigation m-flex {
        margin: .25em 0;
        transition: all .35s;
    }

        m-subnavigation m-flex.active {
            border-left: 4px solid #00AEEF;
        }

        m-subnavigation m-flex:hover {
            background-color: #e4e4e4;
            cursor: pointer;
        }
/*--M-SUBNAVIGATION-------------------------------------*/

.method h1 {
    font-weight: 800;
    text-transform: uppercase;
}

.method h2 {
    font-size: .9em;
    color: #888;
}

.method h3 {
    font-size: .9em;
    color: #888;
    font-weight: 800;
}

.method h4 {
    font-size: .65em;
}

.method p {
    padding: .5em;
    font-size: .8em;
    line-height: 2em;
    color: #888;
}
