/**
 * Open Sans
 */
@import url(https://fonts.googleapis.com/css?family=Open+Sans&display=swap);
/*-------------------------------------------------------------------
	Mixins
-------------------------------------------------------------------*/
/*-------------------------------------------------------------------
	Media queries
-------------------------------------------------------------------*/
/*-------------------------------------------------------------------
Fonts
-------------------------------------------------------------------*/
html {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  font-size: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
}

div,
input {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  line-height: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-feature-settings: '"liga", "dlig"';
  -ms-font-feature-settings: '"liga", "dlig"';
  -webkit-font-feature-settings: '"liga", "dlig"';
  font-feature-settings: '"liga", "dlig"';
}

h1,
h2,
h3,
h4,
h5,
span {
  font-family: sans-serif;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
span a {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  text-decoration: inherit;
}

.btn {
  display: inline-block;
  position: relative;
  font-family: "Open Sans", sans-serif;
  color: #fff;
  text-transform: lowercase;
  text-decoration: none;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 2px;
  z-index: 1;
  overflow: hidden;
}

.btn:hover {
  cursor: pointer;
}

.btn.disabled:hover {
  cursor: default;
}

.btn-toggle {
  background-color: #fff;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
  -webkit-transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}

.btn-fx-bubble-down {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-fx-bubble-down::after, .btn-fx-bubble-down::before {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.btn-fx-bubble-down::after {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  width: 100%;
  border-radius: 0 0 50% 50%;
  background-color: rgba(0, 0, 0, 0.15);
  transition: height 0.5s ease-in-out;
  -webkit-transition: height 0.5s ease-in-out;
}

.btn-fx-bubble-down:hover:not(.disabled) {
  transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out;
  -webkit-transition: color 0.5s  ease-in-out, background-color 0.5s ease-in-out;
}

.btn-fx-bubble-down:hover:not(.disabled)::after {
  height: 300%;
  transition: height 0.5s ease-in-out;
  -webkit-transition: height 0.5s ease-in-out;
}

.btn-secondary {
  position: relative;
  letter-spacing: 0;
  line-height: 23px;
  text-transform: lowercase;
  text-decoration: none;
  background-color: inherit;
  border-color: inherit;
  transition: transform 0.1s ease;
}

.btn-secondary:not(:disabled):not(:disabled):hover {
  background-color: inherit;
  border-color: inherit;
  text-decoration: inherit;
  transform: scale3d(1.1, 1.1, 1.1);
}

.btn-secondary:not(:disabled):not(:disabled):hover::after {
  margin-left: 20px;
}

.btn-secondary:not(:disabled):not(:disabled):focus {
  outline: none;
  box-shadow: none;
}

.btn-secondary:not(:disabled):not(:disabled):active {
  background-color: inherit;
  border-color: inherit;
  text-decoration: inherit;
}

.btn-secondary:not(:disabled):not(:disabled):active:focus {
  outline: none;
  box-shadow: none;
}

.btn-secondary span {
  display: inline;
  position: relative;
}

.btn-secondary::after {
  display: inline-block;
  content: "";
  margin-left: 10px;
  cursor: pointer;
  width: 18px;
  height: 14px;
  background-color: #000;
  transition: margin-left 0.1s ease;
  clip-path: polygon(10.96961px 13.9997px, 18px 6.99947px, 10.96961px 0, 9.72664px 1.23764px, 14.61682px 6.12115px, 0 6.12115px, 0 7.8793px, 14.61682px 7.8793px, 9.72664px 12.76206px);
}

/*# sourceMappingURL=main.min.css.map */