/**
 * BASIC TYPOGRAPHY AND TYPOGRAPHICAL UTILITIES
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body, html, th, td {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
}

body, html {
    height: 100%;
    color: #303032;
}

h1, h2, h3, h4 {
    font-family: "Montserrat";
}

.text-small {
    font-size: 80%;
}

.text-large {
    font-size: 120%;
}

fieldset legend {
    display: none;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

td {
    padding: 4px 10px;
}

/**
 * Navbar and Footer
 */

.navbar {
    background-color: #292c2c;
    background-image: url(images/green_background.jpg);
}

.navbar a.navbar-brand {
    font-family: "Montserrat";
    font-size: 24px;
    text-transform: none !important;
    font-weight: 600;
}
@media (max-width: 575.98px) {
    .navbar a.navbar-brand {
        font-size: 20px;
    }
}

.navbar a:not(.btn) {
    color: #FFF;
    text-decoration: none;
    text-transform: uppercase;
}
.navbar a:not(.btn):focus,
.navbar a:not(.btn):active,
.navbar a:not(.btn):hover {
    color: #FFF;
    text-decoration: underline;
}

.navbar img {
    width: 8%;
}

.footer {
    background-color: #292c2c;
    color: #FFF;
}

.footer a:not(.btn) {
    color: #FFF;
    text-decoration: none;
}
.footer a:not(.btn):focus,
.footer a:not(.btn):active,
.footer a:not(.btn):hover {
    color: #46C4B0;
    text-decoration: underline;
}


/**
 * FORM CONTROLS
 */

input[disabled], input[readonly],
select[disabled], select[readonly]
textarea[disabled], textarea[readonly] {
    cursor: not-allowed;
    background-color: #FAFAFA;
}

#reportarea ul.nav-pills .nav-link {
    border: 1px solid black;
}
#reportarea ul.nav-pills .nav-link:not(.active) {
    background-color: #FFF;
    color: #000;
}



/**
 * BUTTONS AND LINKS AND COLORS
 */

main a:not(.btn),
main a.btn-link {
    font-weight: bold;
}

.btn-link,
a:not(.btn) {
    color: #14816e;
}
.btn-link:active,
.btn-link:hover,
.btn-link:focus,
a:not(.btn):active,
a:not(.btn):hover,
a:not(.btn):focus {
    color: #d34427;
}

.btn {
    border-radius: 0;
}

.btn-primary {
    color: #FFF;
    background-color: #d34427;
    border-color: #d34427;
}
.btn-primary:active,
.btn-primary:hover,
.btn-primary:focus {
    color: #d34427;
    background-color: #FFF;
    border-color: #d34427;
}
.btn-primary:disabled {
    color: #FFF;
    background-color: #d34427;
    border-color: #d34427;
}

.btn-secondary {
    color: #14816e;
    background-color: #FFF;
    border-color: #14816e;
}
.btn-secondary:active,
.btn-secondary:hover,
.btn-secondary:focus {
    color: #FFF;
    background-color: #14816e;
    border-color: #14816e;
}
.btn-secondary:disabled {
    color: #14816e;
    background-color: #FFF;
    border-color: #14816e;
}

.form-check-input {
    border-color: #14816e;
}
.form-check-input:checked {
    background-color: #14816e;
    border-color: #14816e;
}

.color-white {
    color: white;
}
.color-black {
    color: #303032;
}


/**
 * CONTENT CATEGORY PILLS
 * small version and large version with icons
 */

.theme-pill {
    border: 3px solid silver;
    border-radius: 800px;
    text-transform: uppercase;
    width: 200px;
    height: 40px;
    line-height: 14px;
    font-size: 20px;
    font-weight: 500;
    padding: 10px;
    text-align: center;
}

.theme-pill.theme-pill-protect {
    border-color: #52A386;
}
.theme-pill.theme-pill-restore {
    border-color: #0098D6;
}
.theme-pill.theme-pill-connect {
    border-color: #D9531E;
}
.theme-pill.theme-pill-science {
    border-color: #8B2C23;
}

.theme-pill.theme-pill-large {
    width: 100%;
    max-width: 275px;
    height: 65px;
    line-height: 60px;
    padding: 0 0 0 10%;
    left: 50px;
    font-size: 23px;
    text-align: center;
    background-repeat: no-repeat;
}

.theme-pill.theme-pill-large.theme-pill-protect {
    background-image: url(images/pill-protect.svg);
    background-position: 7px 5px;
    padding-left: 40px;
}
.theme-pill.theme-pill-large.theme-pill-restore {
    background-image: url(images/pill-restore.svg);
    background-position: 8px 5px;
    padding-left: 40px;
}
.theme-pill.theme-pill-large.theme-pill-connect {
    background-image: url(images/pill-connect.svg);
    background-position: 7px 5px;
    padding-left: 40px;
}
.theme-pill.theme-pill-large.theme-pill-science {
    background-image: url(images/pill-science.svg);
    background-position: 8px 6px;
    padding-left: 40px;
}
