/**
 * @file
 * Styles for Corporate+'s links.
 */
.mt-link-stylable {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 0.8em;
}
.mt-link-stylable:after {
  content: "\f101";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 12px;
  margin-left: 5px;
  display: inline-block;
  line-height: 1;
}
/* animated icon */
.mt-link-style-animated-icon .mt-link-stylable {
  margin: 0 0 10px 0px;
  display: inline-block;
  background-color: transparent;
  padding: 0;
  border: none;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding-left: 24px;
}
.mt-link-style-animated-icon .mt-link-stylable:hover {
  padding-left: 40px;
}
.mt-link-style-animated-icon .mt-link-stylable:before {
  width: 14px;
  height: 1px;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.mt-link-style-animated-icon .mt-link-stylable:hover:before {
  width: 30px;
}
.mt-link-style-animated-icon .mt-link-stylable:before {
  background-color: var(--mt-color-primary-dark);
}
.mt-link-style-animated-icon .region--shade-background .mt-link-stylable,
.mt-link-style-animated-icon .region--colored-background .mt-link-stylable,
.mt-link-style-animated-icon .region--dark-colored-background .mt-link-stylable,
.mt-link-style-animated-icon .region--dark-background .mt-link-stylable {
  color: #ffffff;
}
.mt-link-style-animated-icon .region--shade-background .mt-link-stylable:before,
.mt-link-style-animated-icon .region--colored-background .mt-link-stylable:before,
.mt-link-style-animated-icon .region--dark-colored-background .mt-link-stylable:before,
.mt-link-style-animated-icon .region--dark-background .mt-link-stylable:before {
  background-color: #ffffff;
}

/* animated underline 1 */
.mt-link-style-animated-underline-1 .mt-link-stylable {
  padding-bottom: 8px;
  position: relative;
  text-decoration: none;
  display: inline-block;
}
.mt-link-style-animated-underline-1 .mt-link-stylable:hover {
  text-decoration: none;
}
.mt-link-style-animated-underline-1 .mt-link-stylable:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  margin: 0;
}
.mt-link-style-animated-underline-1 .region--shade-background .mt-link-stylable:before,
.mt-link-style-animated-underline-1 .region--colored-background .mt-link-stylable:before,
.mt-link-style-animated-underline-1 .region--dark-colored-background .mt-link-stylable:before,
.mt-link-style-animated-underline-1 .region--dark-background .mt-link-stylable:before {
  background-color: #ffffff;
}
.mt-link-style-animated-underline-1 .mt-link-stylable:hover:before {
  left: -3%;
  width: 106%;
}

/* animated underline 2 */
.mt-link-style-animated-underline-2 .mt-link-stylable {
  padding-bottom: 8px;
  position: relative;
  text-decoration: none;
  display: inline-block;
}
.mt-link-style-animated-underline-2 .mt-link-stylable:hover {
  text-decoration: none;
}
.mt-link-style-animated-underline-2 .mt-link-stylable:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  -webkit-animation-name: borderOut;
  animation-name: borderOut;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  margin: 0;
}
.mt-link-style-animated-underline-2 .region--shade-background .mt-link-stylable:before,
.mt-link-style-animated-underline-2 .region--colored-background .mt-link-stylable:before,
.mt-link-style-animated-underline-2 .region--dark-colored-background .mt-link-stylable:before,
.mt-link-style-animated-underline-2 .region--dark-background .mt-link-stylable:before {
  background-color: #ffffff;
}
.mt-link-style-animated-underline-2 .mt-link-stylable:hover:before {
  width: 100%;
  -webkit-animation-name: borderIn;
  animation-name: borderIn;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes borderIn {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes borderIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes borderOut {
  0% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}
@keyframes borderOut {
  0% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}

/* animated underline 3 */
.mt-link-style-animated-underline-3 .mt-link-stylable {
  position: relative;
  text-decoration: none;
  display: inline-block;
  z-index: 1;
  padding-bottom: 5px;
}
.mt-link-style-animated-underline-3 .region--shade-background .mt-link-stylable,
.mt-link-style-animated-underline-3 .region--colored-background .mt-link-stylable,
.mt-link-style-animated-underline-3 .region--dark-colored-background .mt-link-stylable,
.mt-link-style-animated-underline-3 .region--dark-background .mt-link-stylable {
  color: #ffffff;
}
.mt-link-style-animated-underline-3 .mt-link-stylable:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  margin-top: -2px;
  z-index: -1;
  left: 50%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.mt-link-style-animated-underline-3 .region--shade-background .mt-link-stylable:hover,
.mt-link-style-animated-underline-3 .region--colored-background .mt-link-stylable:hover,
.mt-link-style-animated-underline-3 .region--dark-colored-background .mt-link-stylable:hover,
.mt-link-style-animated-underline-3 .region--dark-background .mt-link-stylable:hover {
  color: #ffffff;
}
.mt-link-style-animated-underline-3 .mt-link-stylable:hover:before {
  width: 100%;
  left: 0px;
}

/* animated background 1 */
.mt-link-style-animated-background-1 .mt-link-stylable {
  position: relative;
  text-decoration: none;
  z-index: 1;
  display: inline-block;
}
.mt-link-style-animated-background-1 .mt-link-stylable:hover,
.mt-link-style-animated-background-1 .mt-link-stylable:focus {
  color: #ffffff;
  text-decoration: none;
}
.mt-link-style-animated-background-1 .mt-link-stylable:before {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  top: 50%;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.mt-link-style-animated-background-1 .mt-link-stylable:hover:before,
.mt-link-style-animated-background-1 .mt-link-stylable:focus:before {
  height: 100%;
  top: 0;
}
.mt-link-style-animated-background-1 .region--shade-background .mt-link-stylable:before,
.mt-link-style-animated-background-1 .region--colored-background .mt-link-stylable:before,
.mt-link-style-animated-background-1 .region--dark-colored-background .mt-link-stylable:before,
.mt-link-style-animated-background-1 .region--dark-background .mt-link-stylable:before {
  background-color: #ffffff;
}
.mt-link-style-animated-background-1 .region--shade-background .mt-link-stylable:hover,
.mt-link-style-animated-background-1 .region--colored-background .mt-link-stylable:hover,
.mt-link-style-animated-background-1 .region--dark-colored-background .mt-link-stylable:hover,
.mt-link-style-animated-background-1 .region--dark-background .mt-link-stylable:hover,
.mt-link-style-animated-background-1 .region--shade-background .mt-link-stylable:focus,
.mt-link-style-animated-background-1 .region--colored-background .mt-link-stylable:focus,
.mt-link-style-animated-background-1 .region--dark-colored-background .mt-link-stylable:focus,
.mt-link-style-animated-background-1 .region--dark-background .mt-link-stylable:focus {
  color: var(--mt-color-primary-dark);
}

/* animated background 2 */
.mt-link-style-animated-background-2 .mt-link-stylable {
  position: relative;
  text-decoration: none;
  z-index: 1;
  display: inline-block;
}
.mt-link-style-animated-background-2 .mt-link-stylable:hover,
.mt-link-style-animated-background-2 .mt-link-stylable:focus {
  color: #ffffff;
  text-decoration: none;
}
.mt-link-style-animated-background-2 .mt-link-stylable:before {
  content: "";
  z-index: -1;
  position: absolute;
  left: -2%;
  width: 0%;
  bottom: 0;
  height: 100%;
  -webkit-animation-name: backgroundOut;
  animation-name: backgroundOut;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.mt-link-style-animated-background-2 .mt-link-stylable:hover:before,
.mt-link-style-animated-background-2 .mt-link-stylable:focus:before {
  width: 104%;
  -webkit-animation-name: backgroundIn;
  animation-name: backgroundIn;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.mt-link-style-animated-background-2 .region--shade-background .mt-link-stylable:before,
.mt-link-style-animated-background-2 .region--colored-background .mt-link-stylable:before,
.mt-link-style-animated-background-2 .region--dark-colored-background .mt-link-stylable:before,
.mt-link-style-animated-background-2 .region--dark-background .mt-link-stylable:before {
  background-color: #ffffff;
}
.mt-link-style-animated-background-2 .region--shade-background .mt-link-stylable:hover,
.mt-link-style-animated-background-2 .region--colored-background .mt-link-stylable:hover,
.mt-link-style-animated-background-2 .region--dark-colored-background .mt-link-stylable:hover,
.mt-link-style-animated-background-2 .region--dark-background .mt-link-stylable:hover,
.mt-link-style-animated-background-2 .region--shade-background .mt-link-stylable:focus,
.mt-link-style-animated-background-2 .region--colored-background .mt-link-stylable:focus,
.mt-link-style-animated-background-2 .region--dark-colored-background .mt-link-stylable:focus,
.mt-link-style-animated-background-2 .region--dark-background .mt-link-stylable:focus {
  color: var(--mt-color-primary-dark);
}
@-webkit-keyframes backgroundIn {
  0% {
    width: 0%;
  }
  100% {
    width: 104%;
  }
}
@keyframes backgroundIn {
  0% {
    width: 0;
  }
  100% {
    width: 104%;
  }
}
@-webkit-keyframes backgroundOut {
  0% {
    width: 104%;
    left: -2%;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}
@keyframes backgroundOut {
  0% {
    width: 104%;
    left: -2%;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}

/* animated background 3 */
.mt-link-style-animated-background-3 .mt-link-stylable {
  position: relative;
  text-decoration: none;
  z-index: 1;
  display: inline-block;
}
.mt-link-style-animated-background-3 .mt-link-stylable:hover,
.mt-link-style-animated-background-3 .mt-link-stylable:focus {
  color: #ffffff;
  text-decoration: none;
}
.mt-link-style-animated-background-3 .mt-link-stylable:before {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.mt-link-style-animated-background-3 .mt-link-stylable:hover:before,
.mt-link-style-animated-background-3 .mt-link-stylable:focus:before {
  height: 100%;
}
.mt-link-style-animated-background-3 .region--shade-background .mt-link-stylable:before,
.mt-link-style-animated-background-3 .region--colored-background .mt-link-stylable:before,
.mt-link-style-animated-background-3 .region--dark-colored-background .mt-link-stylable:before,
.mt-link-style-animated-background-3 .region--dark-background .mt-link-stylable:before {
  background-color: #ffffff;
}
.mt-link-style-animated-background-3 .region--shade-background .mt-link-stylable:hover,
.mt-link-style-animated-background-3 .region--colored-background .mt-link-stylable:hover,
.mt-link-style-animated-background-3 .region--dark-colored-background .mt-link-stylable:hover,
.mt-link-style-animated-background-3 .region--dark-background .mt-link-stylable:hover,
.mt-link-style-animated-background-3 .region--shade-background .mt-link-stylable:focus,
.mt-link-style-animated-background-3 .region--colored-background .mt-link-stylable:focus,
.mt-link-style-animated-background-3 .region--dark-colored-background .mt-link-stylable:focus,
.mt-link-style-animated-background-3 .region--dark-background .mt-link-stylable:focus {
  color: var(--mt-color-primary-dark);
}

/* Simple */
.mt-link-style-simple .mt-link-stylable {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 300;
  text-decoration: none;
  font-size: 0.8em;
}
