@charset "utf-8";
/* FRAMEWORK VARIABLES */
/* for futur IDE */
/* BUTTON */
/* CONTAINER */
/*
@axHeaderContainerBackgroundColor: #607d8b;
@axHeaderContainerBoxShadow: 0px 1px 3px 0px #333;
*/
/* MENU */
/* TOOLTIPS */
* {
  box-sizing: border-box;
}
html {
  -ms-touch-action: none;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
  font-family: 'Roboto', 'Arial', sans-serif;
  cursor: default;
  text-shadow: none;
  overflow-x: hidden;
  overflow-y: hidden;
}
body {
  position: fixed;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: hidden;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ios-scroll {
  -webkit-overflow-scrolling: touch;
}
.ax-badge-element {
  position: relative;
  visibility: hidden;
  color: #fff;
  background-color: #333;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
}
/* ata-count : avoid collision with 'number' */
.ax-badge-element::after {
  content: attr(data-count);
  position: absolute;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  visibility: inherit;
  color: inherit;
  background-color: inherit;
}
.ax-button-base {
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
.ax-button-element {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 4px;
  /*
    min-width: 36px;
    min-height: 36px;
    padding: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;

    color: @axButtonColor;
    background-color: @axButtonBackgroundColor;
    border-radius: @axButtonBorderRadius;
    box-shadow: @axButtonBoxShadow;
    */
}
.ax-button-label {
  text-align: center;
  vertical-align: middle;
}
.ax-button-icon {
  margin-top: auto;
  margin-bottom: auto;
}
.ax-button-icon-space-left {
  padding-right: 8px;
}
.ax-button-icon-space-right {
  padding-left: 8px;
}
.ax-button-icon-space-top {
  padding-bottom: 8px;
}
.ax-button-icon-space-bottom {
  padding-top: 8px;
}
.ax-catalog-page {
  position: absolute;
  width: 100%;
  height: 100%;
}
.ax-catalog-page-holder-image {
  position: absolute;
  width: 100%;
  height: 100%;
}
.ax-catalog-page-image {
  position: absolute;
  width: 100%;
  height: 100%;
}
.ax-catalog-page-holder-area {
  position: absolute;
  width: 100%;
  height: 100%;
}
.ax-catalog-page-part {
  position: absolute;
  width: 50%;
  height: 100%;
}
.ax-catalog-page-part-left {
  left: 0px;
}
.ax-catalog-page-part-right {
  right: 0px;
}
.ax-catalog-area-base {
  position: absolute;
}
.ax-viewcontainer-element {
  box-sizing: border-box;
}
.ax-viewcontainer-holder {
  position: relative;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  overflow-y: hidden;
}
.ax-view-element {
  position: absolute;
  width: 100%;
  height: 100%;
  visibility: hidden;
  display: none;
}
.ax-loader-layer {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  visibility: hidden;
}
.ax-loader-background {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background-color: #000;
  opacity: 0.5;
}
.ax-loader-holder {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
}
.ax-loader-holder-circle {
  border-radius: 50%;
}
.ax-loader-element {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
}
.ax-loader-element-circle-quarter {
  border-top: 4px solid #000;
  border-right: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;
  border-radius: 50%;
}
.ax-loader-element-circle-quarter-animation {
  animation: ax-anim-loader-circle-quarter 1.2s linear infinite;
}
/*
.ax-loader-element-circle-quarter::before
{
    content:'';
    position: absolute;
    box-sizing: border-box;
    top: -4px;
    left: -4px;
    width: 40px;
    height: 40px;
    
    border: 4px solid #000;
    border-radius: 50%;
    opacity: 0.5;
}
*/
@keyframes ax-anim-loader-circle-quarter {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.material-icons.md-18 {
  font-size: 18px;
}
.material-icons.md-24 {
  font-size: 24px;
}
.material-icons.md-36 {
  font-size: 36px;
}
.material-icons.md-48 {
  font-size: 48px;
}
.ax-menu-layer {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}
.ax-menu-element {
  position: absolute;
  visibility: hidden;
  max-width: 200px;
  height: auto;
  padding-top: 6px;
  padding-bottom: 6px;
  color: #666;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0px 0.5px 2px 0px #9b9b9b;
}
.ax-menu-item-element {
  min-height: 48px;
  padding: 14px;
  display: flex;
  cursor: pointer;
  color: #333;
  background-color: #fff;
}
.ax-menu-item-label {
  text-align: left;
  /* see if we variable it */
}
.ax-menu-item-icon {
  margin-top: auto;
  margin-bottom: auto;
}
.ax-menu-item-icon-space {
  padding-right: 10px;
}
.ax-menu-item-separator {
  min-height: 1px;
  max-height: 1px;
  background-color: #ccc;
}
.ax-popup-layer {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  visibility: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
  pointer-events: none;
}
.ax-popup-obfuscator {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background-color: #000;
  visibility: hidden;
  opacity: 0;
  pointer-events: all;
}
.ax-popup-element {
  position: absolute;
  visibility: hidden;
  transition-property: none;
  transition-duration: 0s;
  pointer-events: all;
}
.ax-popup-arrow {
  position: absolute;
  display: none;
}
/* arrow up */
.ax-popup-arrow-bottom {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}
/* arrow down */
.ax-popup-arrow-top {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
}
/* arrow left */
.ax-popup-arrow-right {
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  border-right: 10px solid #fff;
}
/* arrow right */
.ax-popup-arrow-left {
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  border-left: 10px solid #fff;
}
.ax-progress-element {
  box-sizing: border-box;
  padding: 0;
  /*overflow: hidden;*/
}
.ax-progress-bar {
  position: relative;
  height: 100%;
  box-sizing: border-box;
  transition-property: width;
  transition-duration: 800ms;
}
.ax-progress-indicator {
  position: relative;
  width: 32px;
  height: 32px;
  margin-left: -16px;
  transition-property: left;
  transition-duration: 800ms;
}
.ax-tooltip-layer {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}
.ax-tooltip-element {
  position: absolute;
  visibility: hidden;
  min-height: 10px;
  min-width: 10px;
  max-width: 180px;
  height: auto;
  padding: 12px;
  text-align: left;
  display: flex;
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
  background-color: #000000;
  border-radius: 2px;
}
.ax-tooltip-icon-space {
  padding-right: 10px;
}
.ax-tooltip-arrow {
  position: absolute;
  visibility: hidden;
}
/* arrow up */
.ax-tooltip-arrow-bottom {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #000000;
}
/* arrow down */
.ax-tooltip-arrow-top {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #000000;
}
/* arrow left */
.ax-tooltip-arrow-right {
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  border-right: 8px solid #000000;
}
/* arrow right */
.ax-tooltip-arrow-left {
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  border-left: 8px solid #000000;
}
html {
  font-family: 'Roboto', 'Arial', sans-serif;
}
.main {
  margin: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cora-logo {
  height: 24px;
  padding-left: 10px;
  padding-right: 10px;
}
.cora-header {
  position: absolute;
  width: 100%;
  height: 60px;
  background-color: #fff;
}
.cora-header-container {
  position: absolute;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cora-header-container-left {
  left: 0px;
}
.cora-header-container-right {
  visibility: visible;
  right: 0px;
}
.cora-header-separator {
  position: absolute;
  top: 60px;
  width: 100%;
  height: 1px;
  background-color: #dedede;
}
.cora-burger-button {
  visibility: hidden;
  position: absolute;
  right: 0px;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #197bbe;
  color: #fff;
}
.cora-header-button {
  display: flex;
  align-items: center;
  height: 60px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #197bbe;
  color: #fff;
  font-weight: 400;
}
.cora-header-button-bubble {
  background-color: #000;
  color: #fff;
  text-align: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-left: 6px;
  font-size: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cora-header-button-store {
  display: flex;
  align-items: center;
  height: 60px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  color: #999;
}
.cora-header-button-store-label {
  color: #999;
  padding-left: 6px;
  font-size: 12px;
}
.cora-header-button-search {
  display: flex;
  align-items: center;
  width: 60px;
  height: 60px;
  padding-left: 10px;
  padding-right: 10px;
  color: #197bbe;
  visibility: hidden;
}
.cora-openscreen {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
.cora-openscreen-title {
  padding: 20px;
  text-align: center;
  font-weight: 500;
  font-size: 28px;
  color: #197bbe;
}
.cora-openscreen-list {
  padding: 20px;
  font-size: 14px;
  flex-grow: 1;
}
.cora-openscreen-list-item {
  padding-bottom: 4px;
}
.cora-openscreen-legal {
  padding: 20px;
  color: #c00;
  font-weight: 500;
}
.cora-legal-layer {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  display: none;
}
.cora-legal-holder {
  position: absolute;
  width: 100%;
  background-color: #197bbe;
  bottom: 0px;
  box-shadow: 0px -2px 1px #ccc;
}
.cora-legal-close {
  position: absolute;
  top: 0px;
  right: 0px;
}
.cora-legal-title {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding-left: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 80px;
}
.cora-legal-text {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  padding-left: 30px;
  padding-right: 80px;
  padding-bottom: 30px;
  margin: 0;
}
.cora-legal-anchor {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  text-decoration: underline;
}
.cora-legal-anchor:visited {
  color: #fff;
}
/* CATALOGS CONTAINERS */
.cora-pages-container {
  position: absolute;
  top: 61px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: #efefef;
}
.cora-arrow {
  position: absolute;
  width: 48px;
  height: 100px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background-color: #197bbe;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cora-tools {
  position: absolute;
  width: auto;
  height: 36px;
  bottom: 0px;
  display: flex;
  flex-direction: row;
}
.cora-tools-left {
  left: 0px;
  justify-content: flex-start;
}
.cora-tools-right {
  right: 0px;
  justify-content: flex-end;
}
.cora-arrow-bottom {
  /*position: absolute;*/
  width: 36px;
  height: 36px;
  /*bottom: 0px;*/
  cursor: pointer;
  background-color: #197bbe;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cora-arrow-left {
  left: 0px;
}
.cora-arrow-right {
  right: 0px;
}
/* POPUS */
/* common */
.cora-popup-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 60px;
}
.cora-popup-header-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
}
.cora-popup-burger-header-title {
  flex-grow: 1;
}
.cora-popup-close {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #197bbe;
  width: 60px;
  height: 60px;
  cursor: pointer;
  color: #fff;
}
.cora-popup-header-separator {
  position: absolute;
  top: 60px;
  width: 100%;
  height: 1px;
  background-color: #dedede;
}
.cora-popup-main {
  position: absolute;
  top: 61px;
  width: 100%;
  bottom: 0px;
  overflow-y: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-top: 20px;
}
.cora-popup-stores-region {
  max-width: 300px;
  font-size: 14px;
  margin-left: 20px;
  margin-right: 20px;
}
.cora-popup-stores-region-title {
  color: #197bbe;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 6px;
}
.cora-popup-stores-region-store {
  color: #333;
  font-weight: 400;
  text-transform: uppercase;
  padding-top: 2px;
  padding-bottom: 4px;
  cursor: pointer;
}
/* BURGER */
.cora-popup-burger {
  position: absolute;
  width: 320px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}
.cora-popup-burger-header {
  color: #fff;
  font-weight: 400;
  background-color: #000000;
}
.cora-popup-burger-item {
  color: #fff;
  font-weight: 400;
  height: 48px;
  width: 100%;
  font-size: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cora-popup-burger-list {
  width: 100%;
}
.cora-popup-burger-item-icon {
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.cora-popup-burger-item-text {
  padding-left: 12px;
}
.cora-popup-stores {
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.cora-popup-page {
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.cora-popup-page-main {
  display: block;
  padding-top: 0px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.cora-popup-page-title {
  overflow: hidden;
}
.cora-popup-page-image {
  width: 100%;
  height: auto;
}
.cora-popup-card {
  width: 400px;
  height: 550px;
  background-color: #fff;
}
.cora-popup-card-main {
  display: block;
  padding-top: 0px;
}
.cora-popup-card-title {
  width: 280px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.cora-popup-card-image {
  width: 400px;
  height: 400px;
  padding: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fff;
}
.cora-popup-card-separator {
  width: 100%;
  height: 1px;
  background-color: #dedede;
}
.cora-popup-card-actions {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cora-popup-card-actions-cart {
  width: 200px;
  height: 40px;
  color: #fff;
  background-color: #197bbe;
}
.cora-popup-contents {
  width: 400px;
  height: 600px;
  background-color: #fff;
}
.cora-popup-contents-list {
  width: 100%;
  height: auto;
}
.cora-popup-contents-item {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
}
.cora-popup-thumbs {
  width: 80%;
  height: 80%;
  background-color: #fff;
}
.cora-popup-thumbs-main {
  justify-content: space-around;
}
.cora-popup-thumbs-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.cora-popup-thumbs-item-image {
  margin: 10px;
}
.cora-popup-thumbs-item-label {
  margin-bottom: 20px;
  text-align: center;
}
/* POPUP PRODUCTS */
.cora-popup-products {
  width: 80%;
  height: 80%;
  background-color: #fff;
}
.cora-popup-products-main {
  padding-top: 0px;
}
.cora-popup-products-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-wrap: wrap;
}
.cora-popup-product-item {
  margin: 10px;
  width: 200px;
  height: 310px;
  box-shadow: 0px 1px 3px #999;
}
.cora-popup-product-item-photo {
  width: 180px;
  height: 180px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 10px;
}
.cora-popup-product-item-name {
  font-weight: 400;
  color: #333;
  height: 52px;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 10px;
  padding-right: 10px;
}
.cora-popup-product-item-price {
  font-weight: 500;
  color: #c00;
  font-size: 14px;
  height: 20px;
  padding-left: 10px;
  padding-right: 10px;
}
.cora-popup-product-item-actions {
  width: 100%;
  height: 38px;
  background-color: #efefef;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
}
.cora-popup-product-item-button {
  width: 30px;
  height: 30px;
  color: #197bbe;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* POPUP CART */
.cora-popup-cart {
  width: 400px;
  height: 600px;
  background-color: #fff;
}
.cora-popup-cart-main {
  display: block;
  padding-top: 0px;
}
.cora-popup-cart-wrapper {
  position: absolute;
  width: 100%;
  /*
	height: 460px; //IMPORTANT KEEP
	*/
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
.cora-popup-cart-empty {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #efefef;
  padding: 40px;
}
.cora-popup-cart-holder {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cora-popup-cart-tools {
  position: absolute;
  width: 100%;
  height: 36px;
  bottom: 0px;
  background-color: #197bbe;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.cora-popup-cart-list {
  position: absolute;
  width: 100%;
  top: 0px;
  bottom: 36px;
}
.cora-popup-cart-item {
  width: 100%;
  height: 60px;
  border-bottom: 1px solid #dedede;
  overflow-x: hidden;
  overflow-y: hidden;
  display: flex;
  flex-direction: row;
}
.cora-popup-cart-item-photo {
  width: 50px;
  height: 50px;
  border: 0.6px solid #ccc;
  margin-left: 5px;
  align-self: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.cora-popup-cart-item-name {
  width: 280px;
  height: 100%;
  padding: 5px;
  margin-left: 5px;
  color: #333;
  font-size: 14px;
}
.cora-popup-cart-item-remove {
  width: 60px;
  height: 60px;
  background-color: #efefef;
  color: #197bbe;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.cora-popup-share {
  width: 400px;
  height: 280px;
  background-color: #fff;
}
.cora-popup-share-main {
  flex-direction: column;
}
.cora-popup-share-item {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.cora-popup-share-svg {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* PRINTERS */
.cora-printer-cart-header {
  width: 100%;
  height: 90px;
}
.cora-printer-cart-header-logo {
  position: absolute;
  left: 5px;
  top: 26px;
  height: 20px;
  width: auto;
}
.cora-printer-cart-header-holder {
  width: 100%;
  height: 90px;
  text-align: center;
}
.cora-printer-cart-header-title {
  font-weight: 500;
  font-size: 20px;
  padding-top: 20px;
}
.cora-printer-cart-item {
  width: 100%;
  height: 60px;
  border-bottom: 1px solid #000;
  overflow-x: hidden;
  overflow-y: hidden;
  display: flex;
  flex-direction: row;
}
.cora-printer-cart-item-photo {
  width: 50px;
  height: 50px;
  border: 1px solid #333;
  margin-left: 5px;
  align-self: center;
}
.cora-printer-cart-item-name {
  flex-grow: 1;
  /*width: 280px;*/
  height: 100%;
  padding: 5px;
  margin-left: 5px;
  color: #333;
  font-size: 14px;
}
.cora-printer-cart-item-check {
  width: 16px;
  height: 16px;
  border: 0.6px solid #000;
  align-self: center;
}
.cora-printer-cart-footer {
  width: 100%;
  height: auto;
}
.cora-printer-cart-footer-holder {
  width: 100%;
  height: auto;
}
.cora-printer-cart-footer-eurocora {
  margin-top: 10px;
  font-size: 9px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .cora-header-container-right {
    visibility: hidden;
  }
  .cora-burger-button {
    visibility: visible;
  }
}
@media screen and (orientation: portrait) {
  .cora-popup-contents {
    width: 100%;
    height: 100%;
  }
  .cora-popup-card {
    width: 100%;
    height: 100%;
  }
  .cora-popup-card-image {
    width: 100%;
  }
  .cora-popup-products {
    width: 100%;
    height: 100%;
  }
  .cora-popup-product-item {
    width: 160px;
    height: 270px;
  }
  .cora-popup-product-item-photo {
    width: 140px;
    height: 140px;
  }
  .cora-popup-thumbs {
    width: 100%;
    height: 100%;
  }
  .cora-popup-share {
    width: 100%;
    height: 100%;
  }
  .cora-popup-cart {
    width: 100%;
    height: 100%;
  }
  .cora-popup-cart-item-name {
    flex-grow: 1;
    width: auto;
  }
}
