body {
    min-height: 98vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.clickable{
  cursor: pointer;
}

.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.vertical-lr {
  writing-mode: vertical-lr;
}

.rotated {
  transform: rotate(180deg);
}

.sideways-lr {
  writing-mode: sideways-lr;
}

.only-rotate {
  inline-size: fit-content;
  transform: rotate(-90deg);
}

.show-large {
    display: none;
}

.show-medium {
    display: none;
}

.show-small {
    display: none;
}

@media only screen and (min-width: 992px){
    .show-large {
        display: block;
    }
}

@media only screen and (min-width: 576px) and (max-width: 991.8px){
    .show-medium {
        display: block;
    }
}

@media only screen and (max-width: 575.8px) {
    .show-small {
        display: block;
    }
}

