﻿ul {
    list-style-type: none;
    margin-left: -40px;
}

a {
    font-size: 13px;
    font-weight: bold;
    text-decoration: underline;
    color: #929088;
}

a:hover {
    color: #A3A19A;
    text-decoration: underline;
}

a.rosie-hyperlink-back {
    font-size: 14px;
    font-weight: bold;
    text-decoration: underline;
    color: #1EA1E6;
}

.rosie-container-master {
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.rosie-container-white {
    padding: 15px 25px 25px 23px; /*top right botton left, left margin needs to be 23px otherwise a scrollbar appears in Rosie */
    margin-right: 0px !important;
    margin-left: 0px !important;
    background-color: #FFF;
    /* width: 642px; */ /* Don't specify the width otherwise a scrollbar appears in Rosie */
}

.rosie-container-grey {
    padding: 15px 25px 25px 25px;
    margin-right: 0px !important;
    margin-left: 0px !important;
    background-color: #F4F4F1;
    width: 642px;
}

/*The top section needs a 25px border*/
.rosie-spacer-row-white {
    line-height: 10px;
    background-color: #FFF;
}

div.align-vertically {
    position: relative
}

div.align-vertically p {
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%)
}

/*Override the default Bootstrap row width to be the width of the conatiner window in Rosie*/
.row {
    width: 632px;
}

.rosie-record-row {
    line-height: 12px;
    padding-top: 8px; /* 20px */
    padding-right: 0px !important;
}

/*Section headers; these used to be the tab names in the Hub*/
.rosie-header-row {
    font-size: 18px;
    font-weight: 600;
    line-height: 17px;
    margin-bottom: 1px;
}

.rosie-underlined-header-row {
    font-size: 14px;
    font-weight: 600;
    line-height: 12px;
    text-decoration: underline;
}

/*Add a spacer between the field label and field data*/
.rosie-label-span {
    margin-right: 12px;
}

/*The Rosie label font weight and size*/
.rosie-label {
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    /*vertical-align: bottom;*/
}

.rosie-edit {
    /*width: 135px !important;*/
    height: 21px;
    border: solid;
    border-width: 2px;
    border-color: #D9D9D4;
    border-radius: 1px;
    outline: none;
}

.rosie-edit:hover {
    border-color: #D9D9D4;
}

.rosie-edit:focus {
    border-color: #C1C1B9;
}

.rosie-edit-small {
    width: 93px !important;
}

.rosie-edit-medium {
    width: 200px;
}

.rosie-edit-large {
    width: 465px;
}

.rosie-dropdown-medium {
    width: 135px;
    height: 27px;
    border: solid;
    border-width: 2px;
    border-color: #D9D9D4;
    border-radius: 1px;
    outline: none;
    margin-bottom: 4px;
}

.rosie-dropdown-medium:hover {
    border-color: #C8C7C3;
}

.rosie-dropdown-medium:focus {
    border-color: #C8C7C3;
}

/*Create the custome Rosie checkbox*/
.rosie-checkbox-container {
    
    position: relative;
    margin-left: 0px;
    padding-left: 22px;
    top: 2px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;   
}

.rosie-checkbox-container:hover {
    cursor: default;
}

/*Hide the browser's default checkbox*/
.rosie-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/*Create the custom Rosie checkmark*/
.rosie-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 13px;
    width: 13px;
    border-style: solid;
    border-width: 2px;
    border-color: #D2D2CE;
    border-radius: 2px;
}

.rosie-checkmark:hover {
    border-color: #9E9B93;
    cursor: default;
}

/*Checkbox needs a white background when checked*/
.rosie-checkbox-container input:checked + .rosie-checkmark {
    background-color: white;
}

/*Hide checkmark when not checked*/
.rosie-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/*Show the checked checkmark when a rosie-checkmark span exists immediately after a checked input tag, within a rosie-checkbox-container. Check*/
.rosie-checkbox-container input:checked + .rosie-checkmark:after {
    display: block;
}

/*Style the checkmark*/
.rosie-checkbox-container .rosie-checkmark:after {
    left: 4px;
    top: 0px;
    width: 3px;
    height: 9px;
    border: solid #424242;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
}

.rosie-button-red {
    background-color: #C11D17;
    border-color: #C11D17;
    color: #FFF;
    font-size: 12.5px;
    font-weight: 600;
    border-radius: 2px;
    outline: none;
    height: 34px;
    transition: 0.2s background ease-in-out;
    border: none;
    width: 120px;
}

.rosie-button-red:visited {
    background-color: #C11D17;
    border-color: #C11D17;
    color: #FFF;
    outline: none;
}

.rosie-button-red:hover {
    background-color: #AD0903;
    border-color: #AD0903;
    color: #FFF;
    cursor: pointer;
}

.rosie-button-red:focus, .rosie-button:active {
    box-shadow: none !important;
    background-color: #C11D17 !important;
    border-color: #C11D17 !important;
    outline: none !important;
}

.rosie-button-blue {
    background-color: #1EA1E6;
    border-color: #1EA1E6;
    color: #FFF;
    font-size: 12.5px;
    font-weight: 600;
    border-radius: 2px;
    outline: none;
    height: 34px;
    transition: 0.2s background ease-in-out;
    border: none;
    width: 120px;
}

.rosie-button-blue:visited {
    background-color: #1EA1E6;
    border-color: #1EA1E6;
    color: #FFF;
    outline: none;
}

.rosie-button-blue:hover {
    background-color: #1582BC;
    border-color: #1582BC;
    color: #FFF;
    cursor: pointer;
}

.rosie-button-blue:focus, .rosie-button:active {
    box-shadow: none !important;
    background-color: #1EA1E6 !important;
    border-color: #1EA1E6 !important;
    outline: none !important;
}

.rosie-button-grey {
    background-color: #D9D9D4;
    border-color: #D9D9D4;
    color: #424242;
    /*background-repeat: repeat-x;*/
    font-size: 12.5px;
    font-weight: 600;
    border-radius: 2px;
    outline: none;
    height: 34px;
    width: 120px;
    border: none;
    transition: 0.2s background ease-in-out;
}

.rosie-button-grey:visited {
    background-color: #D9D9D4;
    border-color: #D9D9D4;
    color: #424242;
    /*background-repeat: repeat-x;
    border-radius: 2px;*/
    outline: none !important;
    /*border: none;*/
}

.rosie-button-grey:focus, .rosie-button-grey:active {
    background-color: #D9D9D4;
    border-color: #D9D9D4;
    /*color: #424242;*/
    /*background-repeat: repeat-x;
    border-radius: 2px;*/
    outline: none;
    /*border: none;*/
    box-shadow: none !important;
}

.rosie-button-grey:hover {
    background-color: #C9C8C4;
    border-color: #C9C8C4;
    color: #424242;
    /*border:none;*/
    cursor: pointer;
    /*transition: 0.2s background ease-in-out;*/ /*Ideally this should fade in like it does in Rosie, but then it flashes once clicked*/
}

/*.rosie-button-grey:active {
    box-shadow: none !important;
    background: linear-gradient(180deg, rgba(117,117,114,0.8), rgba(192,191,186,0.8) 21%), linear-gradient(90deg, rgba(117,117,117,0.9), rgba(192,191,186,0.1) 5%), linear-gradient(270deg, rgba(117,117,117,0.9), rgba(192,191,186,0.1) 5%);
    border: none;
    outline: none !important;
    transition: none;
}*/

.rosie-table-header-row {
    line-height: 24px;
    background-color: #B4B1A9;
    color: white;
}

.rosie-table-row {
    background-color: white;
}

.rosie-table-row-alt {
    background-color: #F4F4F1;
}

.rosie-validation-error {
    background-image: url(../Images/RosieValidationError.png);
    background-repeat: no-repeat;
    padding-left:70px;
    min-height: 30px;
}

rosie-back-link {
    font-size: 13px;
    font-weight: bold;
    text-decoration: underline;
    color: #1EA1E6;
}

.menu-button {
    padding: 8px 18px;
    margin-right: 2px;
    text-decoration: none;
    color: white;
    border: none;
    background-color: #B4B1A9;
    height: 34px;
    transition: 0.2s background ease-in-out;
    border-radius: 2px;
    font-size: 15px;
}

.menu-button:hover {
    border: none;
    color: white;
    background-color: #9E9B93;
    text-decoration: none;
    cursor: pointer;
}

input[type=text] {
    height: 21px;
    border: solid;
    border-width: 2px;
    border-color: #D9D9D4;
    border-radius: 1px;
    outline: none;
    margin-bottom: 4px;
}

input[type=text]:hover {
    border-color: #D9D9D4;
}

input[type=text]:focus {
    border-color: #C1C1B9;
}

textarea {
    height: 21px;
    border: solid;
    border-width: 2px;
    border-color: #D9D9D4;
    border-radius: 1px;
    outline: none;
}

textarea:hover {
    border-color: #D9D9D4;
}

textarea:focus {
    border-color: #C1C1B9;
}

select {
    width: 135px;
    height: 27px;
    border: solid;
    border-width: 2px;
    border-color: #D9D9D4;
    border-radius: 1px;
    outline: none;
    margin-bottom: 4px;
}

select:hover {
    border-color: #C8C7C3;
}

select:focus {
    border-color: #C8C7C3;
}

.ui-dropdownchecklist {
    height: 27px !important;
    border: 2px solid #D9D9D4 !important;
    width: 450px !important;
    border-radius: 1px !important;
    outline: none !important;
}

.ui-dropdownchecklist-text {
    /*font-size: 14px;*/
    height: 27px !important;
    line-height: 27px !important;
    width: 450px !important;
    /*margin-right: 17px;*/ /* background dropdown.png image */
}

.ui-dropdownchecklist-hover, .ui-dropdownchecklist-active {
    background-image: url(dropdown.png) !important;
    border-color: #C8C7C3 !important;
}

input[type=radio] {
    visibility: hidden;
    position: absolute;
}

    input[type=radio] + label:before {
        height: 12px;
        width: 12px;
        margin-left: 2px;
        margin-right: 5px;
        margin-bottom: 8px;
        content: " ";
        display: inline-block;
        vertical-align: middle;
        border: 2px solid #C8C7C3;
        border-radius: 50%;
    }

input[type=radio]:hover + label:before {
    border-color: #C1C1B9;
}

input[type=radio]:checked + label:before {
    background: #444444;
}

.rosie-new-user-banner {
    padding-left: 20px;
    font-size: 14px;
    border: 4px solid red;
}

/*
input[type=checkbox] {
    visibility: hidden;
    position: absolute;
}

input[type=checkbox] + label:before {
    height: 12px;
    width: 12px;
    margin-right: 5px;
    margin-bottom: 4px;
    content: " ";
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #777;
}

input[type=checkbox]:checked + label:before {
    background: gold;
}

input[type=checkbox] + label:before {
    border-radius: 2px;
}
*/

.rosie-list-view-highlight-text, .rosie-list-view-highlight-text:hover {
    color: white;
    text-decoration: none;
}

