@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');

@import "compass/css3";

@import url(https://fonts.googleapis.com/css?family=Droid+Sans:400,700);

/*-- Variables --*/
$green-aqua: #ff6f59;
$yellow: #f4d313;
$white: unquote(#fff);
$red: #C9302C;
$green: #449d44;
$blue: #31b0d5;
$grey-light: #bdc3c7;

$primary-color: $green-aqua;
$warning-color: $yellow;
$danger-color: $red;
$success-color: $green;
$info-color: $blue;
$disabled-color: $grey-light;



$base-font-pixel: 16;

/*-- Placeholder --*/
%list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

%clearfix {
  // credit: http://nicolasgallagher.com/micro-clearfix-hack/
  .cf:before,
  .cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
    line-height: 0;
  }

  .cf:after {
    clear: both;
  }

  /**
   * For IE 6/7 only
   * Include this rule to trigger hasLayout and contain floats.
   */
  .cf {
    *zoom: 1;
  }
}

/*-- Mixins --*/
@mixin font-size($sizeValue: 1) {
  font-size: ($sizeValue * $base-font-pixel) + px;
  font-size: $sizeValue + rem;
}

// construct button
@mixin build-btn($bgColor, $ftColor) {
  background-color: $bgColor;
  color: $ftColor;
  border-color: $bgColor;

  &:hover {
    background-color: saturate(lighten($bgColor, 6), 1);
    border-color: saturate(lighten($bgColor, 6), 1);
  }

  &.btn-border {
    &:hover {
      color: $bgColor;
    }
  }

  &.btn-border-inverse {
    background-color: $ftColor;
    color: $bgColor;
    border-color: $bgColor;

    &:hover {
      background-color: $bgColor;
      color: $ftColor;
    }
  }

  &.btn-3d {
    box-shadow: 0px 4px saturate(darken($bgColor, 12), 1);
    position: relative;

    &:hover {
      background-color: $bgColor;
      color: $ftColor;
      border-color: $bgColor;
      top: 2px;
      box-shadow: 0px 2px saturate(darken($bgColor, 12), 1);
    }

    &.btn-3d.btn-border-inverse {
      &:hover {
        background-color: $ftColor;
        color: $bgColor;
      }
    }

    &:active {
      top: 4px;
      box-shadow: 0px 0px saturate(darken($bgColor, 12), 1);
    }
  }
}

/*-- Utilities --*/
.clearfix {
  @extend %clearfix;
}

/*-- General --*/
body {
  font-family: 'Nunito', sans-serif;
  background-color: white;
}

.container {
  width: 60%;
  margin: 50px auto;
}

.heading {
  margin-bottom: 50px;
}

.btn {
  margin: 0 20px 20px 0;
}

.intro {
  margin-top: 80px;
}

.info {
  background-color: #ced2ea;
  border: 1px solid #bcc2e5;
  padding: 10px;
}

// browsers
.browsers {
  margin: 50px 0 50px;
  overflow: hidden;

  ul {
    @extend %list-reset;
  }

  li {
    float: left;
    text-align: center;
    padding-top: 80px;
    margin-right: 25px;
    background-size: 400px;
    background-image: url('http://outdatedbrowser.com/public/imgs/browsers-bg.png');
    background-repeat: no-repeat;

    @include font-size(.8125);
  }

  .chrome {
    width: 67px;
    background-position: -6px -83px;
  }

  .firefox {
    width: 69px;
    background-position: -85px -83px;
  }

  .safari {
    width: 69px;
    background-position: -246px -83px;
  }

  .opera {
    width: 66px;
    background-position: -327px -83px;
  }

  .ie {
    width: 70px;
    background-position: -165px -83px;
  }
}

// credit
.credit {
  margin: 0 0 50px;
}

.changelog {
  margin-top: 50px;
}

/*-- Buttons --*/
.btn {
  border-radius: 5px;
  border: 3px solid transparent;
  display: inline-block;
  position: relative;
  text-decoration: none;
  transition: background-color .3s ease 0s, border-color .3s ease 0s, color .3s ease 0s;
}

.btn-primary {
  @include build-btn($primary-color, $white);
}

.btn-warning {
  @include build-btn($warning-color, $white);
}

.btn-danger {
  @include build-btn($danger-color, $white);
}

.btn-success {
  @include build-btn($success-color, $white);
}

.btn-info {
  @include build-btn($info-color, $white);
}

.btn-disabled {
  background-color: $disabled-color;
  color: $white;
  cursor: default;
}

.btn-border {
  &:hover {
    background-color: $white;
  }
}

.btn-lg {
  padding: 10px 12px;
}

.btn-sm {
  padding: 8px 10px;

  @include font-size(.875);
}

.btn-round {
  border-radius: 40px;
}

.btn-flat {
  border-radius: 0;
}

/* ripple effect */
.btn-ripple__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
}

.btn-ripple__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);

  .btn-ripple__container.is-active & {
    animation: ripples .4s ease-in;
  }
}

@keyframes ripples {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  100% {
    width: 200%;
    padding-bottom: 200%;
    opacity: 0;
  }
}

/* shikoba effect */
.btn-shikoba {
  overflow: hidden;
  padding-left: 2em;

  > i {
    position: absolute;
    left: 20px;
    font-size: 18px;
    -webkit-transform: translate3d(-40px, 2.5em, 0);
    transform: translate3d(-40px, 2.5em, 0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(.75, 0, .125, 1);
    transition-timing-function: cubic-bezier(.75, 0, .125, 1);

    .lt-ie10 & {
      -ms-transform: translate(-40px);
    }
  }

  > span {
    display: inline-block;
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(.75, 0, .125, 1);
    transition-timing-function: cubic-bezier(.75, 0, .125, 1);

    .lt-ie10 & {
      -ms-transform: translate(-10px);
    }
  }

  &:hover {
    > i {
      -webkit-transform: translate3d(-12px, 0, 0);
      transform: translate3d(-12px, 0, 0);

      .lt-ie10 & {
        -ms-transform: translate(-12px);
      }
    }

    > span {
      -webkit-transform: translate3d(2px, 0, 0);
      transform: translate3d(2px, 0, 0);

      .lt-ie10 & {
        -ms-transform: translate(2px);
      }
    }
  }
}


*{
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;

}
body{
  /*background: #f2f2f2;*/
}
nav{
  background: #FFFFFF;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 100px;
}
nav .logo{
  color: #000000;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -1px;
}
nav .nav-items{
  display: flex;
  flex: 1;
  padding: 0 0 0 40px;
}
nav .nav-items li{
  list-style: none;
  padding: 0 15px;
}
nav .nav-items li a{
  color: 	#000000;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}
nav .nav-items li a:hover{
  color: #02C39A;
}
nav form{
  display: flex;
  height: 40px;
  padding: 2px;
  background: #1e232b;
  min-width: 18%!important;
  border-radius: 2px;
  border: 1px solid rgba(155,155,155,0.2);
}
nav form .search-data{
  width: 100%;
  height: 100%;
  padding: 0 10px;
  color: #fff;
  font-size: 17px;
  border: none;
  font-weight: 500;
  background: none;
}
nav form button{
  padding: 0 15px;
  color: #fff;
  font-size: 17px;
  background: #02C39A;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}
nav form button:hover{
  background: #e63600;
}
nav .menu-icon,
nav .cancel-icon,
nav .search-icon{
  width: 40px;
  text-align: center;
  margin: 0 50px;
  font-size: 18px;
  color: #000;
  cursor: pointer;
  display: none;
}
nav .menu-icon span,
nav .cancel-icon,
nav .search-icon{
  display: none;
}
@media (max-width: 1245px) {
  nav{
    padding: 0 50px;
  }
}
@media (max-width: 1140px){
  nav{
    padding: 0px;
  }
  nav .logo{
    flex: 2;
    text-align: center;
  }
  nav .nav-items{
    position: fixed;
    z-index: 99;
    top: 70px;
    width: 100%;
    left: -100%;
    height: 100%;
    padding: 10px 50px 0 50px;
    text-align: center;
    background: #f5f5f5;
    display: inline-block;
    transition: left 0.3s ease;
  }
  nav .nav-items.active{
    left: 0px;
  }
  nav .nav-items li{
    line-height: 40px;
    margin: 30px 0;
  }
  nav .nav-items li a{
    font-size: 20px;
  }
  nav form{
    position: absolute;
    top: 80px;
    right: 50px;
    opacity: 0;
    pointer-events: none;
    transition: top 0.3s ease, opacity 0.1s ease;
  }
  nav form.active{
    top: 95px;
    opacity: 1;
    pointer-events: auto;
  }
  nav form:before{
    position: absolute;
    content: "";
    top: -13px;
    right: 0px;
    width: 0;
    height: 0;
    z-index: -1;
    border: 10px solid transparent;
    border-bottom-color: #1e232b;
    margin: -20px 0 0;
  }
  nav form:after{
    position: absolute;
    content: '';
    height: 60px;
    padding: 2px;
    background: #1e232b;
    border-radius: 2px;
    min-width: calc(100% + 20px);
    z-index: -2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  nav .menu-icon{
    display: block;
  }
  nav .search-icon,
  nav .menu-icon span{
    display: block;
  }
  nav .menu-icon span.hide,
  nav .search-icon.hide{
    display: none;
  }
  nav .cancel-icon.show{
    display: block;
  }
}
.content{
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}
.content header{
  font-size: 30px;
  font-weight: 700;
}
.content .text{
  font-size: 30px;
  font-weight: 700;
}
.space{
  margin: 10px 0;
}
nav .logo.space{
  color: red;
  padding: 0 5px 0 0;
}
@media (max-width: 980px){
  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon{
    margin: 0 20px;
  }
  nav form{
    right: 30px;
  }
}
@media (max-width: 350px){
  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon{
    margin: 0 10px;
    font-size: 16px;
  }
}
.content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.content header{
  font-size: 30px;
  font-weight: 700;
}
.content .text{
  font-size: 30px;
  font-weight: 700;
}
.content .space{
  margin: 10px 0;
}
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
.profileimg {
  border-radius: 50%;
  border: 2px solid #555;
}
  .fa-caret-down {
    color: black;
  }

.hero {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 2rem;
  background-color: #02C39A;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.cardhero {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 2rem;
  background-color: #02C39A;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 700px) {
  .hero {
    padding: 3rem;
  }
}

@media (min-width: 1200px) {
  .hero {
    padding: 6rem;
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: auto;
}

@media (min-width: 800px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
            align-items: center;
    gap: 2rem;
  }
}

body,
html {
  font-family: "Nunito", sans-serif;
  overflow-x: hidden;
}
.hero-inner p {
  color: #fff;
  font-size: 1.3rem;
  }
.hero h2 {
  color: #fff;
  font-size: 3rem;

}

.hero-button {
  background: #fff;
  color: #444;
  border: 0;
  padding: 1rem 2rem;
  display: inline-block;
  margin-top: 1rem;
}
.hero-button2 {
  background: #05668d;
  color: #fff;
  border: 0;
  padding: 1rem 2rem;
  display: inline-block;
  margin-top: 1rem;
}
@media (min-width: 700px) {
  .hero-button {
    margin-top: 2rem;
  }
}

.hero-image {
  -webkit-box-ordinal-group: 0;
          order: -1;
  justify-items: center;
}

@media (min-width: 800px) {
  .hero-image {
    -webkit-box-ordinal-group: initial;
            order: initial;
  }
}

.hero-image img {
  width: 100%;
}
.features-gridy {
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  -webkit-box-pack: center;
          justify-content: center;
  max-width: 1200px;
  margin: auto;
}

@media (min-width: 650px) {
  .features-groupy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    -webkit-box-align: center;
            align-items: center;
  }
}

@media (min-width: 650px) {
  .inverse {
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
}

.features-imagey img {
  width: 100%
}

@media (min-width: 650px) and (max-width: 899px) {
  .features-texty h2 {
    font-size: 1.25rem
  }
}

@media (min-width: 1200px) {
  .features-texty h2 {
    font-size: 2rem;
  }
}

.features-texty p {
  line-height: 1.3;
}

@media (min-width: 1200px) {
  .features-texty p {
    font-size: 1.25rem;
  }
}
.features-grid {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
  background-color: #02C39A;
}

@media (min-width: 600px) {
  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 1000px) {
  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.features-card {
  background-color: #f9f9f9;
  padding: 2rem;
  margin: 1rem 0;
  box-shadow: 0 0 20px 0 #00000033;
}

@media (min-width: 600px) {
  .features-card {
    margin: 0;
  }
}

@media (min-width: 600px) {
  .features-card:nth-child(1) {
    grid-column: 1;
  }
}

@media (min-width: 1000px) {
  .features-card:nth-child(1) {
    grid-column: 1;
  }
}

.features-icon {
  color: #fff;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  border-radius: 50%;
}

@media (min-width: 700px) {
  .features-icon {
    width: 48px;
    height: 48px;
  }
}

@media (min-width: 700px) {
  .features-icon i {
    font-size: 1.25rem
  }
}

.features-icon.audio {
  background-color: #F50057;
}

.features-icon.badge {
  background-color: #6C63FF;
}

.features-icon.card {
  background-color: #00BFA6;
}

.features-icon.fire {
  background-color: #F9A826;
}


.features-text h2 {
  font-size: 1rem;
  margin-top: 0;
  line-height: 1.25;
}

@media (min-width: 700px) {
  .features-text h2 {
    font-size: 1.25rem;
    line-height: 1.3;
  }
}

.features-text p {
  font-size: .9rem;
  line-height: 1.3;
}

@media (min-width: 700px) {
  font-size: 1rem;
}

.features-image img {
  width: 100%;
}
.herolow {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  text-align: center;
  padding: 2rem;
  background-color: #05668d;
  /*#636EFD*/
}
.herofooter {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  text-align: center;
  padding: 2rem;
  background-color: #e3e3e3;
  /*#636EFD*/
}
@media (min-width: 700px) {
  .herolow {
    padding: 3rem;
  }
}

@media (min-width: 1200px) {
  .herolow {
    padding: 6rem;
  }
}

.herolow-inner {
  max-width: 900px;
  margin: auto;
}

.herolow-inner p,
.herolow h2 {
  color: #fff;
}

.buttonslow {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .buttonslow {
    display: grid;
    /* Wide buttons */
    grid-template-columns: 1fr 1fr;
    /* Centered, narrow buttons */
    grid-template-columns: auto auto;
    gap: 1rem;
    -webkit-box-pack: center;
            justify-content: center;
  }
}

.herolow-button {
  background: #fff;
  color: #444;
  border: 0;
  padding: 1rem 2rem;
  display: inline-block;
  margin-top: 1rem;
}

@media (min-width: 700px) {
  .herolow-button {
    margin-top: 2rem;
  }
}

.herolow-button.ghost {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}


@import url(https://fonts.googleapis.com/css?family=Droid+Sans:400,700);
/*-- Variables --*/
/*-- Placeholder --*/
.browsers ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.clearfix {
  /**
   * For IE 6/7 only
   * Include this rule to trigger hasLayout and contain floats.
   */
}
.clearfix .cf:before,
.clearfix .cf:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
  line-height: 0;
}
.clearfix .cf:after {
  clear: both;
}
.clearfix .cf {
  *zoom: 1;
}

/*-- Mixins --*/
/*-- Utilities --*/
/*-- General --*/
body {
  font-family: 'Nunito', sans-serif;
  background-color: white;
}

.container {
  width: 60%;
  margin: 50px auto;
}

.heading {
  margin-bottom: 50px;
}

.btn {
  margin: 0 20px 20px 0;
}

.intro {
  margin-top: 80px;
}

.info {
  background-color: #ced2ea;
  border: 1px solid #bcc2e5;
  padding: 10px;
}

.browsers {
  margin: 50px 0 50px;
  overflow: hidden;
}
.browsers li {
  float: left;
  text-align: center;
  padding-top: 80px;
  margin-right: 25px;
  background-size: 400px;
  background-image: url("http://outdatedbrowser.com/public/imgs/browsers-bg.png");
  background-repeat: no-repeat;
  font-size: 13px;
  font-size: 0.8125rem;
}
.browsers .chrome {
  width: 67px;
  background-position: -6px -83px;
}
.browsers .firefox {
  width: 69px;
  background-position: -85px -83px;
}
.browsers .safari {
  width: 69px;
  background-position: -246px -83px;
}
.browsers .opera {
  width: 66px;
  background-position: -327px -83px;
}
.browsers .ie {
  width: 70px;
  background-position: -165px -83px;
}

.credit {
  margin: 0 0 50px;
}

.changelog {
  margin-top: 50px;
}

/*-- Buttons --*/
.btn {
  border-radius: 5px;
  border: 3px solid transparent;
  display: inline-block;
  position: relative;
  text-decoration: none;
  transition: background-color .3s ease 0s, border-color .3s ease 0s, color .3s ease 0s;
}

.btn-primary {
  background-color: #ff6f59;
  color: #fff;
  border-color: #ff6f59;
}
.btn-primary:hover {
  background-color: #ff8a78;
  border-color: #ff8a78;
}
.btn-primary.btn-border:hover {
  color: #ff6f59;
}
.btn-primary.btn-border-inverse {
  background-color: #fff;
  color: #ff6f59;
  border-color: #ff6f59;
}
.btn-primary.btn-border-inverse:hover {
  background-color: #ff6f59;
  color: #fff;
}
.btn-primary.btn-3d {
  box-shadow: 0px 4px #ff3a1c;
  position: relative;
}
.btn-primary.btn-3d:hover {
  background-color: #ff6f59;
  color: #fff;
  border-color: #ff6f59;
  top: 2px;
  box-shadow: 0px 2px #ff3a1c;
}
.btn-primary.btn-3d.btn-3d.btn-border-inverse:hover {
  background-color: #fff;
  color: #ff6f59;
}
.btn-primary.btn-3d:active {
  top: 4px;
  box-shadow: 0px 0px #ff3a1c;
}

.btn-warning {
  background-color: #f4d313;
  color: #fff;
  border-color: #f4d313;
}
.btn-warning:hover {
  background-color: #f6d92f;
  border-color: #f6d92f;
}
.btn-warning.btn-border:hover {
  color: #f4d313;
}
.btn-warning.btn-border-inverse {
  background-color: #fff;
  color: #f4d313;
  border-color: #f4d313;
}
.btn-warning.btn-border-inverse:hover {
  background-color: #f4d313;
  color: #fff;
}
.btn-warning.btn-3d {
  box-shadow: 0px 4px #c2a708;
  position: relative;
}
.btn-warning.btn-3d:hover {
  background-color: #f4d313;
  color: #fff;
  border-color: #f4d313;
  top: 2px;
  box-shadow: 0px 2px #c2a708;
}
.btn-warning.btn-3d.btn-3d.btn-border-inverse:hover {
  background-color: #fff;
  color: #f4d313;
}
.btn-warning.btn-3d:active {
  top: 4px;
  box-shadow: 0px 0px #c2a708;
}

.btn-danger {
  background-color: #C9302C;
  color: #fff;
  border-color: #C9302C;
}
.btn-danger:hover {
  background-color: #d6413e;
  border-color: #d6413e;
}
.btn-danger.btn-border:hover {
  color: #C9302C;
}
.btn-danger.btn-border-inverse {
  background-color: #fff;
  color: #C9302C;
  border-color: #C9302C;
}
.btn-danger.btn-border-inverse:hover {
  background-color: #C9302C;
  color: #fff;
}
.btn-danger.btn-3d {
  box-shadow: 0px 4px #982320;
  position: relative;
}
.btn-danger.btn-3d:hover {
  background-color: #C9302C;
  color: #fff;
  border-color: #C9302C;
  top: 2px;
  box-shadow: 0px 2px #982320;
}
.btn-danger.btn-3d.btn-3d.btn-border-inverse:hover {
  background-color: #fff;
  color: #C9302C;
}
.btn-danger.btn-3d:active {
  top: 4px;
  box-shadow: 0px 0px #982320;
}

.btn-success {
  background-color: #449d44;
  color: #fff;
  border-color: #449d44;
}
.btn-success:hover {
  background-color: #4cb34c;
  border-color: #4cb34c;
}
.btn-success.btn-border:hover {
  color: #449d44;
}
.btn-success.btn-border-inverse {
  background-color: #fff;
  color: #449d44;
  border-color: #449d44;
}
.btn-success.btn-border-inverse:hover {
  background-color: #449d44;
  color: #fff;
}
.btn-success.btn-3d {
  box-shadow: 0px 4px #317331;
  position: relative;
}
.btn-success.btn-3d:hover {
  background-color: #449d44;
  color: #fff;
  border-color: #449d44;
  top: 2px;
  box-shadow: 0px 2px #317331;
}
.btn-success.btn-3d.btn-3d.btn-border-inverse:hover {
  background-color: #fff;
  color: #449d44;
}
.btn-success.btn-3d:active {
  top: 4px;
  box-shadow: 0px 0px #317331;
}

.btn-info {
  background-color: #31b0d5;
  color: #fff;
  border-color: #31b0d5;
}
.btn-info:hover {
  background-color: #49badb;
  border-color: #49badb;
}
.btn-info.btn-border:hover {
  color: #31b0d5;
}
.btn-info.btn-border-inverse {
  background-color: #fff;
  color: #31b0d5;
  border-color: #31b0d5;
}
.btn-info.btn-border-inverse:hover {
  background-color: #31b0d5;
  color: #fff;
}
.btn-info.btn-3d {
  box-shadow: 0px 4px #2189a8;
  position: relative;
}
.btn-info.btn-3d:hover {
  background-color: #31b0d5;
  color: #fff;
  border-color: #31b0d5;
  top: 2px;
  box-shadow: 0px 2px #2189a8;
}
.btn-info.btn-3d.btn-3d.btn-border-inverse:hover {
  background-color: #fff;
  color: #31b0d5;
}
.btn-info.btn-3d:active {
  top: 4px;
  box-shadow: 0px 0px #2189a8;
}

.btn-disabled {
  background-color: #bdc3c7;
  color: #fff;
  cursor: default;
}

.btn-border:hover {
  background-color: #fff;
}

.btn-lg {
  padding: 10px 12px;
}

.btn-sm {
  padding: 8px 10px;
  font-size: 14px;
  font-size: 0.875rem;
}

.btn-round {
  border-radius: 40px;
}

.btn-flat {
  border-radius: 0;
}

/* ripple effect */
.btn-ripple__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
}

.btn-ripple__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}
.btn-ripple__container.is-active .btn-ripple__circle {
  -webkit-animation: ripples .4s ease-in;
          animation: ripples .4s ease-in;
}

@-webkit-keyframes ripples {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    width: 200%;
    padding-bottom: 200%;
    opacity: 0;
  }
}

@keyframes ripples {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    width: 200%;
    padding-bottom: 200%;
    opacity: 0;
  }
}
/* shikoba effect */
.btn-shikoba {
  overflow: hidden;
  padding-left: 2em;
}
.btn-shikoba > i {
  position: absolute;
  left: 20px;
  font-size: 18px;
  transform: translate3d(-40px, 2.5em, 0);
  transition: transform 0.3s;
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.lt-ie10 .btn-shikoba > i {
  -ms-transform: translate(-40px);
}
.btn-shikoba > span {
  display: inline-block;
  transform: translate3d(-10px, 0, 0);
  transition: transform 0.3s;
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.lt-ie10 .btn-shikoba > span {
  -ms-transform: translate(-10px);
}
.btn-shikoba:hover > i {
  transform: translate3d(-12px, 0, 0);
}
.lt-ie10 .btn-shikoba:hover > i {
  -ms-transform: translate(-12px);
}
.btn-shikoba:hover > span {
  transform: translate3d(2px, 0, 0);
}
.lt-ie10 .btn-shikoba:hover > span {
  -ms-transform: translate(2px);
}
.btn-center{
  display: block;
  width:100px;
  margin: auto;
  text-align: center;
}
