*:focus {
    outline: 0 !important;
}
a, a:active, a:focus {
    outline: 0;
    border: none;
    -moz-outline-style: none;
}

/* link-hover */

.link-hover{
  position: relative;
}

.link-hover::before{
  content: '';
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #f06e24;
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

link-hover-small {
    bottom: -2px !important;
}

.link-hover-orange::before {
  background-color: #f06e24 !important;
}

.link-hover-white::before {
  background-color: white !important;
}

@media (hover: hover) and (pointer: fine) {
  .link-hover:hover::before{
    left: 0;
    right: auto;
    width: 100%;
  }
}

input[type="radio"] {
    appearance: none;
    border-radius: 50%;
    width: 13px;
    height: 13px;
    border: 1px solid #444a52;
}

input[type="radio"]:checked {
    border: 2px solid #f06e24;
    background-color: #f06e24;
    transition: 0.3s all linear;
}

/* dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fafafa;
  min-width: 80px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  transform: translateY(0.5rem);
  font-family: Lato;
  font-weight: 500;
}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {background-color: #eee;}
.dropdown-show {display:block;}