/* dropdown-content */
.card-button, .card-button-coming {
  position: relative;
  display: block;
  width: 100% !important;
  min-width: 160px;
  margin: 0 auto !important;
  padding: 7px 20px !important;
  font-size: 1rem;
  border: 1px solid #3b98ff;
  border-radius: 2px;
  outline: 0;
  background-color: #3b98ff;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.5s;
}
@media only screen and (min-width: 480px) {
  .card-button, .card-button-coming {
    width: 60%;
  }
}
.card-button:hover, .card-button-coming:hover {
    color: #fff;
    background-color: #00a8ff;
}
.card-button:focus,
.card-button-coming:focus,
.card-button:active,
.card-button-coming:active {
    color: #fff;
    outline-color: transparent;
    background-color: #00a8ff;
}

.wtb-dropdown {
  position: relative;
  width: auto;
  max-width: 250px;
  margin: 0 auto !important;
}
@media only screen and (max-width: 480px) {
  .wtb-dropdown {
    width: 100%;} }
@media only screen and (min-width: 768px) {
  .wtb-dropdown {
    margin: 0;
     } }
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  max-width: 240px;
  width:auto;
  box-shadow: 0px 0px 20px 5px rgba(0,0,0,.2);
  z-index: 19;
  bottom: 50px;
  left: 0;
  right: 0;
  margin: 0 auto !important;
  border-radius: 4px;
}
@media only screen and (max-width: 480px) {
  .dropdown-content {
    width: 100%;
  }
}
.dropdown-content::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom:-9px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
}
.dropdown-content::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom:-11px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 11px solid #ddd;
}
.dropdown-content a {
  color: #00a8ff;
  padding: 3px !important;
  text-decoration: none;
  display: block !important;
  font-weight: 400;
  font-size: 0.875rem;
  border-bottom: 1px solid #f2f2f2;
}
@media only screen and (min-width: 768px) {
  .dropdown-content a {
    padding: 5px !important; } }
.dropdown-content a:hover {
    background-color: #fff !important;
    color: #00a8ff;
    box-shadow: inset 3px 0 0 #00a8ff, inset -3px 0 0 #00a8ff;
}
.dropdown-content a div {
    margin: 0 auto;
    width: auto;
    height: 40px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 120px;
}
.dropdown-content a:first-child:hover {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.dropdown-content a:last-child{
    border-bottom: 0;
}
.dropdown-content a:last-child:hover {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.show {
  display: block;
}
