/**
 * #.# Styles
 *
 * CSS for both Frontend+Backend.
 */

.eb-pricetable{
  border: 1px solid #eee;
  padding: 15px;
  min-width: 200px;
  width:auto;
  max-width: 48%;
  height: auto;
  display: inline-block;
  margin: 0 10px 10px;
  position: relative;
  background: #fff;
  overflow: hidden;

  .eb-pricetable-ribbon{
     position: absolute;
     top: 0;
     right: -25px;
     width: 100px;
     height: 30px;
     -moz-transform: rotate(38deg);
     -webkit-transform: rotate(38deg);
     -o-transform: rotate(38deg);
     -ms-transform: rotate(38deg);
     transform: rotate(38deg);
     background: #00adff;
     color: #fff;
     z-index: 2;
     font-size: 14px;
     text-align: center;
     line-height: 30px;
     overflow: hidden;
  }

  .eb-pricetable-title{
     border-bottom: 1px solid #eee;
     text-align: center;
     padding: 10px;
  }

  .eb-pricetable-price{
      padding: 30px 0 20px;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .eb-pricetable-content{
      font-size: 16px;
      text-align: center;
      line-height: 1.5em;
      padding-bottom: 10px;
      color: #333;
  }
  
}

.eb-button{
     background: #000;
     color: #fff;
     padding: 4px 12px;
     min-width: 50px;
     font-size: 14px;
     text-align: center;
     text-decoration: none !important;
     cursor: pointer;
     transition: all 0.2s;
     -webkit-transition: all 0.2s;

     &:hover{
        transform: scale(0.9);
        transition: all 0.2s;
        -webkit-transition: all 0.2s;
     }
  }

  .eb-block-button{
     text-align: center;
     margin: 20px auto !important;

     &.round{
        .eb-button{
           border-radius: 50px;
        }
     }

     &.rounded{
        .eb-button{
           border-radius: 5px;
        }
     }
  }