﻿:root {
    --primary-red: #BF311A;
    --primary-red-50percent: #DF988D;
    --primary-red-10percent: #F2D6D1;

    --primary-yellow: #D4942A;
    --primary-yellow-50percent: #E8C38B;
    --primary-yellow-10percent: #F4E4CB;
    
    --primary-blue: #1a9aa9;
    --primary-blue-50percent: #80CBD3;
    --primary-blue-10percent: #CBEAEF;
    
    --primary-gray: #4E4D4D;
    --primary-gray-50percent: #868C8C;
    --primary-gray-10percent: #DEDFDB;
    
    --button-color: var(--primary-red);
    --button-color-hover: var(--primary-red-50percent);
    --primary-background-color: var(--primary-red);
    --headertag-text-color: #000;
    --footer-background-color: var(--primary-red);
    --primary-link-color: var(--primary-blue);
    --primary-link-color-hover: var(--primary-blue-50percent);
}
section#main {
    min-height: 300px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--headertag-text-color);
    font-weight: bold;
}

/* text */
.red, .text-red {
    color: #ff0000 !important;
}
.grey, .text-grey {
    color: #494343 !important;
}
.green, .text-green {
    color: #195928 !important;
}
.blue, .text-blue {
    color: #3236a8 !important;
}
.purple, .text-purple {
    color: #9132a8 !important;
}
.yellow, .text-yellow {
    color: #d4910b;
}
.bold {
    font-weight: bold;
}
.italic {
    font-style: italic;
}
.underline {
    text-decoration: underline;
}
.text-size-90percent {
    font-size: .9rem;
}
.text-size-75percent {
    font-size: .75rem;
}
.text-size-50percent {
    font-size: .5rem;
}

/* core controls */
input[type=text], input[type=tel], input[type=email], input[type=checkbox], input[type=radio], select, textarea {
    border-color: #a0a0a0 !important;
    margin-bottom: 2px;
}

/* template stuff */

.full-width, .full-width * {
    width: 100%;
}

.required-field-label::after {
    content: ' *';
    color: #ff0000;
}
.required-field-highlight {
	border: 1px solid #ff0000;
	background-color: #ffcecf;
}

.responsive-button-group {
    padding: 20px;
}

.responsive-button-group button, .responsive-button-group input[type=submit], .responsive-button-group a {
    margin-right: 10px;
    margin-bottom: 10px;
}

.environmentText {
    margin: 10px;
    text-align: center;
    font-weight: bold;
    color: #000000;
    background-color: lime;
    border: 2px solid #ff0000;
}
