﻿/* Common */
body
{
    /* DXCOMMENT: Duplicate a font family and font size from the web.config (devexpress->themes->font settings) for the web-site's HTML content */
    font: 16px 'Segoe UI', Helvetica, 'Droid Sans', Tahoma, Geneva, sans-serif;
}

/* Article Layout */
.text-content
{
    min-height: 100%;
    max-width: 816px;
    margin: 0px auto;
    padding: 0px 14px 0px 14px;
    word-wrap: break-word;
}

@media (min-width: 816px)
{
    .text-content
    {
        padding: 0px 48px;
    }
}

/* Base Styles */
.text-content
{
    color: #666;
    line-height: 1.5;
}
    .text-content p
    {
        margin-top: 0;
        margin-bottom: 1rem;
    }

/* Headers */
.text-content h1, .text-content h2, .text-content h3, .text-content h4, .text-content h5, .text-content h6
{
    color: #444;
    font-weight: normal;
    margin-top: 0;
    margin-bottom: 0.5rem;
}
.text-content h3, .text-content h4, .text-content h5, .text-content h6
{
    font-weight: 600;
}

.text-content h1
{
    font-size: 2em;
}
.text-content h2
{
    font-size: 1.75em;
}
.text-content h3
{
    font-size: 1.375em;
}
.text-content h4
{
    font-size: 1.25em;
}
.text-content h5
{
    font-size: 1.125em;
}
.text-content h6
{
    font-size: 1em;
}

.text-content > h1:not(:first-child)
{
    margin-top: 1.75rem;
}

.text-content > h2:not(:first-child)
{
    margin-top: 1.5rem;
}

.text-content > h3:not(:first-child)
{
    margin-top: 1.25rem;
}

.text-content > h4:not(:first-child)
{
    margin-top: 1.125rem;
}

.text-content > h5:not(:first-child)
{
    margin-top: 1rem;
}

.text-content > h6:not(:first-child)
{
    margin-top: .9rem;
}

/* Title + Lead */
.text-content .title
{
    margin-top: 1.2rem;
    margin-bottom: .8rem;
}
@media (min-width: 576px)
{
    .text-content .title
    {
        color: #222;
        font-size: 2em;
        font-weight: 600;
    }
}

.text-content .lead
{
    font-size: 1.125rem;
    font-weight: 300;
}
@media (min-width: 576px)
{
    .text-content .lead
    {
        max-width: 80%;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }
}

.text-content > h2.category
{
    color: #222;
    font-weight: 600;
}

.text-content > h2.category:not(:first-child)
{
    margin-top: 3rem;
}


/* #href bookmark jump */
.text-content > h1[id]::before,
.text-content > h2[id]::before,
.text-content > h3[id]::before,
.text-content > h4[id]::before
{
    display: block;
    height: calc(3.13rem + 1.2rem); /* Main Menu Height (3.13rem) + .title margin-top = 1.2rem */
    margin-top: calc(-3.13rem - 1.2rem);
    visibility: hidden;
    content: "";
}


/* Link */
.text-content a
{
    /* DXCOMMENT: Duplicates color from the web.config (devexpress->themes->baseColor) */
    color: #1F497D;
}
.text-content a:visited
{
    /* DXCOMMENT: Duplicates color from the web.config (devexpress->themes->baseColor) */
    color: #17365D; /* 25% black overlay */
}
.text-content a:hover
{
    /* DXCOMMENT: Duplicates color from the web.config (devexpress->themes->baseColor) */
    color: #6D88AA; /* 35% white overlay */
}

.text-content b, .text-content strong
{
    color: #444;
}

mark
{
    /* DXCOMMENT: Duplicates color from the web.config (devexpress->themes->baseColor) */
    background-color: #1F497D;
    color: #fff;
}

small
{
    color: #999999;
    font-size: 0.75em;
}

code, pre
{
    font-family: Consolas, Menlo, Monaco, "Liberation Mono", "Courier New", monospace;
    font-size: 0.875em;
}

hr
{
    height: 1px;
    opacity: 0.1;
    background-color: #000000;
    border: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

blockquote
{
    background-color: #f2f2f2;
    color:#444;
    margin:0;
    margin-bottom: 1rem;
    font-size: 1.125em;
    padding: 29px 26px;
    border: 0;
    border-left: 6px solid #d8d8d8;
}

blockquote p
{
    margin-top:0;
}
blockquote footer
{
    display: block;
    font-size: 0.875em;
    font-style: italic;
    color: #999;
}

blockquote footer::before
{
    content: "\2014 \00A0";
}
        
/* Contents (Left Panel) */
.section-caption.contents-caption
{
    padding-left: 31px;
    border-top: none !important;
}


/* Lists */
.text-content ul,
.text-content ol
{
    margin-top: 1em;
    margin-bottom: 1em;
}

@media (min-width: 992px)
{
    .bd-content > ul, .bd-content > ol, .bd-content > p
    {
        max-width: 80%;
    }
}

/* Text Alignment */
.text-center
{
    text-align: center !important;
}

.text-right
{
    text-align: right !important;
}

.indent-p
{
    padding-left: 40px;
    padding-right: 20px;
}

.bordered-block
{
    background-color: #f2f2f2;
    padding: 1.5rem;
    margin-right: 0;
    margin-left: 0;
    border-width: .2rem;
}

@media (min-width: 576px)
{
    .bordered-block
    {
        padding: 1.5rem;
        margin-right: 0;
        margin-left: 0;
        border-width: .2rem;
    }
}

/* Tables */
.table
{
    margin-bottom: 1rem;
    background-color: transparent;
    border-collapse: collapse;
}

.table td,
.table th
{
    padding: .75em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;

    vertical-align: top;
    border-top: 1px solid #dee2e6;
    text-align: left;
}

.table thead th
{
    border-bottom: 1px solid #d8d8d8;
    background-color: #f2f2f2;
    color: #222;
}
.table thead tr
{
    box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.23);
}

.table tbody + tbody
{
    border-top: 1px solid #dee2e6;
}

.table-bordered
{
    border: 1px solid #dee2e6;
}

.table-bordered td,
.table-bordered th
{
    border: 1px solid #dee2e6
}

.table-bordered thead td,
.table-bordered thead th
{
    border-bottom-width: 1px
}

.table-responsive
{
    max-width: 100%;
    overflow-x: auto;
    display: block;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

/* Code, Control Area Block */
.control-area-block
{
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
    background-color: #f8f9fa;
}

/* Images */
.img-responsive
{
    max-width: 100%;
    height: auto;
}

.img-float-left
{
    float: left;
    padding-right: 40px;
    padding-bottom: 40px;
}
@media (max-width: 576px)
{
    .img-float-left
    {
        padding-right: 16px;
        padding-bottom: 16px;
    }
}

/* Printing Styles */
@media print
{
    .menu-container, .left-block, .right-block,
    .footer-wrapper
    {
        display: none !important;
    }

    .left-panel
    {
        display: none !important;
    }

    .text-content
    {
        max-width: 100%;
    }

    html
    {
        padding: 0 !important;
    }

    .page-toolbar-wrapper
    {
        display: none !important;
    }
}

.copyright {
    color: darkgray !important;
    float: left;
    margin-left: 10px;
    margin-top: 15px;
}

.copyrightHL {
    color: #3B3B3B !important;
    font-weight:bold;
    text-decoration: none;
    padding-top:10px;
}

@media (max-width: 768px) {
    .copyrightHL {
        color: #3B3B3B;
        text-decoration: none;
        font-size: 12px;
    }
}

@media (max-width: 430px) {
    .copyrightHL {
        color: #3B3B3B;
        text-decoration: none;
        font-size: 12px;
    }
}

.gtDropDownList {
    font-family: "Microsoft JhengHei";
    font-size: 1em;
    color: #666666;
    width: 90%;
    height: 30px;
    max-width: 350px;
}

    .gtDropDownList:focus {
        border-width: 2px;
        border-color: #ff0000;
    }


@media (max-width: 768px) {
    .gtDropDownList {
        max-width: 120px;
    }

    .mjDropDownList:focus {
        border-width: 1px;
        border-color: #ff0000;
    }
}

@media (max-width: 430px) {
    .gtDropDownList {
        max-width: 100px;
    }

    .mjDropDownList:focus {
        border-width: 1px;
        border-color: #ff0000;
    }
}

.custom-shadow {
    border: 2px solid #dee2e6; /* Bootstrap 的淡灰色 */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 柔和陰影 */
    border-radius: 0.5rem; /* 圓角（可選） */
    padding: 4px; /* 可選：內距增加視覺感 */
}


.image-cursor-pointer {
    cursor: pointer !important;
}

.Upload-title {
    color: white;
    font-family: 'Microsoft JhengHei', '微軟正黑體', 'Calibri', sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 700;
    font-size: 1.25em;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

@media (max-width: 968px) {
    .Upload-title {
        font-size: 1.0em;
    }
}

.Upload-title-Unuploaded {
    color: darkblue;
    font-family: 'Microsoft JhengHei', '微軟正黑體', 'Calibri', sans-serif !important;
    font-optical-sizing: auto;
    font-weight: bold;
    font-size: 1.5em;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

@media (max-width: 968px) {
    .Upload-title-Unuploaded {
        font-size: 1.0em;
    }
}

.RootWelcomeTitle {
    color: #3B3B3B;
    font-family: 'Microsoft JhengHei', '微軟正黑體', 'Calibri', sans-serif !important;
    font-size: 12px;
}

/*    @media (max-width: 968px) {
        .RootWelcomeTitle {
            visibility: hidden;
        }
    }
*/
.RootWelcomeTitleNoMenu {
    color: #3B3B3B;
    font-family: 'Microsoft JhengHei', '微軟正黑體', 'Calibri', sans-serif !important;
    font-size: medium;
}

@media (max-width: 968px) {
    .RootWelcomeTitleNoMenu {
        visibility: hidden;
    }
}

@media (max-width: 768px) {
    .RootWelcomeTitleNoMenu {
        visibility: hidden;
    }
}

@media (max-width: 430px) {
    .RootWelcomeTitleNoMenu {
        visibility: hidden;
    }
}

.RootRoleSelect {
    font-family: 'Microsoft JhengHei', '微軟正黑體', 'Calibri', sans-serif !important;
    font-size: 12px;
    padding: 2px 2px;
    border-radius: 2px;
    border: 1px solid #ced4da;
    height: auto;
}

.RootLoginButton {
    background-color: #446EA2;
    color: white;
    border: none;
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 3px;
    padding-right: 3px;
    font-family: 'Microsoft JhengHei', '微軟正黑體', 'Calibri', sans-serif !important;
    font-size: 12px;
    border-radius: 2px;
    width: 60px !important;
}

@media (max-width: 430px) {
    .RootLoginButton {
        background-color: #446EA2;
        color: white;
        border: none;
        padding-top: 1px;
        padding-bottom: 1px;
        padding-left: 3px;
        padding-right: 3px;
        font-family: 'Microsoft JhengHei', '微軟正黑體', 'Calibri', sans-serif !important;
        font-size: 12px;
        border-radius: 2px;
        width: 60px !important;
    }
}

.SearchTextBox {
    padding-top: 1px;
    padding-bottom: 1px;
    padding-right: 0px;
    font-size: 1rem;
    border-radius: 4px;
    width: 80px !important;
    height: 20px;
}

.SearchButton {
    background-color: transparent;
    max-width: 18px;
    max-height: 18px;
    padding-right: 3px;
}

@media (max-width: 768px) {
    .SearchTextBox {
        padding-top: 1px;
        padding-bottom: 1px;
        padding-right: 0px;
        font-size: 0.75rem;
        border-radius: 4px;
        width: 60px !important;
        height: 15px;
    }

    .SearchButton {
        background-color: transparent;
        max-width: 16px;
        max-height: 16px;
        padding-right: 3px;
    }
}

@media (max-width: 430px) {
    .SearchTextBox {
        padding-top: 1px;
        padding-bottom: 1px;
        padding-right: 0px;
        font-size: 0.75rem;
        border-radius: 4px;
        width: 50px !important;
        height: 15px;
    }

    .SearchButton {
        background-color: transparent;
        max-width: 16px;
        max-height: 16px;
        padding-right: 3px;
    }
}


.PopupControlclearPaddings {
    padding-top: 0;
    padding-bottom: 0;
}


.CHSHB-custom-checkbox input[type="checkbox"] {
    display: none;
}

.CHSHB-custom-checkbox .dxICheckBoxUnchecked,
.CHSHB-custom-checkbox .dxICheckBoxChecked {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 8px;
}

.CHSHB-custom-checkbox .dxICheckBoxUnchecked {
    background-image: url('~/Content/Images/CheckBox2_32x32.png');
}

.CHSHB-custom-checkbox .dxICheckBoxChecked {
    background-image: url('~/Content/Images/UnCheckBox2_32x32.png');
}

CHSHB-popupmenu-style .dxpc-dropDown {
    background-color: #F5F5F5;
    font-family: 'Microsoft JhengHei', '微軟正黑體', 'Calibri', sans-serif !important;
    font-size: 16px;
}

.btnAppointmentHour {
    background-color: #446EA2;
    color: white;
    border: solid;
    border-color: #446EA2;
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 0px;
    padding-right: 0px;
    font-family: 'Microsoft JhengHei', '微軟正黑體', 'Calibri', sans-serif !important;
    font-size: 12px;
    border-radius: 5px;
    max-width: 110px !important;
}


.vt {
    width: 100px;
    background-color: #D0E5E8;
}

.vt2 {
    font-family: 微軟正黑體, Arial, Helvetica, sans-serif;
    background-color: #d3d3d3;
    font-style: normal;
}


.tb {
    text-align: left;
    background-color: #F4F9F8;
}

.formLayout {
    width: 80%;
    max-width: 1000px;
    margin: auto;
}

.roundedBorders {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    overflow: hidden !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    font-family: 微軟正黑體;
    font-size: 16px;
    margin-right: 5px;
}

.roundedBordersFocus {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    overflow: hidden !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    font-family: 微軟正黑體;
    font-size: 16px;
    border-color: #0d6efd !important; /* 藍色（Bootstrap primary） */
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important; /* focus 陰影 */
}

.roundedBordersDisabled {
    color: #737373 !important;
    background-color: #E6E6E6 !important;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    overflow: hidden !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    font-family: 微軟正黑體;
    font-size: 16px;
    margin-right: 5px;
}


.PageProgramName {
    font-family: 微軟正黑體;
    font-size: 24px;
    font-weight: bold;
    color: darkblue;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .PageProgramName {
        font-family: 微軟正黑體;
        font-size: 18px;
        font-weight: bold;
        color: darkblue;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 430px) {
    .PageProgramName {
        font-family: 微軟正黑體;
        font-size: 1.25rem;
        font-weight: bold;
        padding-left: 0px;
        color: darkblue;
    }
}

.PageProgramName_Small {
    font-family: 微軟正黑體;
    font-size: 18px;
    font-weight: bold;
    color: darkblue;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .PageProgramName_Small {
        font-family: 微軟正黑體;
        font-size: 16px;
        font-weight: bold;
        color: darkblue;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 430px) {
    .PageProgramName_Small {
        font-family: 微軟正黑體;
        font-size: 1.0rem;
        font-weight: bold;
        padding-left: 20px;
        color: darkblue;
    }
}

.CHSHB_Label_Color {
    color: #212121 !important;
    font-family: 微軟正黑體, Arial, Helvetica, sans-serif;
}

.CHSHB_Label_DarkBlue {
    color: #004A80 !important;
    font-family: 微軟正黑體, Arial, Helvetica, sans-serif;
}

.CHSHB_Label_DarkBlue_Bold {
    padding: 5px;
    color: #0000FF !important;
    font-weight: bold !important;
    background-color: #E6E6E6;
    font-family: 微軟正黑體, Arial, Helvetica, sans-serif;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    overflow: hidden !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}


.popupMenuStyle {
    background-color: #D0E0EC !important;
    border: 2px solid black;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* 陰影效果 (可選) */
}

.popupMenuItem {
    font-family: 微軟正黑體, Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: bold;
    padding: 5px 10px;
}

    .popupMenuItem:hover {
        background-color: #e0e0e0;
    }

.CHSHB-Botton {
    background-color: #0D6EFD;
    color: white;
    border: none;
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 1px;
    padding-right: 1px;
    font-family: 'Microsoft JhengHei', '微軟正黑體', 'Calibri', sans-serif !important;
    font-size: 14px;
    border-radius: 5px;
    height: 25px;
    width: 50px;
}

    .CHSHB-Botton:hover {
        background-color: #025EEA;
    }




.custom-radio-item-tiny {
    color: #3B3B3B;
    background-color: #E6E6E6;
    border-radius: 5px;
    width: 50px;
    height: 30px;
    padding-left: 25px !important;
    padding-top: 3px;
    margin-bottom: 5px;
    margin-left: 10px;
}

    .custom-radio-item-tiny label {
        margin-left: 3px;
    }

    .custom-radio-item-tiny:has(:checked) {
        background-color: #00A084;
        color: white;
    }

.custom-radio-item {
    color: #3B3B3B;
    background-color: #E6E6E6;
    border-radius: 5px;
    width: 150px;
    height: 30px;
    padding-left: 5px !important;
    padding-top: 3px;
    margin-bottom: 5px;
    margin-left: 5px;
}

    .custom-radio-item label {
        margin-left: 8px;
    }

    .custom-radio-item:has(:checked) {
        background-color: #00A084;
        color: white;
    }


.custom-radio-item-1 {
    color: #3B3B3B;
    background-color: #E6E6E6;
    border-radius: 5px;
    width: 135px;
    height: 30px;
    padding-left: 5px !important;
    padding-top: 3px;
    margin-bottom: 5px;
    margin-left: 5px;
}

    .custom-radio-item-1 label {
        margin-left: 8px;
    }

    .custom-radio-item-1:has(:checked) {
        background-color: #00A084;
        color: white;
    }


.custom-radio-item-2 {
    color: #3B3B3B;
    background-color: #FCFADC;
    border-radius: 5px;
    width: 150px;
    height: 30px;
    padding-left: 5px !important;
    padding-top: 3px;
    margin-bottom: 5px;
    margin-left: 5px;
}

    .custom-radio-item-2 label {
        margin-left: 8px;
    }

    .custom-radio-item-2:has(:checked) {
        background-color: #00A084;
        color: white;
    }


.custom-radio-item-med {
    color: #3B3B3B;
    background-color: #E6E6E6;
    border-radius: 5px;
    align-items: center;
    width: 300px;
    height: 30px;
    padding-left: 5px !important;
    padding-top: 2px;
    margin-bottom: 5px;
    margin-left: 5px;
}

    .custom-radio-item-med label {
        margin-left: 8px;
    }

    .custom-radio-item-med:has(:checked) {
        background-color: #00A084;
        color: white;
    }



.custom-radio-item-lg {
    color: #3B3B3B;
    background-color: #E6E6E6;
    border-radius: 5px;
    align-items: center;
    width: 90%;
    height: 30px;
    padding-left: 5px !important;
    padding-top: 2px;
    margin-bottom: 5px;
    margin-left: 5px;
}

    .custom-radio-item-lg label {
        margin-left: 8px;
    }

    .custom-radio-item-lg:has(:checked) {
        background-color: #00A084;
        color: white;
    }

.custom-radio-item-lg1 {
    color: #3B3B3B;
    background-color: #E6E6E6;
    border-radius: 5px;
    align-items: center;
    width: 90%;
    height: 30px;
    padding-left: 5px !important;
    padding-top: 2px;
    margin-bottom: 5px;
    margin-left: 5px;
}

    .custom-radio-item-lg1 label {
        margin-left: 8px;
    }

    .custom-radio-item-lg1:has(:checked) {
        background-color: #00A084;
        color: white;
    }


.custom-radio-item-small {
    color: #3B3B3B;
    background-color: #E6E6E6;
    border-radius: 5px;
    width: 80px;
    height: 30px;
    padding-left: 5px !important;
    padding-top: 3px;
    margin-bottom: 5px;
    margin-left: 5px;
}

    .custom-radio-item-small label {
        margin-left: 8px;
    }

    .custom-radio-item-small:has(:checked) {
        background-color: #00A084;
        color: white;
    }


.custom-radio-item-small-1 {
    color: #3B3B3B;
    background-color: #E6E6E6;
    border-radius: 5px;
    width: 100px;
    height: 30px;
    padding-left: 5px !important;
    padding-top: 3px;
    margin-bottom: 5px;
    margin-left: 5px;
}

    .custom-radio-item-small-1 label {
        margin-left: 8px;
    }

    .custom-radio-item-small-1:has(:checked) {
        background-color: #00A084;
        color: white;
    }

.custom-radio-item-small-2 {
    color: #3B3B3B;
    background-color: #E6E6E6;
    border-radius: 5px;
    width: 112px;
    height: 30px;
    padding-left: 5px !important;
    padding-top: 3px;
    margin-left: 5px;
    margin-bottom: 5px;
}

    .custom-radio-item-small-2 label {
        margin-left: 8px;
    }

    .custom-radio-item-small-2:has(:checked) {
        background-color: #00A084;
        color: white;
    }

    .custom-radio-item-small-2:read-only:has(:checked) {
        background-color: #818181;
        color: #DADADA;
    }

.custom-radio-item-small-2-readonly {
    color: #3B3B3B;
    background-color: #E6E6E6;
    border-radius: 5px;
    width: 112px;
    height: 30px;
    padding-left: 5px !important;
    padding-top: 3px;
    margin-left: 5px;
    margin-bottom: 5px;
}

    .custom-radio-item-small-2-readonly label {
        margin-left: 8px;
    }

    .custom-radio-item-small-2-readonly:has(:checked) {
        background-color: #818181;
        color: #DADADA;
    }


.footer-link {
    color: #5c5c18 !important;
    border-right: 1px solid #F5FACD;
    margin-right: 7px;
    padding-right: 10px;
    white-space: nowrap;
}

.footer-link-end {
    color: #5c5c18;
    margin-right: 7px;
    padding-right: 10px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .footer-link {
        color: #5c5c18;
        border-right: 1px solid #F5FACD;
        margin-right: 3px;
        padding-right: 5px;
        white-space: nowrap;
        font-size: 10px;
    }

    .footer-link-end {
        color: #5c5c18;
        margin-right: 0px;
        padding-right: 0px;
        white-space: nowrap;
        font-size: 10px;
    }
}

@media (max-width: 430px) {
    .footer-link {
        color: #5c5c18;
        border-right: 1px solid #F5FACD;
        margin-right: 3px;
        padding-right: 5px;
        white-space: nowrap;
        font-size: 10px;
    }

    .footer-link-end {
        color: #5c5c18;
        margin-right: 0px;
        padding-right: 0px;
        white-space: nowrap;
        font-size: 10px;
    }
}

.templateTitle {
    float: left;
    margin-left: 10px;
    margin-top: 3px;
}

    .templateTitle a {
        text-decoration: none;
        font-size: x-large;
        font-weight: bolder;
        color: #446EA2;
    }

        .templateTitle a:hover {
            text-decoration: none;
            font-size: x-large;
            font-weight: bolder;
            color: #446EA2;
        }

@media (max-width: 768px) {
    .templateTitle {
        float: left;
        margin-left: 10px;
        margin-top: 5px;
    }

        .templateTitle a {
            text-decoration: none;
            font-size: large;
            font-weight: bolder;
            color: #446EA2;
        }

            .templateTitle a:hover {
                text-decoration: none;
                font-size: large;
                font-weight: bolder;
                color: #446EA2;
            }
}

@media (max-width: 430px) {
    .templateTitle {
        float: left;
        margin-left: 10px;
        margin-top: 12px;
    }

        .templateTitle a {
            text-decoration: none;
            font-size: large;
            font-weight: bolder;
            color: #446EA2;
        }

            .templateTitle a:hover {
                text-decoration: none;
                font-size: large;
                font-weight: bolder;
                color: #446EA2;
            }
}

.PaddingRight-Search {
    padding-right: 5%;
}

@media (max-width: 768px) {
    .PaddingRight-Search {
        padding-right: 3px;
    }
}