.quicklinks ul {
  margin: 0;
}

.dropdown {
  position: relative;
  display: inline-block;
  font-family: sans-serif;
  list-style: none;
  text-align: left;
  font-size: 13px;
}

.dropdown,
.dropdown-content li {
  list-style: none;
}

.dropdown a {
  display: block;
  text-decoration: none;
  padding: 10px;
  color: #111;
}

.dropdown a:hover {
  color: royalblue;
}

a.dropbtn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 300px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 30px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  width: 100%;
  box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.2);
  border: 1px solid #ccc;

  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top-color: white;
}

.dropbtn.open {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: white;
}

.dropbtn > span {
  position: absolute;
  right: 10px;
  top: 5.5px;
  font-size: 20px;
  align-content: center;
  transition: transform 200ms ease-in-out;
}

.dropbtn.open > span {
  transform: rotate(90deg);
}

.dropdown-content.open {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top-color: white;
}

/*------------------------------------
Flipboxes
------------------------------------*/
.flipbox {
  position: relative;
  /*perspective: 3000px;*/
  perspective: 8000px;
}

.front,
.back {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;

  transition: all 400ms;
}

.front:hover,
.back:hover {
  cursor: pointer;
}

.front {
  z-index: 2;
}

.back {
  transform: rotateY(180deg);
}

.flipbox.flipped .front {
  transform: rotateY(-180deg);
}

.flipbox.flipped .back {
  transform: rotateY(0deg);
}

.flipbox-btn:hover {
  padding: 8px 20px;
}
