﻿/*!
    * Site.css
    * By: Kassandra Schmidt
    * Description: Custom CSS for the Benefits Comparison project (also known as the Side By Side).
 */

/*!
    16px = 1em (generally)

 */

:root {
    --brandBlue: #00ABBA;
    --brandBlueMedium: #E1F4FD;
    --brandBlueLight: #F4F9FC;
    --brandBlueDark: #313c47;
    --brandGreyDark: #CAC8C8;
    --brandGreyLight: #E6E7E8;
    --brandWhite: #FDFDFD;
    --brandRed: #F15956;
}

.container {
    margin: 0 auto;
    padding: 0;
    width: 1260px;
    max-width: 1260px;
}

/* Set padding to keep content from hitting the edges */
/*.body-content {
    padding-left: 15px;
    padding-right: 15px;
}*/

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

.text-success, .text-info {
    margin: 0;
    padding: 0;
    text-align: center;
}



.btn-extensis {
    border-color: var(--brandBlue);
    background-color: var(--brandBlue);
    border-radius: 1em;
    font-size: medium;
}

.btn-extensis:hover {
    background-color: var(--brandBlueMedium);
    color: black;
}

.program-table-header {
    color: #00ABBA; /*var(--brandBlue);*/
    font-weight: bolder;
    font-size: 20px;
    margin: 0px;
    padding-top: 0;
}

.date-range-header {
    color: #F15956; /*var(--brandRed);*/
    font-weight: bold;
    font-size: 14px;
    margin: 0px;
    padding-top: 0px;
}

.client-header {
    font-weight: bold;
    font-size: 18px;
    margin: 0px;
    padding-top: 0;
}

.group-header {
    font-size: 16px;
    margin: 0px;
    padding-bottom: 5px;
}

.plan-table {
    font-size: 9px;
    margin-bottom: 2px;
    width: 1260px;
}

td {
    border: 2px solid #CAC8C8; /*var(--brandGreyDark);*/
}

th.plan-names-first-column {
    background-color: #00ABBA; /*var(--brandBlue);*/
    font-weight: bold;
    width: 180px;
}

th.plan-names-remaining-columns {
    background-color: #00ABBA; /*var(--brandBlue);*/
    text-align: center;
    width: 220px;
}


td.plan-details-header-first-column {
    background-color: #F4F9FC; /*var(--brandBlueLight);*/
    color: var(--brandRed);
    font-weight: bold;
    width: 180px;
}

td.plan-details-header-remaining-columns {
    background-color: #F4F9FC; /*var(--brandBlueLight);*/
    color: var(--brandRed);
    font-weight: bold;
    text-align: center;
    width: 220px;
}

td.plan-details-first-column {
    background-color: #E6E7E8; /*var(--brandGreyLight);*/
    font-weight: bold;
    width: 180px;
}

td.plan-details-remaining-columns {
    text-align: center;
    width: 220px;
}

.disclaimer {
    font-size: 9px;
    margin: 0;
    padding-top: 2px;
}

.logo-header {
    max-width: 15em;
}