/* Stacked Cards component css */
body {
    /* overflow-x: hidden;
    font-family: "Open Sans";
    font-size: 12px;
    background: #000;
    padding: 10%; */
  }
  
  .no-transition {
    -webkit-transition: none ! important;
    -o-transition: none ! important;
    transition: none ! important;
  }
  
  .stackedcards-overflow {
      overflow-y: hidden !important;
  }
  
  .stackedcards.init {
      opacity: 0;/* set the opacity to 0 if you want a fade-in effect to stacked cards on page load */
  }
  
  .stackedcards {
      position: relative;
  }
  
  .stackedcards * {
      -webkit-user-select: none;
              -moz-user-select: none;
               -ms-user-select: none;
           user-select: none;
  }
  
  .stackedcards--animatable {
      -webkit-transition: all 400ms ease;
              -o-transition: all 400ms ease;
              transition: all 400ms ease;
  }
  
  .stackedcards .stackedcards-container > *,
  .stackedcards-overlay {
      position: absolute;
      //width: 100%; /* set 100% */
      width: calc(100% - 35px);
      height: 300px; /* set 100% */
      will-change: transform, opacity;
      top: 0;
      border-radius: 10px;
  }
  
  .stackedcards-overlay.left > div,
  .stackedcards-overlay.right > div,
  .stackedcards-overlay.top > div {
      width: 100%;
      height: 100%;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
  }
  
  .stackedcards-overlay.left,
  .stackedcards-overlay.right,
  .stackedcards-overlay.top {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      left: 0;
      opacity: 0;
      top: 0;
      height: 100%;
      font-size: 24px; /* this style was added only for better preview */
      text-transform: uppercase; /* this style was added only for better preview */
      font-weight: 500; /* this style was added only for better preview */
      color: #fff; /* this style was added only for better preview */
  }
  
  .stackedcards-overlay.top {
      background: #E38568;
  }
  
  .stackedcards-overlay.right {
      background: #7BB3C5;
  }
  
  .stackedcards-overlay.left {
      background: #E58D93;
  }
  
  .stackedcards-overlay.left:empty,
  .stackedcards-overlay.right:empty,
  .stackedcards-overlay.top:empty {
    display: none !important;
  }
  
  .stackedcards-overlay-hidden {
      display: none;
  }
  
  .stackedcards-origin-bottom {
      -webkit-transform-origin: bottom;
              -ms-transform-origin: bottom;
          transform-origin: bottom;
  }
  
  .stackedcards-origin-top {
      -webkit-transform-origin: top;
              -ms-transform-origin: top;
          transform-origin: top;
  }
  
  .stackedcards-bottom,
  .stackedcards-top,
  .stackedcards-none {
      background: #fff; /* set card background background */
      height: 100%;
  }
  
  .stackedcards .stackedcards-container > :nth-child(1) {
      position: relative;
      display: block;
  }
  
  /* global actions buttons*/
  .global-actions {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      width: 100%;
      margin-top: 10px;
  }
  
  .top-action,
  .right-action,
  .left-action, .abutton {
      width: 100%;
      height: 50px;
      border-radius: 10px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      text-transform: uppercase;
      font-weight: 500;
      color: #fff;
  }
  
  .top-action {
      background: rgba(0,255,0,0.25);
      margin: 0 10px; 
  }
  
  .right-action { background: rgba(255,255,255,0.25); }
  .left-action { background: rgba(255,255,255,0.25); }
  
  /* elements on stacked cards */
  .card-item { background: #FFFFFF; }
  
  
  .card-item {
            background-color: #fff;
          width: 300px;
          box-shadow: 0 0 0px 1px rgba(0,0,0,0.25), 0 6px 5px 1px rgba(0,0,0,0.1);
          border-radius: 12px;
          padding: 20px;
          font-family: Helvetica;
          font-weight: 600;
          font-size: 1.8em;
          height: 400px;
          line-height: 1.5em;
          		text-align: left !important;
          color: #000;

        }
  