.shopping-cart-indicator div.item-cart-wrap {
  position:static;
  border-radius: 12px;
  font-size: 25px;
  line-height: 1.5;
}
.shopping-cart-indicator{
  margin: 10px;
}
div.item-cart-wrap {
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: #38A764;
  padding: 5px 10px;
  border-top-left-radius: 12px;
  color: antiquewhite;
  z-index: 111;
}
span.special-icon {
    max-width: 50px;
    display: inline-block;
    margin: 5px 0px 5px 10px;
}
div.item-cart-wrap a{
  color: antiquewhite;
}
.shopping-cart table {
  min-width: 100%;
}
.item-list textarea {
    background: white;
    border: 1px solid darkgrey;
    padding: 10px!important;
    resize: none!important;
    height: auto!important;
    box-sizing: border-box;
    overflow: hidden;
}
.order-item .name {
    font-size: 25px;
    line-height: 1;
    clear: both;
}

form.order-item {
    margin: 10px 5px;
    width: 100%;
    max-width: 100%;
    text-align: center;
    display: inline-block;
    background: #f8f8f8;
    padding: 10px;
    box-sizing: border-box;
}

form.order-item > div {
    margin-bottom: 10px;
}

.order-item .image {
    cursor: pointer;
    max-width:300px;
    float: right;
    border: 10px solid transparent;
    box-shadow: 0px 0px 0px 1px rgba(128, 128, 128, 0.32);
}
.image-full {
    position: fixed;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    opacity: 0;
    transition: all .75s;
    background: #f8f8f8;
    z-index: 10000;
    text-align: center;
    cursor: pointer;
}
.item-list textarea{
  pointer-events: none; 
}

.image-full.show {
    width: 90vw;
    height: 90vh;
    opacity: 1;
    box-shadow: 1px 2px 10px grey;
}

.image-full img {
    max-height: 90%;
    height: 90%;
}
.image-full span {
    display: block;
}
.image-full > div {
    width: 90%;
    height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.ez-message{
  position: fixed;
  z-index: 100000;
  top:0;
  left:calc(50% - 175px);
  width:250px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.31);
  padding:10px;
  text-align: center;
  background: #38A764;
  color: antiquewhite;
}
