.redclr{
    color: var(--secondary-color);
}
.vendor_RVLWELNS .redclr {
    color: var(--primary-color);
}
.redclrback{
    color: var(--primary-color);
}
.blueclr {
    color: rgba(var(--primary-light-color),0.8);
}
.redclrback, .btn-danger {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.blueclrback{
    background-color: var(--secondary-color) !important;
    color: #fff;
}
.grayclrback{
    background-color: #e1e1e1;
    color: #343434;
}
.lightgrayback {
    background: rgba(var(--secondary-light-color),0.03);
    box-shadow: -3px 3px 0px rgba(var(--primary-light-color),0.2);
}
.ukc-icon{
    font-size:1.25em;
    text-align:center;
    width:20px;
}
.icon-size1{
    font-size:1.1em;
}
.icon-size2{
    font-size:1.25em;
}
.padding-body{
    padding-top:108px;
}
.padding-left-right-5{
    padding-left:5px;
    padding-right:5px;
}
.input-text-element{
    border: solid 1px #999;
    border-radius:0;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,f7f7f7+100 */
background: #ffffff; /* Old browsers */
background: -moz-linear-gradient(top, #ffffff 0%, rgba(var(--secondary-light-color),0.04) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ffffff 0%,rgba(var(--secondary-light-color),0.04) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ffffff 0%,rgba(var(--secondary-light-color),0.04) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='rgba(var(--secondary-light-color),0.04)',GradientType=0 ); /* IE6-9 */
font-size:13px;
padding: 9px;
color: #343434;
}
.modal-content{
border-radius: 20px;
overflow: hidden;
box-shadow: 0px 0px 40px #595959;
}
.nephrology-cat {
    background-color:none !important;
    background-image: url('../images/kidneys.png');
    background-repeat:no-repeat;
    background-size:25px 25px;
    background-position:5px 5px;
    padding-left:35px;
}

.bootstrap-select .dropdown-menu li a.active{
    background-color:var(--primary-color);
}
.nephrology-cat:focus,.nephrology-cat:active{
    box-shadow:none;
    outline:none;
    background-image: url('../images/kidneys.png') !important;
}
.dropdown-menu{
box-shadow: 0px 3px 5px #ccc;
}
.btn.btn-group {
    display: inline-block;
    width: 130px;
    margin-right: 10px;
    border-radius: 3px;

}
.breadcrumb-item, a {
    color: var(--secondary-color);
    font-size: 13px;
}
.hiddenBlock{
    display: none;
}
nopadding{
    padding: 0px !important;
}
.nopadRgt{
    padding-right: 0px !important;
}
.nopadft{
     padding-left: 0px !important;
}
.btn{
    font-size: 14px;
    -webkit-transition: all 200ms linear;
-moz-transition: all 200ms linear;
-ms-transition: all 200ms linear;
-o-transition: all 200ms linear;
transition: all 200ms linear;
}
.divider
{
	position: relative;
	margin: 35px auto;
	height: 1px;
}

.div-transparent::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    right: 0;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

/* Modal styling*/
.customModal .modal-header{
    padding: 0;
}

.heading--double-accent {
    background: linear-gradient(#002868, #002868);
    display: block;
    width: 100%;
    font-size: 14px;
    padding: 0.6em 0;
    color: #fff;
    box-shadow: 0.1rem 0.3rem 0.6rem -5px rgba(0, 0, 0, 0.56);
    margin: 0;
    position: relative;
}

    .heading--double-accent::before, .heading--double-accent::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background-color: rgba(255, 255, 255, 0.3);
        transform: skew(-45deg);
    }

    .heading--double-accent::before {
        left: 10px;
        width: 5px;
    }

    .heading--double-accent::after {
        left: 20px;
    }

    .heading--double-accent > span {
        margin-left: 45px;
        font-size: 15px;
    }

.heading, .heading--one, .heading--two, .heading--three, .heading--double-accent {
    overflow: hidden;
    color: #fff;
}

    .heading span, .heading--one span, .heading--two span, .heading--three span, .heading--double-accent span {
        display: inline-block;
        position: relative;
    }


/* check box styling*/


/*custom check box*/
.checkWrap {
    display: block;
    position: relative;
    padding-left: 27px;
    margin-bottom: 7px;
    cursor: pointer;
    font-size: 13px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkWrap input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
position: absolute;
top: 0;
left: 0;
height: 16px;
width: 16px;
background-color: #eee;
border-radius: 5px;
box-shadow: 1px 1px 1px #9b9b9b;
}

/* On mouse-over, add a grey background color */
.checkWrap:hover input ~ .checkmark {
    background-color: var(--primary-color);
    -webkit-transition: all 300ms linear;
-moz-transition: all 300ms linear;
-ms-transition: all 300ms linear;
-o-transition: all 300ms linear;
transition: all 300ms linear;
}

/* When the checkbox is checked, add a blue background */
.checkWrap input:checked ~ .checkmark {
    background-color: var(--primary-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkWrap input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkWrap .checkmark:after {
left: 6px;
top: 3px;
width: 5px;
height: 9px;
border: solid white;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
border-width: 0 2px 2px 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}

/*  -------------------------  My Communication CSS  -------------------------------   */


.comunication-filters-list .input-container {
    line-height:1 !important;
}
.breadcrumb-outer {
    padding: 0px;
    background: #fff;
    box-shadow: 0px 0px 5px #ccc;
}
.breadcrumb {
    background: none;
    margin-bottom: 0;
    padding: 0px 15px;
    line-height: 1;
}
    .breadcrumb li {
        font-weight: 400;
        color: #9B9B9B;
        text-transform: capitalize;
        font-size: 12px;
        vertical-align: top;
        line-height: 1;
        padding: 4px 0px 6px;
    }
    .breadcrumb > li + li::before {
        padding: 0 5px;
        color: #ccc;
        content: "";
        width: 22px;
        height: 10px;
        background: url(../images/breadcrumb-arrow.png) no-repeat center;
        display: inline-block;
    }
    /*.breadcrumb > li + li:before {
        padding: 0 5px;
        color: #ccc;
        content: "/\00a0";
    }*/
.no-padding {
    padding: 0;
}
.patient-communication-left.no-padding {
    padding-top: 0px;
}
.patient-communication-left {
    /* border-right: solid 1px #c3c3c3; */
    padding-top: 60px;
    min-height: 720px;
    z-index: 1;
    box-shadow: 5px 0px 7px #eee;
}
    .patient-communication-left h5 {
        margin-bottom: 5px;
        display: inline-block;
        background: var(--primary-color);
        width: 100%;
        color: #fff;
        padding: 7px;
        font-size:15px;
    }
.communication-type-box {
    display: inline-block;
    padding: 5px;
    width: 100%;
}
.one-filter.communication {
}

.one-filter {
    font-weight: 500;
    font-size: 1.1em;
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
}
.filter-inputs-dropdown {
    float: none;
}

.filter-inputs {
    float: right;
    position: relative;
}
.one-filter.communication .filter-label {
    margin-bottom: 10px;
}

.filter-inputs-dropdown .filter-label {
    display: inline-block;
    width: 100%;
    padding: 3px;
    background: rgba(var(--secondary-light-color),0.04);
    background: -moz-linear-gradient(top, rgba(var(--secondary-light-color),0.04) 0%, #ededed 100%);
    background: -webkit-linear-gradient(top, rgba(var(--secondary-light-color),0.04) 0%,#ededed 100%);
    background: linear-gradient(to bottom, rgba(var(--secondary-light-color),0.04) 0%,#ededed 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(var(--secondary-light-color),0.04)', endColorstr='#ededed',GradientType=0 );
    border-bottom: solid 2px #ccc;
    cursor: pointer;
    position: relative;
    border-top: solid 1px #ccc;
}

.comunication-filters-list {
    margin-bottom: 10px;
}
.input-container {
    padding-left: 10px;
}
.drop-down-input-lg {
    padding-top: 4px;
    padding-bottom: 4px;
}




.drop-down-input {
    background: #fff;
    border: solid 1px var(--secondary-color);
    min-width: 79px;
    padding: 2px 30px 2px 6px;
    position: relative;
    font-size: 1em;
    cursor: pointer;
}

.drop-down-menu ul .pCReqLists {
    font-size: 12px;
}
.drop-down-input span{
    font-size: 12px;
}
.drop-down-menu ul li {
    font-size: 0.7em;
    border-bottom: solid 1px #ccc;
    padding: 3px 0px 3px 7px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.down-btn2 {
    float: right;
    border: solid 1px var(--secondary-color);
    background: rgb(244,244,244);
    background: -moz-linear-gradient(top, rgba(244,244,244,1) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(top, rgba(244,244,244,1) 0%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(244,244,244,1) 0%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4f4', endColorstr='#ffffff',GradientType=0 );
    padding: 3px;
    width: 25px;
    text-align: center;
    cursor: pointer;
    right: -1px;
    top: -1px;
    position: absolute;
    bottom: -1px;
}

.drop-down-input-lg .down-btn2 i {
    line-height: 1.2em;
}
.input-container label {
    font-size: 13px;
    margin-left: 4px;
    margin-top: 1px;
    display: inline-block;
    font-weight: 500;
}

.down-btn2 i {
    vertical-align: top;
    line-height: 0.7;
    font-size: 1.2em;
    color: #db4767;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}
.fa-sort-down:before {
    content: "\f0dd";
}

.fa-sort-down:before {
    content: "\f0dd";
}
.drop-down-menu {
    position: absolute;
    top: 26px;
    width: 100%;
    background: #fff;
    left: 0;
    z-index: 1;
    padding: 5px 0px 5px 0px;
    border: solid 1px var(--secondary-color);
    box-shadow: 0px 3px 9px #cccccc;
    border-radius: 0px 0px 5px 5px;
    display: none;
    max-height: 230px;
    overflow-y: auto;
}
.filter-inputs-dropdown {
        width:100%;
}

.padding-left0 {
    padding-left: 0;
}
.patient-communication-left.no-padding {
    padding-top: 0px;
}
.patient-communication-left {
    /* border-right: solid 1px #c3c3c3; */
    padding-top: 60px;
    min-height: 720px;
    z-index: 1;
    box-shadow: 5px 0px 7px #eee;
}
.no-padding {
    padding: 0;
}
.patient-communication-left h5 {
    margin-bottom: 5px;
    display: inline-block;
    background: var(--secondary-color);
    width: 100%;
    color: #fff;
    padding: 7px;
}
.communication-type-box {
    display: inline-block;
    padding: 5px;
    width: 100%;
}
.one-filter {
    font-weight: 500;
    font-size: 1.1em;
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
}
.filter-inputs-dropdown {
    float: none;
}
.one-filter.communication .filter-label {
    margin-bottom: 10px;
}
.filter-inputs-dropdown .filter-label {
    display: inline-block;
    width: 100%;
    padding: 3px;
    background: rgba(var(--secondary-light-color),0.04);
    background: -moz-linear-gradient(top, rgba(var(--secondary-light-color),0.04) 0%, #ededed 100%);
    background: -webkit-linear-gradient(top, rgba(var(--secondary-light-color),0.04) 0%,#ededed 100%);
    background: linear-gradient(to bottom, rgba(var(--secondary-light-color),0.04) 0%,#ededed 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(var(--secondary-light-color),0.04)', endColorstr='#ededed',GradientType=0 );
    border-bottom: solid 2px #ccc;
    cursor: pointer;
    position: relative;
    border-top: solid 1px #ccc;
}
    .filter-inputs-dropdown .filter-label i {
        color: var(--secondary-color);
        position: absolute;
        right: 5px;
        font-size: 1.6em;
        -webkit-transition: all 500ms linear;
        -moz-transition: all 500ms linear;
        -ms-transition: all 500ms linear;
        -o-transition: all 500ms linear;
        transition: all 500ms linear;
        top: 2px;
    }
        .filter-inputs-dropdown .filter-label i.fold {
            -ms-transform: rotate(180deg);
            -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
        }
.drop-down-input {
    background: #fff;
    border: solid 1px var(--secondary-color);
    min-width: 79px;
    padding: 2px 30px 2px 6px;
    position: relative;
    font-size: 1em;
    cursor: pointer;
}
.drop-down-input-lg {
    padding-top: 4px;
    padding-bottom: 4px;
}
.drop-down-input {
    background: #fff;
    border: solid 1px var(--secondary-color);
    min-width: 79px;
    padding: 2px 30px 2px 6px;
    position: relative;
    font-size: 1em;
    cursor: pointer;
}
.down-btn2 {
    float: right;
    border: solid 1px var(--secondary-color);
    background: rgb(244,244,244);
    background: -moz-linear-gradient(top, rgba(244,244,244,1) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(top, rgba(244,244,244,1) 0%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(244,244,244,1) 0%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4f4', endColorstr='#ffffff',GradientType=0 );
    padding: 3px;
    width: 25px;
    text-align: center;
    cursor: pointer;
    right: -1px;
    top: -1px;
    position: absolute;
    bottom: -1px;
}
.drop-down-input-lg .down-btn2 i {
    line-height: 0.9em;
}

.down-btn2 i {
    vertical-align: top;
    line-height: 0.7;
    font-size: 1.2em;
    color: #db4767;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.drop-down-menu {
    position: absolute;
    top: 26px;
    width: 100%;
    background: #fff;
    left: 0;
    z-index: 1;
    padding: 5px 0px 5px 0px;
    border: solid 1px var(--secondary-color);
    box-shadow: 0px 3px 9px #cccccc;
    border-radius: 0px 0px 5px 5px;
    display: none;
    max-height: 230px;
    overflow-y: auto;


}

    .drop-down-menu ul li {
        font-size: 0.9em;
        border-bottom: solid 1px #ccc;
        padding: 3px 0px 3px 7px;
        -webkit-transition: all 200ms linear;
        -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
        -o-transition: all 200ms linear;
        transition: all 200ms linear;
    }
        .drop-down-menu ul li .dropdown-check {
            float: right;
            color: var(--secondary-color);
            font-size: 1em;
            margin-top: 4px;
            margin-right: 4px;
            display: none;
        }

.padding-left0 {
    padding-left: 0;
}
.message-control {
    margin-top: 10px;
}
.input-text-area {
    position: relative;
}
    .input-text-area .icon {
        float: right;
        color: #d02045;
        font-size: 2.5em;
        padding: 8px;
        text-align: center;
        cursor: pointer;
        position: absolute;
        top: -5px;
        left: 0px;
    }
    .input-text-area textarea {
        width: 100%;
        min-height: 97px;
        border: solid 1px #ccc;
        padding-left: 46px;
        padding-top: 10px;
        font-size: 1.2em;
        border-radius: 10px;
        padding-right: 38px;
        padding-bottom: 10px;
    }
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
    select.form-control {
        font-size: 12px;
    }
    textarea {
        overflow: auto;
    }
.send-message-btn {
    float: right;
    color: #d02045;
    font-size: 1.7em;
    padding: 5px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    right: 2px;
    bottom: 3px;
}
    .send-message-btn i {
        margin-right: 3px;
        -webkit-transition: all 300ms linear;
        -moz-transition: all 300ms linear;
        -ms-transition: all 300ms linear;
        -o-transition: all 300ms linear;
        transition: all 300ms linear;
    }

.fa, .fab, .fal, .far, .fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}
.padding-right-0 {
    padding-right: 0;
}
.padding-left0 {
    padding-left: 0;
}
.new-request-btn {
    float: right;
    background: var(--primary-color);
    color: #fff;
    font-weight: 500;
    clear: both;
    padding: 5px 10px 5px 10px;
    margin-top: -22px;
    margin-bottom: 5px;
    line-height: 1;
    cursor: pointer;
}
.vendor_RVLWELNS .new-request-btn {
    background: var(--secondary-color);
}
    .function-icons {
    margin-top: 10px;
    clear: both;
}
    .function-icons .icon {
        display: inline-block;
        border: solid 1px #ccc;
        padding: 18px 5px 18px 5px;
        color: #666;
        font-weight: 500;
        width: 32%;
        text-align: center;
        cursor: pointer;
        line-height: 1;
        -webkit-transition: all 300ms linear;
        -moz-transition: all 300ms linear;
        -ms-transition: all 300ms linear;
        -o-transition: all 300ms linear;
        transition: all 300ms linear;
        margin-right: 7px;
        border-radius: 10px;
        vertical-align: top;
        font-size: 12px;
    }

.upload-document {
    font-size: 13px;
    border-color: var(--primary-color);
}
.function-icons .icon i {
    display: inline-block;
    width: 100%;
    color: #ccc;
    font-size: 3em;
    margin-bottom: 10px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.function-icons .icon {
    display: inline-block;
    border: solid 1px #ccc;
    padding: 18px 5px 18px 5px;
    color: #666;
    font-weight: 500;
    width: 32%;
    text-align: center;
    cursor: pointer;
    line-height: 1;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    margin-right: 7px;
    border-radius: 10px;
    vertical-align: top;
    font-size: 12px;
}

.record-video {
}
.function-icons .icon i {
    display: inline-block;
    width: 100%;
    color: #ccc;
    font-size: 3em;
    margin-bottom: 10px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.function-icons .icon:last-child {
    margin-right: 0px;
}

.function-icons .icon {
    display: inline-block;
    border: solid 1px #ccc;
    padding: 18px 5px 18px 5px;
    color: #666;
    font-weight: 500;
    width: 32%;
    text-align: center;
    cursor: pointer;
    line-height: 1;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    margin-right: 7px;
    border-radius: 10px;
    vertical-align: top;
    font-size: 12px;
}
    .function-icons .icon i {
        display: inline-block;
        width: 100%;
        color: #ccc;
        font-size: 3em;
        margin-bottom: 10px;
        -webkit-transition: all 300ms linear;
        -moz-transition: all 300ms linear;
        -ms-transition: all 300ms linear;
        -o-transition: all 300ms linear;
        transition: all 300ms linear;
    }

    .function-icons .icon:hover {
        box-shadow: 0px 0px 7px #eee;
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,f2f2f2+100 */
        background: #ffffff; /* Old browsers */
        background: -moz-linear-gradient(top, #ffffff 0%, #f2f2f2 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(top, #ffffff 0%,#f2f2f2 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom, #ffffff 0%,#f2f2f2 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f2f2f2',GradientType=0 ); /* IE6-9 */
    }
        .function-icons .icon:hover i {
            color: var(--primary-color);
        }
.red-bg-color {
    background: var(--primary-color) !important;
}



#divPCDataControlGrd {
    min-height: 800px;
}

.filter-inputs-dropdown .filter-label i {
    color: var(--secondary-color);
    position: absolute;
    right: 5px;
    font-size: 1.6em;
    -webkit-transition: all 500ms linear;
    -moz-transition: all 500ms linear;
    -ms-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    transition: all 500ms linear;
    top: 2px;
}

.fa, .fab, .fal, .far, .fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.far {
    font-weight: 400;
}

.fal, .far {
    font-family: Font Awesome\ 5 Pro;
}
.fa-angle-down:before {
    content: "\f107";
}

.fa-angle-down:before {
    content: "\f107";
}
.drop-down-menu ul {
    padding:0;
    margin:0;
}

li {
    list-style: none;
}

li {
    list-style: none;
}

/*---------- End MyCommunication  -----------------*/

/*----------------File Uploader Css ---------------*/

.filepond--drop-label.filepond--drop-label label {
    display: block;
    margin: 0;
    padding: 0.5em;
}

.filepond--drop-label label {
    cursor: default;
    font-size: 0.875em;
    font-weight: normal;
    text-align: center;
    line-height: 1.5;
}

.filepond--root * {
    font-size: inherit;
    box-sizing: inherit;
    line-height: inherit;
}
.file-upload-button i {
    color: var(--secondary-color);
}

.filepond--root * {
    font-size: inherit;
    box-sizing: inherit;
    line-height: inherit;
}

#upload-document-popup .up-container .btn-file {
    float: none;
    font-size: 1.3em;
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 30px;
}

.filepond--label-action {
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 0.875em !important;
    font-weight: 700;
}
.filepond--label-text {
    float: left;
    font-family: 'Roboto', sans-serif;
    padding-top: 4px;
}
.file-upload-button {
    border: solid 1px var(--secondary-color);
    padding: 4px;
    font-weight: 500;
    float: left;
    min-width: 150px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    cursor: pointer;
    color: var(--primary-color);
}

.btn-file {
    position: relative;
    overflow: hidden;
}
.filepond--label-action {
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 0.675em !important;
    font-weight: 700;
}


/*--------------------- End File Upload ----------------------*/

/*----------------------- Upload audio video -------------*/



.AV_thumbnail {
    border: 1px solid #ccc;
    margin-top: 18%;
}

#upload-video-popup .AV_thumbnail {
    margin-top: 0%;
}

#upload-video-popup .modal-dialog {
    width: 400px;
}

.AV_thumbnail.popup-load {
    margin-top: 40px;
    margin-bottom: 40px;
}

.AV_thumbnail.audio {
    margin-top: 45%;
}

.AV_content_wraper {
    min-height: 300px;
    box-sizing: border-box;
    position: relative;
    border-radius: 3px;
    background: #fff;
}

    .AV_content_wraper.audio {
        min-height: 80px;
    }

        .AV_content_wraper.audio .content_box span {
            margin-top: 7px;
        }

.AV_thumbnail.fullScreen {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 10%;
    right: 100px;
    height: 100%;
    z-index: 9999;
    margin-top: 0%;
    box-shadow: 0px 0px 100px #bfbfbf;
}

    .AV_thumbnail.fullScreen .AV_content_wraper {
        height: 98%;
    }

        .AV_thumbnail.fullScreen .AV_content_wraper .content_box span {
            margin-top: 20%;
        }

.AV_content_wraper .content_box span {
    text-align: center;
    font-weight: bold;
    font-size: 19px;
    margin-top: 30%;
    display: block;
    color: #d8d8d8;
}

.AV_content_wraper .content_box {
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url('../images/test-image.jpg');
    background-repeat: repeat;
}

.audio-content-box {
    background-image: none !important;
}

.AV_btm {
    position: absolute;
    bottom: 0;
    text-align: right;
    right: 0;
    padding: 4px 10px;
    background: rgba(0,0,0,0.75);
    width: 100%;
    color: #fff;
}

.btm_rgt-side .custm_icon {
    font-size: 20px;
    position: relative;
    top: 2px;
    color: #fff;
}

.custm_icon:hover i {
    text-shadow: 0px 0px 10px #7d7373;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

span.custm_icon.del_icon {
    border-radius: 2px;
    padding: 2px;
}

span.custm_icon.del_icon,
span.custm_icon.upload_icon {
    font-size: 17px;
}

.custm_icon {
    cursor: pointer;
    font-size: 21px;
}

    .custm_icon .material-icons {
        position: relative;
        top: 3px;
        font-size: 21px;
    }

.capture_icon i {
    color: #22b14c;
}

.Record_icon i {
    color: #d9534f;
}

.pause_icon i {
    color: #22b14c;
}

.Stop_icon i {
    color: #fff;
}

.del_icon i {
    color: #d9534f;
}

.record_time {
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    position: relative;
    top: 5px;
    letter-spacing: 1px;
}
.hidden {
    display:none !important;
}



.AV_thumbnail.popup-load {
    margin-top: 40px;
    margin-bottom: 40px;
}

.AV_thumbnail.audio {
    margin-top: 45%;
}

.AV_content_wraper {
    min-height: 300px;
    box-sizing: border-box;
    position: relative;
    border-radius: 3px;
    background: #fff;
}

    .AV_content_wraper.audio {
        min-height: 80px;
    }

        .AV_content_wraper.audio .content_box span {
            margin-top: 7px;
        }

.AV_thumbnail.fullScreen {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 10%;
    right: 100px;
    height: 100%;
    z-index: 9999;
    margin-top: 0%;
    box-shadow: 0px 0px 100px #bfbfbf;
}

    .AV_thumbnail.fullScreen .AV_content_wraper {
        height: 98%;
    }

        .AV_thumbnail.fullScreen .AV_content_wraper .content_box span {
            margin-top: 20%;
        }

.AV_content_wraper .content_box span {
    text-align: center;
    font-weight: bold;
    font-size: 19px;
    margin-top: 30%;
    display: block;
    color: #d8d8d8;
}

.AV_content_wraper .content_box {
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url('../images/test-image.jpg');
    background-repeat: repeat;
}

.audio-content-box {
    background-image: none !important;
}

.AV_btm {
    position: absolute;
    bottom: 0;
    text-align: right;
    right: 0;
    padding: 4px 10px;
    background: rgba(0,0,0,0.75);
    width: 100%;
    color: #fff;
}

.btm_rgt-side .custm_icon {
    font-size: 20px;
    position: relative;
    top: 2px;
    color: #fff;
}

.custm_icon:hover i {
    text-shadow: 0px 0px 10px #7d7373;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

span.custm_icon.del_icon {
    border-radius: 2px;
    padding: 2px;
}

span.custm_icon.del_icon,
span.custm_icon.upload_icon {
    font-size: 17px;
}

.custm_icon {
    cursor: pointer;
    font-size: 21px;
}

    .custm_icon .material-icons {
        position: relative;
        top: 3px;
        font-size: 21px;
    }

.capture_icon i {
    color: #22b14c;
}

.Record_icon i {
    color: #d9534f;
}

.pause_icon i {
    color: #22b14c;
}

.Stop_icon i {
    color: #fff;
}

.del_icon i {
    color: #d9534f;
}

.record_time {
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    position: relative;
    top: 5px;
    letter-spacing: 1px;
}

/*------------------ End Audio Video upload ------------------------*/



/*--------------------Start Inner Section Patient Communication -----------------*/

.right-msg-body {
    float: right;
    width: 460px;
    max-width: 70%;
    min-height: 70px;
    background: #fff;
    padding: 10px;
    clear: both;
    box-shadow: 0px 5px 7px rgba(0,0,0,0.15);
    border-top: solid 1px #ccc;
}
.right-side-msg-head {
    float: right;
    clear: both;
    padding: 0 40px 0px 6px;
    border-radius: 10px 10px 0px 0px;
    background: #a7d878;
    width: 460px;
    box-shadow: 0px 5px 7px rgba(0,0,0,0.2);
    position: relative;
}
.one-full-msg-right {
    margin-top: 10px;
    float: right;
    width: 100%;
    clear: both;
    padding-right: 20px;
    margin-bottom:10px;
}

.thread-header.fixed .current-header {
    left: -3px;
}
.thread-header .current-header {
    color: #ec4b6d;
    font-size: 4em;
    position: absolute;
    left: -20px;
    top: -17px;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out; 
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}
/*.messages-flow div.one-full-msg-right:nth-child(2) div:first-child {
    margin-top: 70px;
}*/

.right-side-msg-head .content-type {
    margin-left: 0px;
    position: absolute;
    right: 0;
    background: #fff;
    border: solid 1px #c3b6b6;
    padding: 5px;
    border-radius: 100%;
    width: 30px;
    text-align: center;
    height: 29px;
    top: -5px;
    right: 4px;
}



.right-side-msg-head .avatar {
    float: left;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    font-size: 2em;
    text-align: center;
    margin-right: 3px;
    color: var(--primary-color);
    top: -7px;
    position: relative;
}
    .right-side-msg-head .avatar img {
        border-radius: 100px;
    }
span.Headlftblock {
    display: inline-block;
    width: 50%;
}
.right-side-msg-head .name {
    color: #002868;
    font-weight: bold;
    font-size: 14px;
    margin-top: 7px;
    float: left;
}
.right-side-msg-head .comm-type, .right-side-msg-head .content-type {
    font-size: 11px;
    margin-left: 4px;
    margin-top: 12px;
    display: inline-block;
    color: #0034ad;
    font-weight: 500;
}
.right-side-msg-head .content-type {
    margin-left: 0px;
}
    .right-side-msg-head .content-type i {
        color: var(--secondary-color);
        font-size: 15px;
    }
.right-side-msg-head .date-time {
    color: #343434;
    float: right;
    font-weight: bold;
    margin-top: 13px;
    font-size: 13px;
}
.right-msg-body {
    float: right;
    width: 460px;
    max-width: 70%;
    min-height: 70px;
    background: #fff;
    padding: 10px;
    clear: both;
    box-shadow: 0px 5px 7px rgba(0,0,0,0.15);
    border-top: solid 1px #ccc;
    font-size: 14px;
}


#divPCDataControlGrd {
    min-height: 800px;
}
.messages-flow {
    min-height: 800px;
    padding: 10px;
    background-image: url(../images/chat-bg.jpg);
    background-repeat: repeat-y;
    float: left;
    width: 100%;
    padding-bottom: 20px;
    background: #eee;
}
.followWrap {
    position: relative;
    float: left;
    width: 100%;
}
.thread-header {
    text-align: left;
    display: inline-block;
    width: 100%;
    position: relative;
    border-bottom: solid 1px #c1c1c1;
    border-top: solid 1px #c1c1c1;
    padding: 5px 10px 6px 10px;
    z-index: 11;
    overflow: hidden;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    background: #355784;
    background: var(--secondary-color);

    border-radius: 7px;
}
.vendor_RVLWELNS .thread-header {
    background: var(--primary-color);
}
    .thread-header .current-header {
        color: #ec4b6d;
        font-size: 4em;
        position: absolute;
        left: -20px !important;
        top: -17px;
        -webkit-transition: all 300ms ease-out;
        -moz-transition: all 300ms ease-out;
        -ms-transition: all 300ms ease-out;
        -o-transition: all 300ms ease-out;
        transition: all 300ms ease-out;
    }

    .thread-header .title {
        color: #ff9c00;
        font-weight: 500;
        display: inline-block;
        font-size: 1.2em;
        float: left;
        line-height: normal;
        margin-bottom: 2px;
    }
.vendor_RVLWELNS .thread-header .title {
    color: var(--secondary-color);
}
    .thread-header .date-time-requested {
        color: #fff;
        font-weight: 500;
        display: inline-block;
        float: left;
        clear: both;
        font-size: 0.9em;
    }
    .thread-header .date-time {
        color: #f9f9f9;
        font-weight: 400;
        display: inline-block;
        float: right;
        font-size: 0.9em;
        margin-top: -19px;
        text-align: right;
    }
        .thread-header .date-time span {
            display: block;
            font-weight: 500;
            line-height: normal;
            font-size: 1.1em;
            margin-top: 2px;
        }
.one-full-msg-left {
    margin-top: 10px;
    float: left;
    width: 100%;
    clear: both;
    margin-bottom: 15px;
}

.left-side-msg-head {
    margin-top: 10px;
    float: left;
    clear: both;
    padding: 0 45px 0px 6px;
    border-radius: 10px 10px 0px 0px;
    background: #ffffff;
    min-width: 460px;
    /* box-shadow: 0px 11px 7px rgba(0,0,0,0.8); */
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 0%, #f2f2f2 100%);
    background: -webkit-linear-gradient(top, #ffffff 0%,#f2f2f2 100%);
    background: linear-gradient(to bottom, #ffffff 0%,#f2f2f2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f2f2f2',GradientType=0 );
    position: relative;
}

    .left-side-msg-head .avatar {
        float: left;
        border-radius: 100%;
        width: 32px;
        height: 38px;
        font-size: 2em;
        text-align: center;
        /* background: #fff; */
        margin-right: 10px;
    }
span.Headlftblock {
    display: inline-block;
    width: 50%;
}
.left-side-msg-head .name {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 3px;
    line-height: 17px;
    display: block;
}
.left-side-msg-head .comm-type, .left-side-msg-head .content-type {
    font-size: 11px;
    margin-top: 0;
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 3px;
}

.left-side-msg-head .content-type {
    margin-left: 0px;
    position: absolute;
    right: 0;
    background: #fff;
    border: solid 1px #c3b6b6;
    padding: 5px;
    border-radius: 100%;
    width: 30px;
    text-align: center;
    height: 29px;
    margin-top: 6px;
    right: 4px;
}

    .left-side-msg-head .content-type i {
        color: var(--secondary-color);
        font-size: 17px;
    }

.left-msg-body {
    float: left;
    min-width: 460px;
    max-width: 70%;
    min-height: 70px;
    background: #fff;
    padding: 7px;
    clear: both;
    box-shadow: 0px 5px 7px rgba(0,0,0,0.15);
    border-top: solid 1px #ccc;
}
.upload-file-link {
    cursor: pointer;
}

.breadcrumb-item, a {
    color: var(--secondary-color);
    font-size: 13px;
}
.upload-filename {
    float: right;
    font-weight: 500;
    clear: both;
    color: var(--primary-color);
    width: 100%;
    margin-top: 6px;
}
.one-full-msg-left {
    margin-top: 10px;
    float: left;
    width: 100%;
    clear: both;
    margin-bottom: 15px;
}
.upload-file-link {
    cursor: pointer;
}
.upload-filename {
    float: right;
    font-weight: 500;
    clear: both;
    color: rgb(1, 27, 87);
    width: 100%;
    margin-top: 6px;
}
.left-msg-body .detail-row {
    background: #eaeaea;
    margin-bottom: 1px;
}

.detail-row {
    width: 100%;
    line-height: 1;
    margin-bottom: 5px;
}
.left-msg-body .detail-row b {
    display: inline-block;
    width: 27%;
    background: #dedede;
    padding: 5px 4px;
    font-weight: 500;
    color: #244375;
}
.left-msg-body .detail-row {
    font-size: .8rem !important;

}
.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    /* border-radius: 4px; */
    /* -webkit-transition: border .2s ease-in-out; */
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out;
}

.img-thumbnail, .thumbnail {
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.075);
    box-shadow: 0 1px 2px rgba(0,0,0,.075);
}

.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}
.one-full-msg-left {
    margin-top: 10px;
    float: left;
    width: 100%;
    clear: both;
    margin-bottom: 15px;
}
.send-message-btn:hover i {
    transition: all 200ms linear;
    -ms-transform: rotate(25deg);
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
}
li.filepond--item {
    width:30%;
}

.modal-header .close {
    padding: .4rem 1rem !important;
}
    .modal-header .close i {
        font-size: 18px !important;
    }

textarea::-webkit-input-placeholder {
    color: #ccc;
    font-size:15px;
    padding-top:5px;
}

textarea:-moz-placeholder { /* Firefox 18- */
    color: #ccc;
}

textarea::-moz-placeholder { /* Firefox 19+ */
    color: #ccc;
}

textarea:-ms-input-placeholder {
    color: #ccc;
}

.social_box {
    position: absolute;
    float: right;
    right: 5px;
    bottom: 25px;
}
.social_list li {
    display: inline-block;
    padding: 0px 6px;
    cursor: pointer;
}

.diable_menu_item {
    pointer-events: none;
}

/*--------------------End Inner Section Patient Communication ---------------------------*/

.heading-and-buttons {
    background-color: var(--primary-color);
    padding: 10px 20px 10px 20px;
    margin: 8px 0;
    border-radius: 5px;
}

    .heading-and-buttons .heading-top {
        color: #fff;
        position: relative;
        top: 3px;
    }
.datepicker-orient-top {
    z-index: 1105 !important;
}
.packs.multy {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 1px 11px;
    font-size: 11px;
    border-radius: 5px;
    position: relative;
    top: -2px;
}
#divUnits .modal-toggle-button {
    background-color: #db1841;
    color: #fff;
    padding: 8px 20px;
    font-size: 11px;
    border-radius: 5px;
    position: relative;
    top: -2px;
    border: none;
    margin-right: 10px;
}
    #divUnits .modal-toggle-button:focus {
        background-color: #ab0c2d;
        color: #fff;
        padding: 8px 20px;
        font-size: 11px;
        border-radius: 5px;
        position: relative;
        top: -2px;
        border: none;
        margin-right: 10px;
    }
