/* Main Page Setup */
html {
    overflow-y: scroll;
}

html,
body {
    background-color: #fbfbfb;
    min-height: 100vh;
    padding-right: 0 !important;
}

main {
    /* background-size: 80px 80px;
    background-image:
      radial-gradient(circle at center, rgba(255,255,255, 1) 0 , rgba(255,255,255, 1) 1px, transparent 1px),
      linear-gradient(to right, rgba(255,255,255, 1) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255, 1) 1px, transparent 1px); */
}

* {
    hyphens: none;
}

@media (min-width: 576px) {
    .dropdown:hover {
        display: block;
        margin-top: 0;
        /* opacity: 1;
        pointer-events: initial; */
    }
}

@media (min-width: 576px) {
    .dropdown-menu-center {
        right: unset !important;
    }
}

@media (max-width: 576px) {
    .dropdown-menu-center {
        margin-right: -24px;
    }
}

/* Global Styles */
iconify-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
}

.user {
    border: solid 2px orange;
    width: 2rem;
    height: 2rem;
    border-radius: 50px;
    object-fit: cover;
}

.main-nav > .nav-item > .nav-link {
    border-width: 2px;
}

.main-nav > .nav-item > .nav-link.active {
    border-bottom-color: #ffca00;
    border-width: 3px;
}

.main-nav > .nav-item > .nav-link:hover {
    border-bottom-color: #ffca00;
}

.justify {
    text-align: justify;
}

.hyphenate {
    hyphens: auto;
}

.link-icon {
    vertical-align: -0.2em;
}

.modal-open {
    overflow: auto;
    padding-right: 0 !important;
}

.modal {
    padding-right: 0 !important;
}

.navbar {
    z-index: 700;
}

.nav-link > .rotate-v {
    transition: all 0.3s ease;
}

.nav-link.show > .rotate-v {
    transform: rotateX(-180deg);
}

.list-group-item {
    background-color: inherit;
}

.dhover-card {
    transition: 0.2s;
}

.dhover-card:hover {
    background-color: rgb(var(--bs-secondary-bg-rgb)) !important;
}

.opacity-transition {
    transition: opacity 0.2s ease-in;
}

/* SWUP page transition styles */
.transition-main {
    transition-property: opacity, transform;
    transition-duration: 250ms;
    transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
    transform: translateX(0);
    opacity: 1;
}

html.is-animating .transition-main {
    opacity: 0;
    transform: translateX(-1em);
}

html.is-leaving .transition-main {
    transform: translateX(1em);
}

html.is-animating.to-left .transition-main {
    opacity: 0;
    transform: translateX(1em);
}

html.is-leaving.to-left .transition-main {
    transform: translateX(-1em);
}

/* Home */

.hover {
    transition: 0.3s;
}

.hover:hover {
    transform: translateY(-0.5rem);
}

/* Footer */
.footer-icon-section {
    display: flex;
    justify-content: center;
    gap: 1.6rem;
    margin-top: 1.2rem;
}

