#orderlistitemskeleton, .orderlist__header {
    display: none;
}
.orderlist__qty {
    text-align: right;
}
.orderlist__amount {
    display: block;
}
.orderlist>li {
    margin: 0 0 .5rem;
    padding: .5rem;
    background-color: #fff;
}
.orderlist>li:nth-child(2n+2) {
    background-color: #fff;
}
.orderlist input {
    width: 70px;
    max-width: 70px;
    float: right;
    margin: .5rem 0 0;
}
.orderlist .delete {
    padding: .5rem 0 0;
}
.orderlist .delete:before {
    content: '';
    display: block;
    clear: both;
}
.orderlist .totalprice {
    margin: 1rem 0;
    font-weight: 700;
    display: block;
}
@media (min-width:520px) {
    .orderlist {
    display: table;
    width: 100%;
    margin-bottom: 0;
    border: solid #282830;
    border-width: 2px 0 0 2px;
}
.orderlist__header {
    display: table-row;
}
.orderlist__amount {
    display: none;
}
.orderlist>li {
    display: table-row;
}
.orderlist>li>span {
    display: table-cell;
    padding: 1rem .5rem;
    white-space: nowrap;
    vertical-align: top;
    border: solid #282830;
    border-width: 1px 1px 1px 1px;
}
.orderlist>li>span:first-child, .orderlist>li>span:last-child {
    padding: 1rem;
}
.orderlist>li>span .technicaltable {
    white-space: normal;
}
.orderlist input {
    float: none;
    margin: 0;
}
.orderlist .delete {
    padding: 0;
}
.orderlist .totalprice {
    margin: 0;
    font-weight: 400;
    display: table-cell;
}
}td, th {
    vertical-align: top;
}
.table-rwd {
    position: relative;
}
.table-rwd:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, .5)), to(#fff));
    background: linear-gradient(90deg, rgba(255, 255, 255, .5), #fff);
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}
.table-rwd:hover:after {
    opacity: 0;
}
.table-rwd__overflow {
    width: 100%;
    overflow-x: auto;
    margin: 0 0 1em;
}
.table-rwd__overflow::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
}
.table-rwd__overflow::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 3px solid #fff;
    background-color: rgba(0, 0, 0, .3);
}
.technicaltable {
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #999;
    width: 100%;
    margin: 0 0 1rem;
}
.orderlist .technicaltable {
    font-size: .8rem;
}
.technicaltable tr {
    border-bottom: 1px solid #999;
}
.technicaltable td {
    padding: .5rem 1rem;
}
.technicaltable td:first-child {
    background-color: #d4d4d4;
}
.notificationwrap {
    position: fixed;
    bottom: 2rem;
    right: 1rem;
}
.notification {
    background-color: rgba(212, 212, 212, .9);
    border-radius: 1rem;
    display: block;
    -webkit-animation: 3s ease-in-out forwards float-in;
    animation: 3s ease-in-out forwards float-in;
    max-width: 90vw;
    z-index: 1;
    margin: 0 0 1rem;
}
.notification--skeleton {
    display: none;
}
.notification__title {
    border-radius: 1rem 1rem 0 0;
    padding: 1rem;
    background-color: rgba(47, 47, 47, .9);
    margin: 0;
    color: #fff;
}
.notification__content {
    padding: 0 1rem .5rem;
}
.alert {
    background-color: #5faf21;
    color: #fff;
}
.alert>span {
    padding: 1rem;
    display: block;
}
@-webkit-keyframes hideElement {
    0% {
    opacity: 0;
}
100% {
    opacity: 1;
}
}@keyframes hideElement {
    0% {
    opacity: 0;
}
100% {
    opacity: 1;
}
}@-webkit-keyframes setnewheight {
    0% {
    max-height: 10000px;
}
100% {
    max-height: 0;
}
}@keyframes setnewheight {
    0% {
    max-height: 10000px;
}
100% {
    max-height: 0;
}
}.hideaftersubmit {
    -webkit-animation: .7s hideElement;
    animation: .7s hideElement;
}
.hideaftersubmit--success {
    -webkit-animation: 2.5s setnewheight;
    animation: 2.5s setnewheight;
    max-height: 0;
    overflow: hidden;
}
.shoplist__item {
    text-align: center;
    padding: 0 1rem 1rem;
    margin: 0 0 1rem;
    -webkit-transition: -webkit-box-shadow .5s cubic-bezier(.215, .61, .355, 1);
    transition: -webkit-box-shadow .5s cubic-bezier(.215, .61, .355, 1);
    transition: box-shadow .5s cubic-bezier(.215, .61, .355, 1);
    transition: box-shadow .5s cubic-bezier(.215, .61, .355, 1), -webkit-box-shadow .5s cubic-bezier(.215, .61, .355, 1);
}
.shoplist__item--disable {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.shoplist__item:hover {
    -webkit-box-shadow: 0 20px 60px -40px rgba(0, 0, 0, .6);
    box-shadow: 0 20px 60px -40px rgba(0, 0, 0, .6);
    z-index: 1;
}
.shoplist__price {
    font-weight: 700;
    font-size: 1.3rem;
}
.shoplist__data {
    font-weight: 400;
    font-size: .8rem;
}
.shoplist__detaillink {
    display: block;
    position: relative;
}
.shoplist__detaillink:hover {
    text-decoration: none;
}
.shoplist__detaillink:hover:before {
    opacity: 1;
}
.shoplist__detaillink:before {
    -webkit-transition: all .5s;
    transition: all .5s;
    content: attr(data-linktitle);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #e7e7e7;
    padding: .5rem 1rem;
    border-radius: 5px;
    opacity: 0;
}
.summline {
    text-align: right;
    padding: 1rem;
    background-color: ghostwhite;
}
.tax {
    font-size: .9rem;
}
.allsum {
    font-weight: 700;
    padding: .4rem 0 0;
    display: inline-block;
}
.singleprice, .totalprice {
    text-align: right;
}
.delete {
  display: inline-block;
  border-radius: 4px;
  background-color: #f4511e;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 24px;
  padding: 20px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.delete span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.delete span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.delete:hover span {
  padding-right: 25px;
}

.delete:hover span:after {
  opacity: 1;
  right: 0;
}
@media (max-width:768px) {
    .singleprice {
    display: none!important;
}
}@media (min-width:520px) {
    .shoplist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.shoplist:after {
    content: '';
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
}
.shoplist__item {
    width: 50%}
}@media (min-width:768px) {
    .shoplist__item {
    width: 33.33%}
}@media (min-width:1024px) {
    .shoplist__item {
    width: 25%}
}.shop__ordersection {
    border-top: 2px solid currentColor;
    padding: 0 1rem;
    text-align: right;
}
.shop__amount {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.shop__amount label {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-right: 1rem;
}
.shop__amount .selectfield {
    width: 100px;
}
.shop__buttonsection {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (min-width:520px) {
    .shop__detailcolumn {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 0 .5rem 2rem;
}
.shop__buttonsection {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.shop__buttonsection .btn, .shop__buttonsection span {
    min-width: 51%}
}@media (min-width:768px) {
    .shop__buttonsection {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.shop__buttonsection .btn {
    min-width: 0;
}

}.col {
    margin-bottom: 2rem;
}
.col:last-child {
    margin-bottom: 0;
}
@media (min-width:520px) {
    .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    margin: 0 .5rem 2rem;
}
}@media (min-width:1100px) {
    .row--tablet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.col {
    margin-left: 1rem;
    margin-right: 1rem;
}
.row--1-2 .col:first-child {
    max-width: 33%}
.row--1-2 .col:last-child, .row--2-1 .col:first-child {
    max-width: 67%}
.row--2-1 .col:last-child {
    max-width: 33%}
}