﻿/* OTHER affected css
style.css for navigation.
form.css for tab and wrapper
ie.css for special IE specific rendering...
*/

div.honeygrid {
    margin-top: 10px;
    background-color: #F7F7F7;
    border-radius: 10px;
    box-shadow: 0 0 4px #CCCCCC;
    border-style: solid;
    border-width: 1px;
    border-color: #98C6EA; /* powder blue */
    display: block;
    /*float: left;*/
}


div.honey {
    margin-top: 10px;
    background-color: #F7F7F7;
    border-radius: 10px;
    box-shadow: 0 0 4px #CCCCCC;
    border-style: solid;
    border-width: 1px;
    border-color: #98C6EA; /* powder blue */
    display: block;
    /*float: left;*/
}

    /* Header portion of the honey
NOTE: <H3> must be used.
*/
    /*div.honey > h3:first-child*/
    div.honey > h3:first-child {
        font-weight: bold;
        color: #333333;
        padding: 5px 5px 5px 10px;
        margin: 0; /* border-radius needed because it would create rounded-corner box-shadow.
    Now not needed since the box-shadow is moved to <hr> below.
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    */
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        background-color: #F0F0F0;
    }

    div.honey div > h3 {
        font-weight: bold;
        color: #333333;
        padding: 5px 5px 5px 10px;
        margin: 0; /* border-radius needed because it would create rounded-corner box-shadow.
    Now not needed since the box-shadow is moved to <hr> below.
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    */
        background-color: #F0F0F0;
    }

div.honeygrid > h3:first-child,
div.honeygrid div > h3 {
    font-weight: bold;
    color: #333333;
    padding: 5px 5px 5px 10px;
    margin: 0; /* border-radius needed because it would create rounded-corner box-shadow.
    Now not needed since the box-shadow is moved to <hr> below.
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    */
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: #F0F0F0;
}


/* line element right after the header */
/*.honey > h3:first-child + hr */
.honey > h3:first-child + hr,
.honey div > h3 + hr,
.honeygrid > h3:first-child + hr,
.honeygrid div > h3 + hr {
    margin: 0px !important;
    box-shadow: 0 0 1px #DDDDDD;
}

/* Required field within honey receives blue color */
.honey .requiredField,
span.requiredField {
    color: #1D507D;
    text-transform: capitalize;
}


.honey hr,
.honeygrid hr {
    margin: 0px !important;
}

/* Table portion of the honey */
.honey table,
.honey div table {
    padding: 10px 10px 10px 10px; /* right and bottom are smaller because the <TD> is padded additionally */
    width: 100%;
    font-size: 12px;
    border-collapse: separate;
    empty-cells: show;
}

    /* Table portion of the honey + RadCombo box */
    .honey table div[class^="Rad"] table {
        padding: 0px;
    }

.honey > div[class^="RadTabStrip"] {
    padding-bottom: 0px; /* bottom part of the TabStrip should connect with the actual page */
}


/* Table portion of the honey */
.honey table.rgMasterTable,
.honey div table.rgMasterTable {
    padding: 0px; /* right and bottom are smaller because the <TD> is padded additionally */
}



/* VIEW version of the TABLE */
.honey.view > table {
    padding: 0px; /* necessary for the borders to go all way across */
    /*   width: 100%;
    font-size: 12px;
    border-collapse: separate;
    empty-cells: show;
*/
}

/* FULL (width) for the honey */
.honey.full {
    width: 100%;
}

/* DIV portion instead of TABLE */
.honey > div,
.honeygrid > div {
    padding: 5px;
}

.honeystrip {
    padding: 5px !important;
}

/* DIV portion instead of TABLE */
.honey > div.nopadding,
.honeygrid > div.nopadding {
    padding: 0px;
}


/* action DIV for buttons (but not buttons themselves) */
div.action {
    padding-top: 10px;
    display: inline-block; /* it works but don't know why... :( */
}

.honey tr td.label {
    background-color: #F7F7F7; /*	border-bottom: 1px solid white;  (very thin white line for label) */
    color: #888888;
    font-weight: normal;
    margin-bottom: 10px;
    margin-top: 2px;
    text-align: right;
    white-space: nowrap;
    padding: 4px 4px 4px 0px;
    vertical-align: top;
}

.honey tr td.snapshot_label_value {
    background-color: #F7F7F7; /*	border-bottom: 1px solid white;  (very thin white line for label) */
    color: #000000;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 2px;
    text-align: right;
    white-space: nowrap;
    padding: 4px 4px 4px 0px;
    vertical-align: top;
    width: 150px;
}

.honey tr td.snapshot_label {
    background-color: #F7F7F7; /*	border-bottom: 1px solid white;  (very thin white line for label) */
    color: #000000;
    font-weight: normal;
    margin-bottom: 10px;
    margin-top: 2px;
    text-align: right;
    white-space: nowrap;
    padding: 4px 4px 4px 0px;
    vertical-align: top;
    width: 150px;
}


.honey tr td {
    /*white-space: nowrap; /* do not spill over to the next line!! */
    /*background-color: #F7F7F7;*/
    color: #222222; /* black */
    font-weight: normal;
    line-height: 18px;
    padding: 4px 4px 4px 0px;
    /*text-align: left;*/
    vertical-align: top;
}

.honey.view tbody tr td {
    background-color: #FFFFFF;
}


/* VIEW TD contains the thin lines */
.honey.view tr td {
    border-right: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
}

.honey.view tbody tr:last-child td {
    border-bottom: 0px;
}

.honey.view tr td:last-child {
    border-right: 0px;
}


/* VIEW THEAD TD contains the BOLD and thin lines */
.honey.view thead tr td {
    font-weight: bold !important;
    border-bottom: 1px solid #cccccc !important;
}


/* standard TH, TD */
th, td {
    border: medium none;
    padding: 6px;
    padding: 0;
}

.honey th, .honey tr {
    /*border-bottom: 1px solid white;*/
}

/*
Input related adjustment
*/


.Sugar_TelerikComboBox input[type="text"],
.Sugar_TelerikComboBox input[type="text"]:focus {
    background-color: transparent !important;
    border: 0px solid transparent !important;
    /*width: 240px !important;*/
    width: auto !important;
}


.honey textarea, .honey input[type="text"], .honey input[type="password"], .detail input[type="password"], .honey input[type="email"], .honey input[type="url"], .honey input[type="date"], .honey input[type="number"], .honey input[type="time"], .honey input[type="date"], .honey input.date {
    /*
	border: 1px solid #CCCCCC;
	border-radius: 3px;
	box-shadow: 0 1px 0 #FFFFFF;
	padding: 3px;
	margin: 0;
*/
    width: 244px;
}

.honey select {
    /*
	border: 1px solid #CCCCCC;
	border-radius: 3px;
	box-shadow: 0 1px 0 #FFFFFF;
	padding: 3px;
	margin: 0;
*/
    width: 250px;
}

.honey select {
    padding: 1px 3px 1px 1px;
    height: 24px;
}

/* for radio button */
.honey input[type="radio"] {
    margin: 0 5px 3px 12px;
}

/* radio button text (within the honey frame) */
.honey td[scope="radio"] {
    padding: 6px 6px 6px 6px;
}

/* Checkbox */
.honey input[type="checkbox"] {
    display: inline;
    margin: 4px 3px 6px;
}

/* Date type specific styles */
/* Date (NOTE: ID end with "Date") */
.honey input.date {
    width: 70px;
}

/* State */
.honey select.state, .honey select[id$="State"] {
    width: 55px;
}

/* Zip */
.honey input.zip, .honey input[id$=Zip] {
    width: 70px; /* length enough for XXXXX-XXXX */
}



/* input field in focus */
.honey input[type="radio"]:focus, .honey select:focus, .honey textarea:focus, .honey input[type="text"]:focus {
    color: #000;
    background-color: #E4ECF3;
}





/* Rounded bottom and the border of the table */
table.honey tr:last-child {
    border-bottom: 0px none;
}

    table.honey tr:last-child > td {
        border-bottom: 0px none;
    }

        table.honey tr:last-child > td:first-child {
            -moz-border-radius-bottomleft: 10px;
            border-bottom: 0px none;
        }

        table.honey tr:last-child > td:last-child {
            -moz-border-radius-bottomright: 10px;
            border-bottom: 0px none;
        }


/* VIEW version of rounded corner for TD */
.honey.view tr:first-child td:first-child {
    border-top-left-radius: 10px;
}

.honey.view tr:first-child td:last-child {
    border-top-right-radius: 10px;
}

.honey.view tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

.honey.view tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}




/*
Needed because certain controls take more than one row or column,
and the above psuedo-class (last-child, first-child, etc) cannot
handle such occasions.
*/
.roundedTopLeftCorner {
    -moz-border-radius-topleft: 10px !important;
}

.roundedTopRightCorner {
    -moz-border-radius-topright: 10px !important;
}

.roundedBottomLeftCorner {
    -moz-border-radius-bottomleft: 10px !important;
}

.roundedBottomRightCorner {
    -moz-border-radius-bottomright: 10px !important;
}


/*
11/19/2011 KN
neutralize honey so that calendar control work correctly.
*/
.honey .cal_Theme1 td {
    font-style: normal;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

/*
.honey input[type="text"].rcbInput
{
    width: 50px !important;
    padding: 0 0 0 0;
}
*/

#ctl00_ContentPlaceHolder1_ucDiagnosisCodeKareo_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucAMDDiagnosisCode_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucAthenaDiagnosisCode_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDrChronoDiagnosisCode_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucCareCloudDiagnosisCode_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode01AMD_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode02AMD_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode03AMD_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode04AMD_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode01AMD_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode02AMD_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode03AMD_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode04AMD_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode01Kareo_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode02Kareo_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode03Kareo_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode04Kareo_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode01Kareo_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode02Kareo_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode03Kareo_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode04Kareo_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode01DrChrono_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode02DrChrono_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode03DrChrono_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode04DrChrono_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode01DrChrono_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode02DrChrono_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode03DrChrono_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode04DrChrono_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode01CareCloud_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode02CareCloud_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode03CareCloud_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode04CareCloud_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode01CareCloud_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode02CareCloud_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode03CareCloud_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode04CareCloud_radDiagnosisComboBox_Input:hover,

#ctl00_ContentPlaceHolder1_ucDiagnosisCode01ModMed_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode02ModMed_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode03ModMed_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode04ModMed_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode01ModMed_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode02ModMed_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode03ModMed_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode04ModMed_radDiagnosisComboBox_Input:hover,

#ctl00_ContentPlaceHolder1_ucDiagnosisCode01ChartLogic_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode02ChartLogic_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode03ChartLogic_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode04ChartLogic_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode01ChartLogic_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode02ChartLogic_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode03ChartLogic_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode04ChartLogic_radDiagnosisComboBox_Input:hover,

#ctl00_ContentPlaceHolder1_ucDiagnosisCode01AllScripts_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode02AllScripts_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode03AllScripts_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode04AllScripts_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode01AllScripts_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode02AllScripts_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode03AllScripts_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode04AllScripts_radDiagnosisComboBox_Input:hover,

#ctl00_ContentPlaceHolder1_ucDiagnosisCode01Athena_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode02Athena_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode03Athena_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode04Athena_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode01Athena_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode02Athena_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode03Athena_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode04Athena_radDiagnosisComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_radExternalProviderComboBox_Input,
#ctl00_ContentPlaceHolder1_radExternalProviderComboBox_Input:hover {
    width: 56px !important;
}

td.large_radcombobox div input {
    width: 246px !important;
    padding: 1px 0px 1px 2px !important;
    height: 21px !important;
    margin-top: 0px !important;
}

    td.large_radcombobox div input:hover {
        width: 246px !important;
        padding: 1px 0px 1px 2px !important;
        height: 21px !important;
        margin-top: 0px !important;
    }

#uc_emrscriptorderlog_fullpage_radClientComboBox_Input,
#uc_emrscriptorderlog_fullpage_radClientComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_uc_emrscriptorderlog_fullpage_radClientComboBox_Input,
#ctl00_ContentPlaceHolder1_uc_emrscriptorderlog_fullpage_radClientComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_radwindowsPopUpProductToTransfer_C_radClientComboBox_Input,
#ctl00_ContentPlaceHolder1_radwindowsPopUpProductToTransfer_C_radClientComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_radClientComboBox_Input,
#ctl00_ContentPlaceHolder1_radClientComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_radGenericComboBox_Input,
#ctl00_ContentPlaceHolder1_radGenericComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_radOpticalRxOtherProvider_Input,
#ctl00_ContentPlaceHolder1_radOpticalRxOtherProvider_Input:hover,
#ctl00_ContentPlaceHolder1_radVisitPatientComboBox_Input,
#ctl00_ContentPlaceHolder1_radAppointPatient_Input:hover,
#ctl00_ContentPlaceHolder1_radAppointPatient_Input,
#ctl00_ContentPlaceHolder1_radwindowsPopUpProductToTransfer_C_ObjucProductDropDown_radProductComboBox_Input,
#ctl00_ContentPlaceHolder1_radwindowsPopUpProductToTransfer_C_ObjucProductDropDown_radProductComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_radVisitPatientComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucProductDropDown_radProductComboBox_Input,
#ctl00_ContentPlaceHolder1_ucProductDropDown_radProductComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucProduct_ucProductDropDown_radProductComboBox_Input,
#ctl00_ContentPlaceHolder1_ucProduct_ucProductDropDown_radProductComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucPromotionUpdate_ucProductDropDown_radProductComboBox_Input,
#ctl00_ContentPlaceHolder1_ucPromotionUpdate_ucProductDropDown_radProductComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucProduct_ucLinkedProductDropDown_radProductComboBox_Input,
#ctl00_ContentPlaceHolder1_ucProduct_ucLinkedProductDropDown_radProductComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_RadManufacturerComboBox_Input,
#ctl00_ContentPlaceHolder1_RadManufacturerComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_RadBrandComboBox_Input,
#ctl00_ContentPlaceHolder1_RadBrandComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_RadCollectionComboBox_Input,
#ctl00_ContentPlaceHolder1_RadCollectionComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_RadStyleComboBox_Input,
#ctl00_ContentPlaceHolder1_RadStyleComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_radAthenaFacilityComboBox_Input,
#ctl00_ContentPlaceHolder1_radAthenaFacilityComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucProduct_radAthenaMedicationComboBox_Input,
#ctl00_ContentPlaceHolder1_ucProduct_radAthenaMedicationComboBox_Input:hover,
#ucSplitInv_ucProductDropDown_radProductComboBox_Input,
#ucSplitInv_ucProductDropDown_radProductComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_radProduct_Input,
#ctl00_ContentPlaceHolder1_radProduct_Input:hover,
#ctl00_ContentPlaceHolder1_radExternalProviderComboBox_Input,
#ctl00_ContentPlaceHolder1_radExternalProviderComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucGenericSearchLensDesign_radGenericComboBox_Input,
#ctl00_ContentPlaceHolder1_ucGenericSearchLensDesign_radGenericComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucGenericSearchLensMaterial_radGenericComboBox_Input,
#ctl00_ContentPlaceHolder1_ucGenericSearchLensMaterial_radGenericComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucGenericSearchLens_radGenericComboBox_Input,
#ctl00_ContentPlaceHolder1_ucGenericSearchLens_radGenericComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucGenericSearchLensTreatment1_radGenericComboBox_Input,
#ctl00_ContentPlaceHolder1_ucGenericSearchLensTreatment1_radGenericComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucGenericSearchLensTreatment2_radGenericComboBox_Input,
#ctl00_ContentPlaceHolder1_ucGenericSearchLensTreatment2_radGenericComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucGenericSearchLensTreatment3_radGenericComboBox_Input,
#ctl00_ContentPlaceHolder1_ucGenericSearchLensTreatment3_radGenericComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucGenericSearchFrameType_radGenericComboBox_Input,
#ctl00_ContentPlaceHolder1_ucGenericSearchFrameType_radGenericComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_radPatientComboBox_Input,
#ctl00_ContentPlaceHolder1_radPatientComboBox_Input:hover,
#ucMergeProductDuplicates_rcbBaseProduct_Input,
#ucMergeProductDuplicates_rcbBaseProduct_Input:hover {
    width: 246px !important;
}


#ctl00_ContentPlaceHolder1_ucReferralProviderDropDownAMD_radReferralProviderComboBox_Input,
#ctl00_ContentPlaceHolder1_ucReferralProviderDropDownAMD_radReferralProviderComboBox_Input:hover {
    width: 56px !important;
}

#ctl00_ContentPlaceHolder1_ucDiagnosisCodeKareo_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucAMDDiagnosisCode_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucCareCloudDiagnosisCode_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDrChronoDiagnosisCode_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucAthenaDiagnosisCode_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode01AMD_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode02AMD_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode03AMD_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode04AMD_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode01Kareo_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode02Kareo_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode03Kareo_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode04Kareo_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode01CareCloud_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode02CareCloud_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode03CareCloud_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode04CareCloud_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode01DrChrono_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode02DrChrono_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode03DrChrono_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode04DrChrono_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode01Athena_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode02Athena_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode03Athena_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode04Athena_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode01ModMed_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode02ModMed_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode03ModMed_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_ucDiagnosisCode04ModMed_radDiagnosisComboBox_Input,
#ctl00_ContentPlaceHolder1_radAthenaFacilityComboBox_Input,
#ctl00_ContentPlaceHolder1_ucProduct_radAthenaMedicationComboBox_Input,
#ctl00_ContentPlaceHolder1_radClientComboBox_Input,
#ctl00_ContentPlaceHolder1_radwindowsPopUpProductToTransfer_C_radClientComboBox_Input,
#ctl00_ContentPlaceHolder1_radOpticalRxOtherProvider_Input,
#ctl00_ContentPlaceHolder1_radAppointPatient_Input,
#ctl00_ContentPlaceHolder1_radVisitPatientComboBox_Input,
#ctl00_ContentPlaceHolder1_radwindowsPopUpProductToTransfer_C_ObjucProductDropDown_radProductComboBox_Input,
#ctl00_ContentPlaceHolder1_ucProductDropDown_radProductComboBox_Input,
#ctl00_ContentPlaceHolder1_ucProduct_ucProductDropDown_radProductComboBox_Input,
#ctl00_ContentPlaceHolder1_ucReferralProviderDropDownAMD_radReferralProviderComboBox_Input,
#ctl00_ContentPlaceHolder1_ucPromotionUpdate_ucProductDropDown_radProductComboBox_Input,
#ctl00_ContentPlaceHolder1_ucProduct_ucLinkedProductDropDown_radProductComboBox_Input,
#ucSplitInv_ucProductDropDown_radProductComboBox_Input,
#ctl00_ContentPlaceHolder1_radProduct_Input,
#ctl00_ContentPlaceHolder1_radExternalProviderComboBox_Input,
#ctl00_ContentPlaceHolder1_uc_emrscriptorderlog_fullpage_radClientComboBox_Input,
#uc_emrscriptorderlog_fullpage_radClientComboBox_Input,
#ctl00_ContentPlaceHolder1_ucGenericSearchLensDesign_radGenericComboBox_Input,
#ctl00_ContentPlaceHolder1_ucGenericSearchLensDesign_radGenericComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucGenericSearchLensMaterial_radGenericComboBox_Input,
#ctl00_ContentPlaceHolder1_ucGenericSearchLensMaterial_radGenericComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucGenericSearchLens_radGenericComboBox_Input,
#ctl00_ContentPlaceHolder1_ucGenericSearchLens_radGenericComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucGenericSearchLensTreatment1_radGenericComboBox_Input,
#ctl00_ContentPlaceHolder1_ucGenericSearchLensTreatment1_radGenericComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucGenericSearchLensTreatment2_radGenericComboBox_Input,
#ctl00_ContentPlaceHolder1_ucGenericSearchLensTreatment2_radGenericComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucGenericSearchLensTreatment3_radGenericComboBox_Input,
#ctl00_ContentPlaceHolder1_ucGenericSearchLensTreatment3_radGenericComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_ucGenericSearchFrameType_radGenericComboBox_Input,
#ctl00_ContentPlaceHolder1_ucGenericSearchFrameType_radGenericComboBox_Input:hover,
#ctl00_ContentPlaceHolder1_radPatientComboBox_Input {
    padding: 1px 0px 1px 2px;
    height: 21px;
    margin-top: 0px;
}

    #ctl00_ContentPlaceHolder1_ucDiagnosisCodeKareo_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucAMDDiagnosisCode_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDrChronoDiagnosisCode_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucAthenaDiagnosisCode_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucCareCloudDiagnosisCode_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDiagnosisCode01AMD_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDiagnosisCode02AMD_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDiagnosisCode03AMD_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDiagnosisCode04AMD_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDiagnosisCode01Kareo_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDiagnosisCode02Kareo_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDiagnosisCode03Kareo_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDiagnosisCode04Kareo_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDiagnosisCode01CareCloud_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDiagnosisCode02CareCloud_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDiagnosisCode03CareCloud_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDiagnosisCode04CareCloud_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDiagnosisCode01DrChrono_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDiagnosisCode02DrChrono_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDiagnosisCode03DrChrono_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDiagnosisCode04DrChrono_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDiagnosisCode01Athena_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDiagnosisCode02Athena_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDiagnosisCode03Athena_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDiagnosisCode04Athena_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDiagnosisCode01ModMed_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDiagnosisCode02ModMed_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDiagnosisCode03ModMed_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucDiagnosisCode04ModMed_radDiagnosisComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_radAthenaFacilityComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucProduct_radAthenaMedicationComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_radClientComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_radwindowsPopUpProductToTransfer_C_radClientComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_radOpticalRxOtherProvider_Input:hover,
    #ctl00_ContentPlaceHolder1_radAppointPatient_Input:hover,
    #ctl00_ContentPlaceHolder1_radVisitPatientComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_radwindowsPopUpProductToTransfer_C_ObjucProductDropDown_radProductComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucProductDropDown_radProductComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucProduct_ucProductDropDown_radProductComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucReferralProviderDropDownAMD_radReferralProviderComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucPromotionUpdate_ucProductDropDown_radProductComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_ucProduct_ucLinkedProductDropDown_radProductComboBox_Input:hover,
    #ucSplitInv_ucProductDropDown_radProductComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_radProduct_Input:hover,
    #ctl00_ContentPlaceHolder1_radExternalProviderComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_uc_emrscriptorderlog_fullpage_radClientComboBox_Input:hover,
    #uc_emrscriptorderlog_fullpage_radClientComboBox_Input:hover,
    #ctl00_ContentPlaceHolder1_radPatientComboBox_Input:hover {
        padding: 1px 0px 1px 2px;
        height: 21px;
        margin-top: 0px;
    }

#pnlMergeProductDuplicates {
    margin-top: 0;
}

#ucMergeProductDuplicates_rcbBaseProduct span.rcbInner {
    height: 24px !important;
}

#ucMergeProductDuplicates_rcbBaseProduct_Input.rcbInput,
#ucMergeProductDuplicates_rcbBaseProduct_Input.rcbInput:hover {
    height: 24px !important;
    margin-top: 0px;
}

.RadComboBox span.rcbInner #ucMergeProductDuplicates_rcbBaseProduct_Input {
    padding: 1px 0px 1px 2px;
    height: 24px;
}

.RadComboBox span.rcbInner {
    padding: 0px 0px 0px 0px;
    height: 22px;
}

/*
.RadComboBox .rcbInput:hover, .RadComboBox .rcbFakeInput:hover 
{
    height: 21px !important;
}
*/
