/* Stylesheet for Price Transparency */

/* Global elements */
body {
    padding: 15px;
    background-color: #f7f7f7;
    font-family: 'proxima-nova', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: .05rem;
    color: #555;
}

body :link, :visited {
    color: #555;
}

h2 {
    margin: 0;
    font-family: "Sentinel A", "Sentinel B", serif;
    font-size: 31px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: .13rem;
    color: #00acc8;
}


/*
 * Page header row 
 */

#page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#page-header-left {
	width: 33%;
    text-align: left;
    vertical-align: top;
    margin-bottom: 20px;
}
.logo svg#russell-medical {
    width: 250px;
}

#page-header-center {
    vertical-align: top;
    margin-bottom: 20px;
}

#page-header-right {
	width: 33%;
    text-align: right;
    vertical-align: top;
    text-align: right;
    margin-bottom: 20px;
}

#page-header-right .note {
    padding: 1px 0;
}

@media screen and (max-width: 992px) {
    #page-header {
        flex-direction: column;
    }
    #page-header-left, #page-header-center, #page-header-right {
        width: 100%;
        text-align: center;
    }
}

/* 
 * Selector row 
 */

#selector-row {
    display: flex; 
    justify-content: space-between;
}

#selector-row-left {
    align-self: flex-end;
}

/* #selector-row-center {

} */

#selector-row-right {
    align-self:flex-end;
    padding-bottom: 15px;
    padding-right: 5px;
    text-align: right;
    vertical-align: bottom;
}

#selector-row-right a, #selector-row-right a:link {
    color: #555;
}

/* Plan selection checkboxes */

#plan-checkbox-div ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 4px;
}

#plan-checkbox-div ul li {
    display:inline;
    padding-right: 10px;
    white-space: nowrap;
}


/* Initialize all columns to HIDE when page is first loaded */
th[id^='plan-'], td[class^='plan-'] {
    display: none; 
}

/* Background color of header cell for plans */
th[id$='-head']
{
    color: #00acc8 !important;
    background-color: white !important;
}

/* 
 * Pricing table 
 */

 .table-wrapper {
    padding: 0;
    margin: 0;
    vertical-align: top;
    overflow-x: scroll;
 }

 .scroll-note {
    display: none;
    text-align: center;
    margin: 10px auto;
    font-size: 14px;
    color: #00acc8;
 }

 @media screen and (max-width: 992px) {
    .scroll-note {
        display: block;
    }
}

#price-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
}

#price-table tr:nth-of-type(even) {
    background-color: #f0f0f0;
}

#price-table th {
    padding: 5px;
    background-color: #00acc8;
    color: white;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    min-width: 110px;
    border: 1px solid #ccc;
}

#price-table th:nth-child(2),
#price-table th:nth-child(3) {
    min-width: 270px;
}

#price-table td {
    padding: 5px;
    line-height: 20px;
    border: 1px solid #ccc;
}

#price-table tr:hover {
    background-color: #eee;
}

#price-table .service-separator td {
    padding: 0;
}

.shop-svc-name {
    font-weight: bold;
}

/* Price field */
.price {
    text-align: right;
}

.price:before {
    content: "$ ";
}

/* Notes and disclaimers */
#notes {
    margin: 8px 0;
    padding: 10px;
    border: 1px solid #00acc8;
}

/* Top link */
#to-top {
    margin: 8px 0;
}

/* Hospital-specific adjustments */
#col-shopsvc {
    width: 15%;
}

#col-procedure-code {
    width: 10%;
    overflow-wrap: break-word;
}


/* Footer */
footer {
    margin: 60px auto;
}
footer p {
    text-align: center;
}