/* Row */
.row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-right: -15px;
    margin-left: -15px;
}

/* Generic Column */
.col {
    flex: 1 0 0% !important; /* Grow to fill available space, but do not shrink */
    padding-right: 15px !important;
    padding-left: 15px !important;
}

/* Full Width Column on All Screens */
.col-12 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

/* Column Specifics for Medium Devices */
@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mt-6{
    margin-top: 1.5rem;
}
.mt-3 {
    margin-top: 0.75rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-sm {
    font-size: small;
}


/* Style the dropdown button */
.dropbtn {
    cursor: pointer;
}

/* Container for the dropdown button and content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    text-decoration: none;
    display: block;
    font-size: 16px;
    line-height: 42px;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #dfdfdf;
    color: black;
}

.c-hidden {
    display: none;
}

.c-inline-block {
    display: inline-block;
}

.c-block {
    display: block;
}

@media (min-width: 900px) {
    .c-md-inline {
        display: inline !important;
    }

    .c-md-inline-block {
        display: inline-block !important;
    }

    .c-md-hidden {
        display: none !important;
    }
}
