h1 {
	font-size: 2.7rem;
    /*font-weight: 400;*/
	color: var(--color-text-medium-grey);
}

h2 {
    font-size: 1.6rem;
    /*font-weight: 400;*/
	color: var(--color-text-medium-grey);
}

h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0 0 0.5rem;
	color: var(--page-header-color);
}

p {
    font-size: 0.95rem;
    font-weight: 400;
    margin: 0 0 12px;
    line-height: 1.45rem;
	color: var(--color-text-dark-grey);
}

b {
    font-size: 0.95rem;
    line-height: 1.45rem;
	color: var(--color-text-dark-grey);
}

strong {
    font-size: 0.95rem;
    line-height: 1.45rem;
	color: var(--color-primary);
}

/* the row of issuevalues in the bid table.*/
.issuevalues {
	display:flex; 
	flex-flow: row nowrap;
	width: 100%; 
}

.issuevalue {
    font-size: 0.95rem;
    width:30%;
	color: var(--color-text-medium-grey);
}

.issueheader {
    font-size: 0.95rem;
    width:30%;
	color: var(--color-text-dark-grey);
}


.styledRadioGroup {
    font-size: 0.8rem;
    color: var(--color-text-medium-grey);
    margin: 0 0 4px 0px;
    min-width: 150px;
    max-width: fit-content;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
}

.styledRadioGroup input,
.styledRadioGroup label {
    margin: 0;
    padding-top: 3px;
}

.styledRadioGroup input {
    width: 20px;
}

.styledRadioGroup label {
    width: calc(100% - 20px);
    font-size: 0.8rem;
    color: var(--color-text-medium-grey);
    text-align: left;
}

.styledSelect {
    position: relative;
	box-shadow: 0 0.2em 0.4em rgba(100, 100, 100, 0.1);
    transition: box-shadow 150ms ease-in-out;
	border-radius: 4px;
    margin: 0px 4px 12px;
    min-width:60px;
    width:fit-content;
    background-color: var(--color-input-background);
 }

.styledSelect select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
    position: relative;
    font-size: 0.85rem;
    font-family: var(--font-header);
	background: transparent;
    color: var(--color-text-dark-grey);
	border-bottom: 1px solid var(--color-primary);
	border-radius: 0;
    height: 100%;
    width: 100%;
    min-width: 256px;
    max-width: fit-content;
    padding: 4px 8px;
    vertical-align: middle;
}

.styledSelect i {
    color: var(--color-primary);
    position: absolute;
    font-size: 18pt;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.styledSelect:hover, .styledSelect:active {
    box-shadow: 0 0.6em 1.0em rgba(100, 100, 100, 0.15);
}

.styledSelectHeader {
    font-size: 0.8rem;
    color: var(--color-text-medium-grey);
    margin: 0 0 4px 0px;
    min-width: 150px;
    max-width: 256px;
}

.styledInputLabel {
    font-size: 0.8rem;
    color: var(--color-text-medium-grey);
    margin: 0 0 4px 0px;
    min-width: 150px;
    max-width: 256px;
    width: auto;
    text-align: left;
    padding: 0px 0px;
    display: flex;
    flex-direction: row;
}

.styledInput {
    font-size: 1rem;
    color: var(--color-primary);
    right: 0;
    width: 256px;
    margin: 0;
    border-bottom: 1px solid var(--color-primary);
    box-shadow: 0 0.3em 0.6em rgba(100, 100, 100, 0.1);
    border-radius: 0px;
    padding: 4px 8px;
    margin: 0 0 12px;
    box-sizing: border-box;
    background-color: var(--color-input-background) !important;
}

.issue i {
    cursor: pointer;
}

.styledTextArea {
    color: var(--color-primary);
    right: 0;
    width: 90%;
    margin: 0;
    border-bottom: 1px solid var(--color-primary);
    box-shadow: 0 0.3em 0.6em rgba(100, 100, 100, 0.1);
    border-radius: 0px;
    padding: 4px 8px;
    margin: 0 0 12px;
    box-sizing: border-box;
    font-size: 1rem;
    background-color: var(--color-input-background);
}


.styledValue {
    font-size: 0.8rem;
    width:100%;
    color: var(--color-text-medium-grey);
    padding-left: 12px;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 30px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--color-secondary);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--color-secondary);
}

input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}

input {
    background: transparent;
    color: var(--color-text-dark-grey);
    padding: 0px 4px;
    width: 100%;
    font-size: 1rem;
    font-family: var(--font-header);
    background-color: var(--color-input-background);
}

input:disabled {
	border-bottom: 0px solid var(--color-text-light-grey);
    box-shadow: none;
    background-color: var(--color-input-background-disabled);
}

input:disabled:hover {
    box-shadow: none;
}

input:hover, input:active {
    box-shadow: 0 0.6em 1.0em rgba(100, 100, 100, 0.15);
}



textarea {
    background: transparent;
    color: var(--color-text-dark-grey);
    padding: 0px 4px;
    /*    box-sizing: border-box; */
    width: 100%;
    font-size: 1rem;
    font-family: var(--font-header);
    max-height: 400px;
    min-height: 60px;
    resize: vertical;
    background-color: var(--color-input-background);
}

textarea.horiz {
    resize: horizontal;
    max-width: 800px;
    min-width: 200px;
}

textarea:disabled {
    border-bottom: 0px solid var(--color-text-light-grey);
    box-shadow: none;
}

textarea:disabled:hover {
    box-shadow: none;
}

textarea:hover, textarea:active {
    box-shadow: 0 0.6em 1.0em rgba(100, 100, 100, 0.15);
}

th {
	font-size: 14pt;
	font-weight: 400;
	padding: 0.5rem;
	color: var(--color-text-dark-grey);
}

.p-style {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.45rem;
	color: var(--color-text-dark-grey);
}
