/*!
 * pricing.css (https://github.com/abhimaliyeckal)
 * Version: 1.0
 * Author: Abhishek Raj 
 * Linkedin URL: https://in.linkedin.com/in/abhimaliyeckal
 * Github: https://github.com/abhimaliyeckal

 * Made available under a MIT License:
 * http://www.opensource.org/licenses/mit-license.php

 * pricing.css Copyright Abhishek Raj 2014.
 * http://bootsnipp.com/snippets/z1EBX
 */

/*@import url(http://fonts.googleapis.com/css?family=Open+Sans:300); */
body{
    background:#010101;
}

#pricing{
  margin-bottom:60px;
}

.float-shadow{
  box-shadow: inset 0px 0px 9px 3px #937575;
  border-radius: 4px;
}

.float-shadow-preferred{
  box-shadow: 3px -2px 20px 3px grey;
  border-radius: 4px;
}

.price_table_container{
  text-align:center;
  color:#494343;
  margin-top: 12px;
  font-family: 'Open Sans', sans-serif;
  padding-bottom: 8px;
  font-size: 12px;
  max-width:400px;
  
}

.price_table_container.preferred{
  text-align:center;
  color:#666;
  margin-top:35px;
  font-family: 'Open Sans', sans-serif;

  padding-bottom:16px;
  /*padding-top: 16px;*/
}

.price_table_heading{
  font-family:  'Rock Salt', cursive;
  font-size:36px;
  padding:10px;
  /*background:#EEE;*/

/*  text-shadow: 2px 2px 3px #d8c8ab;*/
}
.price_table_row {
    padding:15px;
    padding-left: 5px;
    padding-right: 5px;
    /*background: #FFF;*/
    border-radius: 4px;
    font-weight: bold;
    position: relative; /*anders span niet absoluut te positioneren tov deze div*/
}
.cost{
    /*line-height:16px;*/
    padding: 15px;
    font-size: 28px;
    text-shadow: 2px 2px 2px #615d5d;
}
.cost span{
  font-size:15px;
}
span.subcost {
    font-size: 12px;
    color: #983232;
    position: absolute;
    left: 15%;
    bottom: 5px;
    text-shadow: none;
}



.single_colored{
    background: #f6d5a7;
}

.multi_colored{
    background: #eecfc5 ;
}


.free_colored{
    background: #f2e5d3;
}

.btn{
  border-radius:0px;
}

.recommended{
/*USER DEFINED COLOUR*/ 
    background:#FF3A3A; 
    color:#FFF;
    /*USER DEFINED COLOUR*/ 
    padding:3px 0 3px 0;
    margin-top:10px;  
    text-align:center;
    margin-bottom:-35px;
    font-family: 'Open Sans', sans-serif;
}

/*http://codepen.io/mehmetmert/pen/ByVVoN*/
.slogan_band{
    display: block;
    position: absolute;
    box-shadow: 1px 1px 8px 2px rgba(0,0,0,0.75);
    padding-left: 14px;
    padding-right: 9px;
    color: white;
    background: #1d861d;
}
.slogan_band.top{
    
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
    top: 21px;
    right: -14px;
    border-top-right-radius: 24px;
    border-top-left-radius: 24px;
}
.slogan_band.bottom{
    -webkit-transform: rotate(-40deg);
    -ms-transform: rotate(-40deg);
    transform: rotate(-40deg);
    bottom: 19px;
    right: -16px;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 28px;
}


.spacer{width:100%;height:50px;}


/*Already Defined Colours*/
/*Background*/
.primary-bg, .btn-primary{background:#bba483;color:#FFF;}
.success-bg, .btn-success{background:#e04827;color:#FFF;}
.warning-bg{background:#F0AD4E;color:#FFF;}



/*Only Text Colours*/
.primary-text{background:#FFF;color:#bba483;}
.success-text{background:#FFF;color:#e04827;}
.warning-text{background:#FFF;color:#F0AD4E;}

a.to-pricing{
  font-family: 'Rock Salt', cursive;
  color: #443131;
  text-decoration: underline;
  font-weight: bold;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  display: block;
  width: 100%;

}

.to-pricing:hover{
  color:white;
}

.to-pricing.free{
    background:#bba483;
}
.to-pricing.single{
  background:#F0AD4E
}
.to-pricing.multi{
  background:#e04827
}

/*https://davidwalsh.name/css-flip*/
.flip-container {
  perspective: 800px;

}
/* flip the pane when hovered */
.flip-container:hover .flipper, .flip-container.hover .flipper {
  transform: rotateX(180deg);
}

.flip-container, .front, .back {
  width: 100%;
  min-height: 48px
}

.flip-container .flipper {
  transform-origin: 100% 24px; /* half of height */
}
/* flip speed goes here */
.flipper {
  transition: 0.4s;
  transition-delay: 0.1s;
  transform-style: preserve-3d;
  position: relative;
}

/* hide back of pane during swap */
.front, .back {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  min-height: 13px;
  top: 0;
  left: 0;
}

/* front pane, placed above back */
.front {
  z-index: 2;
  /* for firefox 31 */
  transform: rotateX(0deg);
  
}

/* back, initially hidden pane */
.back {
  transform: rotateX(180deg);
  background: #f1e7e7;
  font-size: 12px;
  font-weight: normal;
  font-style: italic;
  border: 1px solid #b3a8a8;
  min-height: 48px;
  line-height: 14px;
  padding-top: 8px;
  padding-bottom: 8px;
}


/*
@media (max-width:1200px){
  #pricing{
    width: 600px;
    margin:auto;
    margin-bottom: 60px;
  }
  .price-col{
    max-width:350px;

  }


}
@media (max-width:770px){
  .price-col{
    max-width:350px;
    float:none;
    margin: auto;
  }


}*/
