﻿/*************************************************************/
/* SECTION TITLE                                             */
/*************************************************************/

.sectionTitle {
    display: inline-block;
    width: 100%;
    padding-bottom: 10px;
}

    .sectionTitle h3 {
        color: #5A5B5D;
    }

    .sectionTitle .icon {
        padding: 0px;
        height: 24px;
        width: 24px;
        stroke-width: 3px;
        vertical-align: middle;
    }

    .sectionTitle .contextHelp .modal .modalContent .sectionModalContent{
        max-height: 600px;
        overflow-y: auto;
    }

    .sectionTitle .contextHelp .modal .modalContent .sectionModalContent p {
        font-weight: 400;
        font-size: 16px;
    }

    /*************************************************************/
    /* SECTION LABEL                                             */
    /*************************************************************/
    .sectionLabel {
        font-size: 20px;
        font-weight: 600;
        color: #959596;
        display: inline-block;
        width: 100%;
    }

    .sectionLabel .description {
        display: block;
        float: left;
        width: 240px;
    }

    .sectionLabel .action {
        display: block;
        float: left;
    }



/*************************************************************/
/* CONTEXT HELP                                              */
/*************************************************************/

.contextHelp {
    display: inline-block;    
    margin: 0 auto;
    width: 100%;
    height: 52px;
    overflow: hidden;
}

    .contextHelp.fill {
        width: 100%;
    }

    .contextHelp .payload {
        display: inline-block;
        padding-right: 15px;
    }

    .contextHelp .payload.fill {
        width: calc(100% - 50px);
    }


    .contextHelp .icon {
        cursor: pointer;
        display: inline-block;
        vertical-align: text-bottom;        
        width: 30px;
    }

    .contextHelp .icon.disabled {
        cursor: wait;
    }

/*************************************************************/
/* ALERT                                                     */
/*************************************************************/

.alert {
    color: #fff;
    display: inline-block;
    width: 100%;    
    margin: 30px 0px 30px 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

    .alert.success {
        background: #619B2D;
    }

    .alert.warn {
        background: #F47745;
    }

    .alert.error {
        background: #BB1128;
    }

    .alert.info {
        background: #00B3E8;
    }

    .alert .alert-content {
        margin: 20px;
    }

    /*************************************************************/
    /* MONEY                                                     */
    /*************************************************************/
    .money {
        display: inline-block;
    }

    .money .currency {
        color: #C1C1C1
    }

    .money .amount {
        width: 100px;
        text-align: right;
        display: inline-block;
        margin-left: 5px;
    }


/*************************************************************/
/* LINKS WITH ICONS                                          */
/*************************************************************/

.iconLink {
    font-size: 16px;
    font-weight: 400;
    color: #00B3E8;
    cursor: pointer;
}

    .iconLink .icon {
        padding-right: 10px;
        stroke-width: 2px;
    }

    .iconLink a {
        font-weight: 400;
        color: #00B3E8;
        text-decoration: none;
    }

    .iconLink.warn {
        color: #F47745;
    }

    .iconLink.error {
        color: #BB1128;
    }


    .iconLink .safety {
        display: block;
        position: absolute;
        z-index: 20000;
        padding: 10px;
        margin: -20px 0px 0px -20px;        
    }

    .iconLink .popover {
        position: relative;
        margin: 15px 0px 0px 25px;
        padding: 10px;
        background: #fff;
        border: 1px solid #aaa;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
    }

/*************************************************************/
/* SKU EDITOR                                                */
/*************************************************************/
.skus {
}
    .skus table th .contextHelp {
        width: unset;
        height: auto;
    }

    .skus table th .contextHelp .icon {
        vertical-align: middle;
    }


    .skus table th.description,
    .skus table td.description {
        padding-left: 0px;
        text-align: left;
    }

    .skus table th.unitPrice,
    .skus table td.unitPrice {
        width: 200px;
        font-size: 20px;
        text-align: right;
    }

    .skus table th.quantity {
        font-size: 20px;
        width: 160px;
        text-align: center;
    }

    .skus table td.quantity {
        font-size: 20px;
        width: 150px;
        text-align: center;
    }

    .skus table th.totalPrice,
    .skus table td.totalPrice {
        width: 200px;
        font-size: 20px;
        text-align: right;
        padding-right: 0px;
    }

    .skus table th.totals,
    .skus table tr.totals {
        font-weight: 600;
        font-size: 24px;
        color: #5A5B5D;
    }

    .skus.grandTotal {
        margin-bottom: 30px;
    }

        .skus.grandTotal .name {
            width: 150px;
            text-align: left;
        }

/*************************************************************/
/* SIDE LABEL                                                */
/*************************************************************/

.sidelabel {
    background: #00B3E8;
    color: #fff;
    position: fixed;
    right: 0px;
    bottom: 150px;
    padding: 20px;
    opacity: 0.85;
    -webkit-box-shadow: -6px 6px 7px -1px #000000;
    box-shadow: -6px 6px 7px -1px #000000;
    cursor: pointer;
}


/*************************************************************/
/* MEDIA QUIERIES                                            */
/*************************************************************/

@media (max-width: 320px) {
}

@media (max-width: 640px) {

    .sectionLabel .description {
        width: 100%;
    }

    .skus table th .contextHelp {
        display: none;
    }

    .skus table th.description,
    .skus table td.description {
        font-size: 12px;
    }

    .skus table th.unitPrice,
    .skus table td.unitPrice {
        display: none;
    }

    .skus table th.quantity,
    .skus table td.quantity {
        width: 100px;
        font-size: 12px;
    }

    .skus table th.totalPrice,
    .skus table td.totalPrice {
        width: 100px;
        font-size: 12px;
    }

    .skus table th.totals,
    .skus table tr.totals {
        font-size: 12px;
    }

    .skus.grandTotal .name,
    .skus.grandTotal .totalPrice {
        font-size: 12px;
        width: 100px;
    }
}

@media (max-width: 1024px) {

    .money .currency {
        display: none;
    }

    .money .amount {
        width: unset;
        margin-left: 0px;
    }

}
