﻿

img {
    border-style: none;
}

a {
    text-decoration: none;
    color: #005b66;
}
a:hover {
    text-decoration:underline;
}

a:focus {
    box-shadow: 0 0 1px 3px rgba(0, 91, 102, .5);
    border-radius: 4px;
    outline: none;
}

/* *************************    Classes for Inputs     ****************************/

.honi-input-text {
    box-sizing: border-box;
    margin: 0;
    border: 1px solid #BEBEBE;
    border-radius: 4px;
    box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
    width: 100%;
    padding: .6em 1.4em .6em .8em;
    color: #444;
    background-color: #fff;
    background-image: url('../../Themes/Base/Images/pencil.svg');
    background-repeat: no-repeat;
    /* pencil icon position */
    background-position: right .2em top 50%;
    /* pencil icon size */
    background-size: 1.5em 1em;
}

    .honi-input-text::-webkit-input-placeholder { /* Edge */
        color: #909090;
        font-style: italic;
    }

    .honi-input-text:-ms-input-placeholder { /* Internet Explorer 10-11 */
        color: #909090;
        font-style: italic;
    }

    .honi-input-text::placeholder {
        color: #909090;
        font-style: italic;
    }

    /* Focus style */
    .honi-input-text:focus {
        border-color: #aaa;
        box-shadow: 0 0 1px 3px rgba(0, 91, 102, .5);
        color: #222;
        outline: none;
    }

    .honi-input-text:read-only {
        background-color: #F6F6F6;
        color: #909090;
        background-image: none;
    }

    .honi-input-text[readonly="readonly"], .honi-input-text[readonly] {
        background-color: #F6F6F6;
        color: #333333;
        background-image: none;
    }

.honi-input-search {
    box-sizing: border-box;
    margin: 0;
    border: 1px solid #BEBEBE;
    border-radius: 4px;
    box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
    width: 100%;
    padding: .6em 1.4em .6em .8em;
    color: #444;
    background-color: #fff;
    background-image: url('../../Themes/Base/Images/search.svg');
    background-repeat: no-repeat;
    /* pencil icon position */
    background-position: right .2em top 50%;
    /* pencil icon size */
    background-size: 1.5em 1em;
}

    .honi-input-search::-webkit-input-placeholder { /* Edge */
        color: #909090;
        font-style: italic;
    }

    .honi-input-search:-ms-input-placeholder { /* Internet Explorer 10-11 */
        color: #909090;
        font-style: italic;
    }

    .honi-input-search::placeholder {
        color: #909090;
        font-style: italic;
    }

    /* Focus style */
    .honi-input-search:focus {
        border-color: #aaa;
        box-shadow: 0 0 1px 3px rgba(0, 91, 102, .5);
        color: #222;
        outline: none;
    }

    .honi-input-search[readonly="readonly"], .honi-input-search[readonly] {
        background-color: #F6F6F6;
        color: #333333;
        background-image: none;
    }

.honi-input-date {
    box-sizing: border-box;
    margin: 0;
    border: 1px solid #BEBEBE;
    border-radius: 4px;
    box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
    width: 100%;
    padding: .6em 1.4em .6em .8em;
    color: #444;
    background-color: #fff;
    background-image: url('../../Themes/Base/Images/calendar.svg');
    background-repeat: no-repeat;
    /* pencil icon position */
    background-position: right .2em top 50%;
    /* pencil icon size */
    background-size: 1.5em 1em;
}

    .honi-input-date::-webkit-input-placeholder { /* Edge */
        color: #909090;
        font-style: italic;
    }

    .honi-input-date:-ms-input-placeholder { /* Internet Explorer 10-11 */
        color: #909090;
        font-style: italic;
    }

    .honi-input-date::placeholder {
        color: #909090;
        font-style: italic;
    }

    .honi-input-date:focus {
        border-color: #aaa;
        box-shadow: 0 0 1px 3px rgba(0, 91, 102, .5);
        color: #222;
        outline: none;
    }

    .honi-input-date[readonly="readonly"], .honi-input-date[readonly] {
        background-color: #F6F6F6;
        color: #333333;
        background-image: none;
    }

/* *************************    Classes for Dropdowns     ****************************/

/* class applies to select element itself, not a wrapper element */
.honi-select {
    display: block;
    font-family: "Roobert-Regular",Arial, sans-serif;
    /*font-weight: 700;*/
    color: #444;
    line-height: 1.3;
       padding: .6em 1.4em .6em .8em;
    width: 100%;
    max-width: 100%; /* useful when width is set to anything other than 100% */
    box-sizing: border-box;
    margin: 0;
    border: 1px solid #aaa;
    box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
    border-radius: 4px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url('../../Themes/Base/Images/arrow-down-drop-circle.svg'), linear-gradient(to bottom, #FFFFFF 0%,#FFFFFF 100%);
    background-repeat: no-repeat, repeat;
    /* arrow icon position (1em from the right, 50% vertical) , then gradient position*/
    background-position: right .3em top 50%, 0 0;
    /* icon size, then gradient */
    background-size: 1.5em auto, 100%;
    font-style: italic;
}

    /* Hide arrow icon in IE browsers */
    .honi-select::-ms-expand {
        display: none;
    }

    /* Hover style */
    .honi-select:hover {
        border-color: #888;
    }

    /* Focus style */
    .honi-select:focus {
        border-color: #aaa;
        box-shadow: 0 0 1px 3px rgba(0, 91, 102, .5);
        color: #222;
        outline: none;
    }

    /* Set options to normal weight */
    .honi-select option {
        font-weight: normal;
        font-style: normal;
    }

        .honi-select option:first-of-type {
            font-style: italic;
        }

    /* Disabled styles */
    .honi-select:disabled, .honi-select[aria-disabled=true] {
        color: graytext;
        background-image: url('../../Themes/Base/Images/arrow-down-drop-circle.svg'), linear-gradient(to bottom, #F6F6F6 0%,#F6F6F6 100%);
    }

        .honi-select:disabled:hover, .honi-select[aria-disabled=true] {
            border-color: #aaa;
        }

.honi-select-white {
    background-image: url('../../Themes/Base/Images/arrow-down-drop-circle.svg'), linear-gradient(to bottom, #FFF 0%, #FFF 100%);
}

option {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 10px;
}

/* *************************    Classes for Radio Buttons     ****************************/

.honi-radio {
    display: inline-block;
    position: relative;
    padding: 0 6px;
    margin: 0 !important;
}

    .honi-radio input[type='radio'] {
        /*display: none;*/
        position: absolute;
        top: 5px;
        left: 4px;
    }

    .honi-radio label {
        color: #666;
        font-weight: normal;
    }

        .honi-radio label::before {
            content: " ";
            display: inline-block;
            position: relative;
            top: 5px;
            margin: 0 4px 1px 0;
            width: 16px;
            height: 17px;
            border-radius: 11px;
            border: 1px solid #AAAAAA;
            background-color: #F6F6F6;
        }

    .honi-radio input[type=radio]:checked + label::after {
        border-radius: 11px;
        width: 8.5px;
        height: 9px;
        position: absolute;
        top: 10px;
        left: 11px;
        content: " ";
        display: block;
        background: white;
    }


    .honi-radio input[type=radio]:checked + label:before {
        background-color: #005b66;
        border: 1px solid #005b66;
    }

    .honi-radio input[type=radio]:focus {
        border: none;
        box-shadow: none;
        outline: none;
    }

        .honi-radio input[type=radio]:focus + label:before {
            border-color: #aaa;
            border-radius: 11px;
            box-shadow: 0 0 1px 3px rgba(0, 91, 102, .5);
            color: #222;
            outline: rgba(0, 91, 102, .5);
        }

    .honi-radio input[type=radio]:disabled + label {
        color: #909090;
        cursor: auto;
    }

        .honi-radio input[type=radio]:disabled + label:before {
            background-color: #ddd;
            cursor: auto;
        }

    .honi-radio input[type=radio]:checked:disabled + label:before {
        background-color: #ddd;
        border: 1px solid #AAAAAA;
    }

/* *************************    Classes for Buttons     ****************************/
.honi-button {
    border: 1px solid #aaa;
    border-radius: 4px;
    display: inline-block;
    padding: 8px 16px;
    vertical-align: middle;
    overflow: hidden;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background-color: #005b66; 
    text-align: center;
    cursor: pointer;
    white-space: nowrap -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

    .honi-button:disabled {
        background-color: #E2E2E2;
        color: #909090;
    }

    /* Focus style */
    .honi-button:focus {
        box-shadow: 0 0 1px 3px rgba(0, 91, 102, .5);
        outline: none;
    }
/*.honi-button:hover {
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19)
    }*/
/* *************************    Classes for sliders *******************************/
.honi-slidecontainer {
    width: 100%;
}

.honi-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

    .honi-slider:focus {
        border-color: #aaa;
        border-radius: 11px;
        box-shadow: 0 0 1px 3px rgba(0, 91, 102, .5);
        color: #222;
        outline: none;
    }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .honi-slider {
        background: none;
        height: 25px;
        padding: 0;
    }
}

@supports (-ms-ime-align:auto) {
    /* Edge  */
    .honi-slider {
        background: none;
        height: 25px;
        padding: 0;
    }
}

.honi-slider:hover {
    opacity: 1;
}

.honi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #3388CC;
    cursor: pointer;
}
.honi-slider:disabled::-webkit-slider-thumb {
    background-color: #E2E2E2;
    cursor: auto;
}

.honi-slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #3388CC;
    cursor: pointer;
}
.honi-slider:disabled::-moz-range-thumb {
    background-color: #E2E2E2;
    cursor: auto;
}

.honi-slider::-ms-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #3388CC;
    cursor: pointer;
}
.honi-slider:disabled::-ms-thumb {
    background-color: #E2E2E2;
    cursor: auto;
}



.honi-slider::-ms-track {
    width: 100%;
    height: 15px;
    cursor: pointer;
    border-radius: 5px;
    background: #d3d3d3;
    border-color: transparent;
    color: transparent;
}

.honi-slider::-ms-fill-lower {
    border-radius: 5px;
    background: #3388CC;
}

.honi-slider::-ms-fill-upper {
    border-radius: 5px;
    background: #d3d3d3;
}

.honi-icon {
    height: 20px;
    width: 20px;
}

/* *************************    Classes for Toggle switches     ****************************/

/* The switch - the box around the slider */
.honi-toggle-switch {
    position: relative;
    display: block;
    width: 75px;
    height: 31px;
}
    /* Hide default HTML checkbox */
    .honi-toggle-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }


.honi-toggle-label-on, .honi-toggle-label-off {
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    user-select: none;
    font-size: inherit;
}

.honi-toggle-label-on {
    display: none;
}

/* The slider */
.honi-toggle-thumb {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 4px;
    border: 1px solid #AAAAAA;
}

    .honi-toggle-thumb:before {
        position: absolute;
        content: "";
        background-color: #acacac;
        -webkit-transition: .4s;
        transition: .4s;
        height: 25px;
        width: 10px;
        border-radius: 4px;
        bottom: 2px;
        left: 2px;
    }
/*.honi-toggle-thumb:hover {
        background-color: #D3E1F1;
    }*/


input:checked + .honi-toggle-thumb .honi-toggle-label-on {
    display: block;
}

input:checked + .honi-toggle-thumb .honi-toggle-label-off {
    display: none;
}

input:focus + .honi-toggle-thumb {
    box-shadow: 0 0 1px 3px rgba(0, 91, 102, .5);
}

input:checked + .honi-toggle-thumb:before {
    -webkit-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(58px);
}

.honi-toggle-switch input:disabled + .honi-toggle-thumb {
    background-color: #E2E2E2;
    color: #909090;
}



/* *************************    Classes for Lists     ****************************/
.honi-ul {
    list-style-type: none;
    margin: auto;
    padding: 0;
}

.honi-ul-scrollable {
    list-style-type: none;
    margin: auto;
    overflow-y: scroll;
}

.honi-ol {
    padding: 0;
    margin: 0
}

.honi-ul li {
    padding: .5em .8em .5em .8em;
    border-bottom: 1px solid #DDD
}

    .honi-ul li:last-child {
        border-bottom: none
    }

/* *************************    Classes for Modal Boxes     ****************************/
.honi-modal {
    z-index: 3;
    display: none;
    padding-top: 100px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4)
}

.honi-modal-content {
    margin: auto;
    background-color: #fff;
    position: relative;
    padding: 0;
    outline: 0;
}

/* *************************    Classes for Checkboxes     ****************************/
.honi-checkbox {
    position: relative;
    width: 0;
    margin: 0;
    opacity: 0;
    /*display: none;*/
    -moz-appearance: none;
    appearance: none;
}

    .honi-checkbox + label {
        position: relative;
        cursor: pointer;
        padding: 0;
    }


        .honi-checkbox + label:before {
            content: '';
            margin-right: 10px;
            display: inline-block;
            vertical-align: text-top;
            width: 20px;
            height: 20px;
            border: 1px solid #AAAAAA;
            background-color: #F6F6F6;
        }

    /*.honi-checkbox:hover + label:before {
    background: #3388CC;
}*/

    .honi-checkbox:focus + label:before {
        border-color: #aaa;
        border-radius: 4px;
        box-shadow: 0 0 1px 3px rgba(0, 91, 102, .5);
        color: #222;
        outline: none;
    }

    .honi-checkbox:checked + label:before {
        background: #005B66;
    }

    .honi-checkbox:disabled + label {
        color: #909090;
        cursor: auto;
    }

        .honi-checkbox:disabled + label:before {
            box-shadow: none;
            background: #ddd;
        }

    .honi-checkbox:checked + label:after {
        content: '';
        position: absolute;
        left: 4px;
        top: 9px;
        background: white;
        width: 2px;
        height: 2px;
        box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
        transform: rotate(45deg);
        padding: 1px;
    }

/* *************************    Miscellanious     ****************************/
.honi-raised-header {
    padding: .5em 0 0 0;
    background-color: #F7F7F7;
    box-shadow: 0 1px 5px 0 #ACA9A9;
}

/* *************************    Classes for Textareas     ****************************/
.honi-textarea {
    display: block;
    box-sizing: border-box;
    resize: none;
    margin: 0;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
    width: 100%;
    padding: .5em 1.4em .5em .8em;
    font-family: "Roobert-Regular",Arial, sans-serif;
    color: #444;
}

    .honi-textarea:disabled {
        background-color: #E2E2E2;
        color: #909090;
    }

    .honi-textarea:read-only {
        background-color: #E2E2E2;
        color: #909090;
    }

    .honi-textarea[read-only] {
        background-color: #E2E2E2;
        color: #909090;
    }

    .honi-textarea:focus {
        border-color: #aaa;
        box-shadow: 0 0 1px 3px rgba(0, 91, 102, .5);
        color: #222;
        outline: none;
    }

/* *************************    Classes for Labels    ****************************/

.honi-label-disabled {
    color: #909090;
}

.honi-label-required:after {
    color: #EA6369;
    content: ' *';
    display: inline;
}

/* *************************    Classes for Hyperlinks    ****************************/
.honi-hyperlink {
    color: #005b66;
}

/* *************************    Classes for io-SELECT-LIST    ****************************/

.honi-select-list {
    border: 1px solid #BEBEBE;
    box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
    list-style-type: none;
    margin: auto;
    padding: 0;
}

    .honi-select-list li {
        border-bottom: 1px solid #DDD;
        padding: 0;
        margin: 0 !important;
    }

        .honi-select-list li:last-child {
            border-bottom: none
        }

.honi-select-list-item {
    display: inline-block;
    position: relative;
    padding: 0;
    margin: 0 !important;
}

    .honi-select-list-item input[type='radio'] {
        opacity: 0;
        position: absolute;
        top: 15px;
        left: 8px;
    }

    .honi-select-list-item label {
        color: #666;
        font-weight: normal;
        padding: 10px;
        margin: 0;
        flex-grow: 1;
        width: auto;
    }

        .honi-select-list-item label:hover {
            background-color: #005b66   ;
            cursor: pointer;
        }

    .honi-select-list-item input[type=radio]:checked + label {
        background-color: #005b66;
    }

    .honi-select-list-item input[type=radio]:focus + label {
        background-color: #005b66;
    }

.honi-select-list:focus {
    border-color: #aaa;
    box-shadow: 0 0 1px 3px rgba(0, 91, 102, .5);
    color: #222;
    outline: none;
}