/* SHOPPINGCART */
.containerShoppingcart {
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-areas: "titleOfDayHeader titleOfDayHeader titleOfDayHeader titleOfDayHeader totalPriceHeader totalPriceHeader totalPriceHeader"
  "titleAmount titleActivityEvent titleType titleTime titlePrice titleTotalPrice buttonRemove";
    grid-template-columns: 8% auto 10% 10% 10% 10% 10%;
    grid-template-rows: auto auto;
}

.container > section {
    border: 1px dashed #888;
}

.titleOfDayHeader {
    grid-area: titleOfDayHeader;
}

.totalPriceHeader {
    grid-area: totalPriceHeader;
}

.titleAmount {
    grid-area: titleAmount;
}

.titleActivityEvent {
    grid-area: titleActivityEvent;
}

.titleType {
    grid-area: titleType;
}

.titleTime {
    grid-area: titleTime;
}

.titlePrice {
    grid-area: titlePrice;
}

.titleTotalPrice {
    grid-area: titleTotalPrice;
}

.buttonRemove {
    grid-area: buttonRemove;
}

#btnSubmitEdit {
    visibility: hidden
}

.payOrder {
    display: table !important;
    margin: 0 auto !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
}

h2 {
    font-size: 1.2em;
    color: #606060;
}

h3 {
    font-size: 1.1em;
    color: #404040;
}

h2, h3 {
    font-family: Arial;
}


.labelOfDay {
    display: inline;
}

.labelTotalOfDay {
    float: right;
}

.btnRemove {
    border: none;
    background-color: transparent;
    outline: none;
    float: right;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0px;
    border-top: 3px solid #eee;
}

hr {
    height: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.btnRemoveIMG {
    height: 2em;
    width: auto;
}

/* OVERALL */

body {
    background: #FD6A02;
}

#sharebutton {
    background-color: #D8D8D8;
    color: #000000;
    border: none;
    border-radius: 6px;
}

.example::-webkit-scrollbar {
    display: none;
}

.contentShoppingcart {
    background: #FAFAFA;
    /*border: 3px solid green;*/
    padding-left: 1%;
    padding-right: 1%;
    margin-right: 5%;
    margin-left: 5%;
    margin-top: 0px;
    margin-bottom: 0px;
    min-height: 100vh;
}

.contentAccount {
    margin-left: 5%;
    margin-right: 5%;
}

.step, .stepNext {
    background-color: #FD6A02;
    border: none;
    color: white;
    padding: 8px 8px 8px 8px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 0px 0px;
    border-radius: 8px;
}

.stepNext {
    margin: 10px 0px;
}

#shareButtonBox,
.step {
    text-align: center;
}

.labelInputField {
    font-size: 1em;
    font-weight: normal;
    margin-bottom: 0px;
}

/* PAY */
#paybox {
    background-color: #B0B0B0;
    border: none;
    padding: 8px 8px 8px 8px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 0px 0px;
    border-radius: 8px 8px 0px 0px;
    width: 30%;
}

#payButton {
    width: 30%;
}

tr, td {
    font-family: Arial;
}

