/* 
* =============================================
* Shape
* =============================================
*/
[class*='triangle-'] {
  width: 0;
  height: 0;
}

.triangle-top {
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 100px solid #6c757d;
}

.triangle-bottom {
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 100px solid #6c757d;
}

.triangle-left {
  border-top: 50px solid transparent;
  border-right: 100px solid #6c757d;
  border-bottom: 50px solid transparent;
}

.triangle-right {
  border-top: 50px solid transparent;
  border-left: 100px solid #6c757d;
  border-bottom: 50px solid transparent;
}

.triangle-top-left {
  border-top: 100px solid #6c757d;
  border-right: 100px solid transparent;
}

.triangle-top-right {
  border-top: 100px solid #6c757d;
  border-left: 100px solid transparent;
}

.triangle-bottom-left {
  border-bottom: 100px solid #6c757d;
  border-right: 100px solid transparent;
}

.triangle-bottom-right {
  border-bottom: 100px solid #6c757d;
  border-left: 100px solid transparent;
}

#square {
  width: 100px;
  height: 100px;
  background: #6c757d;
}

#rectangle {
  width: 200px;
  height: 100px;
  background: #6c757d;
}

#circle {
  width: 100px;
  height: 100px;
  background: #6c757d;
  border-radius: 50px;
}

#oval {
  width: 200px;
  height: 100px;
  background: #6c757d;
  border-radius: 100px / 50px;
}

#curvedarrow {
  position: relative;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-right: 9px solid #6c757d;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
#curvedarrow:after {
  content: '';
  position: absolute;
  border: 0 solid transparent;
  border-top: 3px solid #6c757d;
  border-radius: 20px 0 0 0;
  top: -12px;
  left: -9px;
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#trapezoid {
  border-bottom: 100px solid #6c757d;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  height: 0;
  width: 200px;
}

#parallelogram {
  width: 150px;
  height: 100px;
  -webkit-transform: skew(20deg);
          transform: skew(20deg);
  background: #6c757d;
}

#star-six {
  width: 0;
  height: 0;
  position: relative;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 85px solid #6c757d;
}
#star-six:after {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 85px solid #6c757d;
  position: absolute;
  content: '';
  top: 30px;
  left: -50px;
}

#star-five {
  width: 0px;
  height: 0px;
  position: relative;
  border-right: 100px solid transparent;
  border-bottom: 70px solid #6c757d;
  border-left: 100px solid transparent;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}
#star-five:before {
  border-bottom: 80px solid #6c757d;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  position: absolute;
  height: 0;
  width: 0;
  top: -45px;
  left: -65px;
  display: block;
  content: '';
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
}
#star-five:after {
  position: absolute;
  display: block;
  color: #6c757d;
  top: 3px;
  left: -105px;
  width: 0px;
  height: 0px;
  border-right: 100px solid transparent;
  border-bottom: 70px solid #6c757d;
  border-left: 100px solid transparent;
  -webkit-transform: rotate(-70deg);
          transform: rotate(-70deg);
  content: '';
}

#pentagon {
  position: relative;
  width: 90px;
  border-width: 50px 18px 0;
  border-style: solid;
  border-color: #6c757d transparent;
}
#pentagon:before {
  content: '';
  position: absolute;
  height: 0;
  width: 0;
  top: -85px;
  left: -18px;
  border-width: 0 45px 35px;
  border-style: solid;
  border-color: transparent transparent #6c757d;
}

#hexagon {
  width: 100px;
  height: 55px;
  background: #6c757d;
  position: relative;
}
#hexagon:before {
  content: '';
  position: absolute;
  top: -25px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 25px solid #6c757d;
}
#hexagon:after {
  content: '';
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 25px solid #6c757d;
}

#octagon {
  width: 100px;
  height: 100px;
  background: #6c757d;
  position: relative;
}
#octagon:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 29px solid #6c757d;
  border-left: 29px solid #fff;
  border-right: 29px solid #fff;
  width: 42px;
  height: 0;
}
#octagon:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: 29px solid #6c757d;
  border-left: 29px solid #fff;
  border-right: 29px solid #fff;
  width: 42px;
  height: 0;
}

#heart {
  position: relative;
  width: 100px;
  height: 90px;
}
#heart:before, #heart:after {
  position: absolute;
  content: '';
  left: 50px;
  top: 0;
  width: 50px;
  height: 80px;
  background: #6c757d;
  border-radius: 50px 50px 0 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
}
#heart:after {
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}

#infinity {
  position: relative;
  width: 212px;
  height: 100px;
}
#infinity:before, #infinity:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border: 20px solid #6c757d;
  border-radius: 50px 50px 0 50px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#infinity:after {
  left: auto;
  right: 0;
  border-radius: 50px 50px 50px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#diamond {
  width: 0;
  height: 0;
  border: 50px solid transparent;
  border-bottom-color: #6c757d;
  position: relative;
  top: -50px;
}
#diamond:after {
  content: '';
  position: absolute;
  left: -50px;
  top: 50px;
  width: 0;
  height: 0;
  border: 50px solid transparent;
  border-top-color: #6c757d;
}

#diamond-shield {
  width: 0;
  height: 0;
  border: 50px solid transparent;
  border-bottom: 20px solid #6c757d;
  position: relative;
  top: -50px;
}
#diamond-shield:after {
  content: '';
  position: absolute;
  left: -50px;
  top: 20px;
  width: 0;
  height: 0;
  border: 50px solid transparent;
  border-top: 70px solid #6c757d;
}

#diamond-narrow {
  width: 0;
  height: 0;
  border: 50px solid transparent;
  border-bottom: 70px solid #6c757d;
  position: relative;
  top: -50px;
}
#diamond-narrow:after {
  content: '';
  position: absolute;
  left: -50px;
  top: 70px;
  width: 0;
  height: 0;
  border: 50px solid transparent;
  border-top: 70px solid #6c757d;
}

#cut-diamond {
  border-style: solid;
  border-color: transparent transparent #6c757d transparent;
  border-width: 0 25px 25px 25px;
  height: 0;
  width: 100px;
  position: relative;
  margin: 20px 0 50px 0;
}
#cut-diamond:after {
  content: '';
  position: absolute;
  top: 25px;
  left: -25px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #6c757d transparent transparent transparent;
  border-width: 70px 50px 0 50px;
}

#egg {
  display: block;
  width: 126px;
  height: 180px;
  background-color: #6c757d;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

#pacman {
  width: 0px;
  height: 0px;
  border-right: 60px solid transparent;
  border-top: 60px solid #6c757d;
  border-left: 60px solid #6c757d;
  border-bottom: 60px solid #6c757d;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
}

#talkbubble {
  width: 120px;
  height: 80px;
  background: #6c757d;
  position: relative;
  border-radius: 10px;
}
#talkbubble:before {
  content: '';
  position: absolute;
  right: 100%;
  top: 26px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-right: 26px solid #6c757d;
  border-bottom: 13px solid transparent;
}

#burst-12 {
  background: #6c757d;
  width: 80px;
  height: 80px;
  position: relative;
  text-align: center;
}
#burst-12:before, #burst-12:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 80px;
  width: 80px;
  background: #6c757d;
}
#burst-12:before {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
#burst-12:after {
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}

#burst-8 {
  background: #6c757d;
  width: 80px;
  height: 80px;
  position: relative;
  text-align: center;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
#burst-8:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 80px;
  width: 80px;
  background: #6c757d;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

#yin-yang {
  width: 100px;
  height: 100px;
  background: #eee;
  border-color: #6c757d;
  border-style: solid;
  border-width: 0px 0px 50px 0px;
  border-radius: 100%;
  position: relative;
}
#yin-yang:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  background: #eee;
  border: 18px solid #6c757d;
  border-radius: 100%;
  width: 12px;
  height: 12px;
}
#yin-yang:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: #6c757d;
  border: 18px solid #eee;
  border-radius: 100%;
  width: 12px;
  height: 12px;
}

#badge-ribbon {
  position: relative;
  background: #6c757d;
  height: 100px;
  width: 100px;
  border-radius: 50px;
}
#badge-ribbon:before, #badge-ribbon:after {
  content: '';
  position: absolute;
  border-bottom: 70px solid #6c757d;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  top: 70px;
  left: -10px;
  -webkit-transform: rotate(-140deg);
          transform: rotate(-140deg);
}
#badge-ribbon:after {
  left: auto;
  right: -10px;
  -webkit-transform: rotate(140deg);
          transform: rotate(140deg);
}

/*# sourceMappingURL=shape.css.map */