/*!
Plugin Name: Tipi Components
Plugin URI: https://github.com/codetipi/tipi-components
Description: Collection of goodies from the tipi
Version: 1.0
Author: Codetipi
Author URI: http://www.codetipi.com
Text Domain: tipi-components
*/
/*------------------------------------------------------------------
[Table of contents]
	1. Columns
	2. Buttons
	3. Divider
	4. Dropcap

[Responsive: @media min-width: 768px]
	1. Columns

[Responsive: @media min-width: 1020px]
	1. Columns

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[1. Columns]
*/
.tipi-cf:before,
.tipi-cf:after {
  content: "";
  display: table;
}

.tipi-cf:after {
  clear: both;
}

/* IE 6 & 7 */
.tipi-cf {
  zoom: 1;
}

.tipi-col {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  float: left;
  margin-bottom: 20px;
}

.tipi-col-first {
  padding-left: 0;
}

.tipi-col-last {
  padding-right: 0;
}

.tipi-xs-1 {
  width: 8.333333333333333%;
}

.tipi-xs-2 {
  width: 16.66666666666667%;
}

.tipi-xs-3 {
  width: 25%;
}

.tipi-xs-4 {
  width: 33.33333333333333%;
}

.tipi-xs-5 {
  width: 41.66666666666667%;
}

.tipi-xs-6 {
  width: 50%;
}

.tipi-xs-7 {
  width: 58.33333333333333%;
}

.tipi-xs-8 {
  width: 66.66666666666667%;
}

.tipi-xs-9 {
  width: 75%;
}

.tipi-xs-10 {
  width: 83.33333333333333%;
}

.tipi-xs-11 {
  width: 91.66666666666667%;
}

.tipi-xs-12 {
  width: 100%;
}

/*------------------------------------------------------------------
[2. Buttons]
*/
.tipi-component-button {
  display: block;
}

.tipi-component-button a {
  display: inline-block;
  text-decoration: none;
  box-shadow: none !important;
  color: #fff;
  padding: 10px 15px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  border-radius: 4px;
}

.tipi-button-size-big a {
  padding: 20px 30px;
  font-size: 1.1em;
}

.tipi-button-alignment-center {
  text-align: center;
}

.tipi-button-style-outline a {
  border: 1px solid transparent;
  color: #111;
}

.tipi-component-hover-1 a:hover {
  border-color: #111 !important;
  color: #fff;
  background-color: #111 !important;
}

/*------------------------------------------------------------------
[3. Divider]
*/
.tipi-component-divider {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}

.tipi-component-divider:before {
  content: '';
  width: 100%;
  border-top: 1px solid #000;
  display: block;
  position: absolute;
  top: 50%;
}

.tipi-component-divider span {
  background-color: #fff;
  display: inline-block;
  z-index: 2;
  position: relative;
  padding: 0 20px;
}

.tipi-divider-style-dotted:before {
  border-top-style: dotted;
}

.tipi-divider-style-thick:before {
  border-bottom: 2px solid #000;
  border-top-width: 2px;
}

.tipi-divider-style-double:before {
  border-top: 2px solid #000;
  top: calc( 50% - 2px);
}

.tipi-divider-style-double:after {
  content: '';
  width: 100%;
  display: block;
  position: absolute;
  top: calc( 50% + 2px);
  border-bottom-width: 2px;
  border-top: 2px solid #000;
}

/*------------------------------------------------------------------
[4. Dropcap]
*/
.tipi-component-dropcap {
  float: left;
  font-size: 3.5em;
  line-height: 1;
  font-weight: bold;
  padding-right: 15px;
}

.tipi-dropcap-style-extrabig {
  font-size: 7em;
}

@media only screen and (min-width: 768px) {
  /*------------------------------------------------------------------
[1. Columns 768]
*/
  .tipi-m-0 {
    display: none;
  }
  .tipi-m-1 {
    width: 8.333333333333333%;
  }
  .tipi-m-2 {
    width: 16.66666666666667%;
  }
  .tipi-m-3 {
    width: 25%;
  }
  .tipi-m-4 {
    width: 33.33333333333333%;
  }
  .tipi-m-5 {
    width: 41.66666666666667%;
  }
  .tipi-m-6 {
    width: 50%;
  }
  .tipi-m-7 {
    width: 58.33333333333333%;
  }
  .tipi-m-8 {
    width: 66.66666666666667%;
  }
  .tipi-m-9 {
    width: 75%;
  }
  .tipi-m-10 {
    width: 83.33333333333333%;
  }
  .tipi-m-11 {
    width: 91.66666666666667%;
  }
  .tipi-m-12 {
    width: 100%;
  }
}
