.container {
    max-width: 100%;
}

.parent {
    display: flex;
    flex-direction: column;
    min-height: 100%;  
}

.parent .scrollable {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 90%;
    margin: 5em auto 0 auto;
}

@media (min-width: '1024px') {
    .parent {
        display: flex;
        flex-direction: column;
        height: 100%;  
    }

    .parent .scrollable {
        height: calc(100% - '90px');
        overflow: auto;
    }
}





.card-wrapper {
    background-color: #ffffff;
    border-radius: 4px;
    border: 1px solid #dedede;
}

.dropdown-items {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    min-width: 240px;
}

.dropdown-text-item-wrapper {
    background-color: #ffffff;
    border-bottom: #dedede;
    color: #000000;
    cursor: pointer;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.3;
    padding: 12px 16px
}

.dropdown-text-item-wrapper:hover {
    background-color: #293044;
    color: #ffffff;
}

.dropdown-text-item-wrapper:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}


.dropdown-text-item-wrapper:last-child {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom: none;
}

.dropdown-wrapper {
    position: relative;
}

.dropdown-wrapper-header {
    cursor: pointer;
    position: relative;
    width: 250px;
}

.dropdown-wrapper-body {
    position: absolute;
    top: calc(100% + 15px);
    bottom: unset;
    left: 0;
}

.dropdown-wrapper-body .is-bottom {
    top: "unset";
    bottom: calc(100% + 15px);
}

.btn.btn-primary {
    color: #FFFFFF;
    background: #C49E57;
}


.btn.btn-primary.btn-lg {
    height: 36px;
    font-family: Avenir;
    font-style: normal;
    font-weight: 800;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #C49E57;
    border-color: aliceblue;
}

.btn.btn-primary {
    width: 80%;
    height: 36px;
    font-family: Avenir;
    font-style: normal;
    font-weight: 800;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #C49E57;
    box-shadow: 0px 10px 10px rgba(156, 119, 51, 0.25);
    border-color: aliceblue;
}

.btn-primary:focus {
    box-shadow: 0 0 0 .2rem rgba(38,143,255,.5);
}

.spinner-border {
    width: 1rem !important;
    height: 1rem !important;
    font-size: 8px;
}

a {
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    
}
a, a h1 {
    -webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
    transition: all 0.2s ease;
   
}
a:hover {
    color: #c9945b;
    cursor: pointer;
}

a svg {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

@media screen and (min-width: 1024px) {
    nav.navbar-expand-lg .navbar-nav {
        flex: 1;
        align-items: center;
        text-align: right;
        justify-content: flex-end;
    }
    .profile-cards .card {
        width: calc(25% - 1em) !important;
        margin-bottom: 2em;
    }
    .event-cards .card {
        width: calc(33% - 1em) !important;
        margin-bottom: 2em;
    }
}

nav.navbar a.nav-link {
    font-weight: 500;
}

.nav-link.active {
    color: #a48302 !important;
}

h1, h2, h3, h4, h5, .nav-link, .card-title, .date, .comment-author {
    font-family: "IBM Plex Mono", sans-serif;
    color: #232425;
    font-weight: 700;
}

.nav-link a {
    color: gray !important;
}

.error-card-container.large.is_button {
    cursor: pointer;
}

.error-card-container.large.is_button:hover {
    opacity: 0.9;
    box-shadow: 2px 2px #DDD;
}