body {
    padding: 0;
    margin: 0;
    overflow-x: auto;
    font-size: 14px;
    width:100%;
    background-color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
}

h2,
h3,
h4,
p,
label {
    margin-bottom: 0;
}

/*loader*/
.loader-box {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: grid;
    place-content: center;
    z-index: 9999999999;
    background-color: rgb(255, 255, 255,  0.4);
}
.spinner {
    margin: 100px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

    .spinner > div {
        background-color: #fff;
        height: 100%;
        width: 6px;
        display: inline-block;
        -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
        animation: sk-stretchdelay 1.2s infinite ease-in-out;
    }

    .spinner .rect2 {
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s;
    }

    .spinner .rect3 {
        -webkit-animation-delay: -1.0s;
        animation-delay: -1.0s;
    }

    .spinner .rect4 {
        -webkit-animation-delay: -0.9s;
        animation-delay: -0.9s;
    }

    .spinner .rect5 {
        -webkit-animation-delay: -0.8s;
        animation-delay: -0.8s;
    }

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4)
    }

    20% {
        -webkit-transform: scaleY(1.0)
    }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}

/*loader end*/

a.btn-md {
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-md {
    padding: 10px 50px;
    border-radius: 5px;
    border: 0;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
}

.white-btn {
    background-color: #FFFFFF !important;
    color: #6C3086;
}

.white-btn:hover {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    opacity: 0.8 !important;
    color: #6C3086 !important;
}

a:hover {
    text-decoration: none;
    color: rgba(34, 27, 36, 0.5);
}

.bg-lighs {
    background-color: #FCFBFC;
    position: relative;
}

.bg-lighs:before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background-color: #FCFBFC;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
}

button:focus,
input:focus,
textarea:focus, .custom-select:focus {
    outline: 0;
    box-shadow: unset !important;
}

.dropdown-menu {
    border: 0;
    padding: 5px 0;
    box-shadow: 0 0 6px #0000001f;
}

.dropdown-item {
    font-size: 14px;
}

.status-tag {
    padding: 3px 10px;
    font-size: 10px;
    line-height: 13px;
    border-radius: 10px;
}

header {
    position: relative;
    align-items: center;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 35px 45px;
    display: flex;
}

h2 {
    font-size: 48px;
    line-height: 60px;
    font-weight: bold;
    font-family: 'Ubuntu', sans-serif;
}

p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
}


/* table */

.table tbody tr td.collapse_td {
    padding: 0;
    background-color: rgba(246, 244, 246, 0.3) !important;
    border: 0 !important;
    border-bottom-right-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
}

    table tbody tr td.collapse_td table {
        margin: -13px 0 0 1px;
        width: calc(100% - 2px);
    }

.btn_Action {
    background-color: #efefef;
    border: 0;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
    height: 20px;
    margin-right: 7px;
}

table tbody tr td.collapse_td table tr td {
    border: 0 !important;
    border-radius: 0 !important;
    background-color: #fcfcfc;
    padding-top: 7px !important;
    padding-bottom: 7px !important
}

table tbody tr td.collapse_td table tr:first-child td {
    padding-top: 20px !important;
}

    table tbody tr td.collapse_td table tr:first-child td:first-child {
        border-top-left-radius: 0px !important;
    }

    table tbody tr td.collapse_td table tr:first-child td:last-child {
        border-top-right-radius: 0px !important;
    }

table tbody tr td.collapse_td table tr:last-child td {
    padding-bottom: 20px !important;
}

    table tbody tr td.collapse_td table tr:last-child td:last-child {
        border-bottom-right-radius: 6px !important;
    }

    table tbody tr td.collapse_td table tr:last-child td:first-child {
        border-bottom-left-radius: 6px !important;
    }

table tbody tr td.collapse_td table tr td label {
    color: rgba(34, 27, 36, 0.5);
    font-size: 11px;
    line-height: 15px;
}

table tbody tr td.collapse_td table tr td p {
    color: #221B24;
    font-size: 13px;
    line-height: 18px;
}

.deliverable-infos {
    height: auto;
}

    .deliverable-infos.td_hide {
        height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
    }

.action_btn {
    padding: 0;
    border: 0;
    background-color: transparent;
    filter: invert(7%) sepia(75%) saturate(229%) hue-rotate(241deg) brightness(91%) contrast(91%);
}

.mr-20p {
    margin-right: 20px;
}

.collapse-item + tr > td > table {
    height: 0;
    width: 100%;
    overflow: hidden;
    position: absolute;
    opacity: 0;
    display: block;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    z-index: -1;
}

.callerdetailtable tr td {
    vertical-align: middle;
}

.collpase_open + tr > td > table {
    height: auto;
    display: table;
    position: relative;
    opacity: 1;
    z-index: 1;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}


/* table end */

.logo-link {
    display: block;
}

header .login-link {
    display: block;
    margin-left: auto;
    color: #fff;
}

.bg-setter {
    display: flex;
    min-height: 100%;
    z-index: 9;
    position: absolute;
    align-items: center;
    width: 90%;
    left: 0;
    top: 0;
}

.bg-setter img {
    height: 100%;
    position: absolute;
    object-fit: cover;
}

.bg-setter img:first-child {
    width: 50%;
    left: -20%;
}

.bg-setter img:nth-child(2) {
    left: 15%;
    width: 49%;
    top: -8%;
}

.bg-setter img:nth-child(3) {
    left: 47.5%;
    width: 29%;
    z-index: 1;
    top: -5%;
    object-fit: contain;
}

.bg-setter img:nth-child(4) {
    left: 72%;
    width: 25%;
    object-fit: contain;
}

.covied_bg {
    animation-name: move-around;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

textarea {
    border: 1px solid #ECE7EE;
    background-color: #FCFBFC;
    border-radius: 5px;
    padding: 9px 11px;
    font-size: 14px;
}

textarea::placeholder {
    color: rgba(34, 27, 36, 0.5);
}

.select-box {
    display: none;
}

@keyframes move-around {
    0% {
        -webkit-transform: translate(20px, 0px);
        transform: translate(20px, 0px);
    }
    20% {
        -webkit-transform: translate(-20px, -20px);
        transform: translate(-20px, -20px);
    }
    40% {
        -webkit-transform: translate(-20px, 20px);
        transform: translate(-20px, 20px);
    }
    60% {
        -webkit-transform: translate(10px, 20px);
        transform: translate(10px, 20px);
    }
    80% {
        -webkit-transform: translate(0x, -10px);
        transform: translate(0px, -10px);
    }
    100% {
        -webkit-transform: translate(20px, 0px);
        transform: translate(20px, 0px);
    }
}

.covied_bg1 {
    animation-name: move-around1;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

@keyframes move-around1 {
    0% {
        -webkit-transform: translate(0px, 20px);
        transform: translate(0px, 20px);
    }
    25% {
        -webkit-transform: translate(10px, -10px);
        transform: translate(10px, -10px);
    }
    50% {
        -webkit-transform: translate(20px, -20px);
        transform: translate(20px, -20px);
    }
    75% {
        -webkit-transform: translate(10x, -10px);
        transform: translate(10px, -10px);
    }
    100% {
        -webkit-transform: translate(0px, 20px);
        transform: translate(0px, 20px);
    }
}

.coviedShiled {
    animation-name: moveclouds1;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

@-webkit-keyframes moveclouds1 {
    0% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
    50% {
        -webkit-transform: translate(-10px, 0px);
        transform: translate(-10px, 0px);
    }
    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

.landing-intro {
    min-height: calc(100vh - 141px);
    position: relative;
    display: grid;
    z-index: 10;
    align-items: center;
    background-color: #6C3086;
    color: #fff;
    background-size: 42%;
    margin-top: -116px;
}

.call-link {
    display: inline-block;
    margin: 20px 0 20px 0;
    width:420px;
}
    .call-link img{
        width:100%;
        margin-bottom:7px;
    }
    .landing-intro p {
        max-width: 550px;
        margin-bottom: 15px;
    }

.landing-intro h2 {
    color: #F7F5F8;
    margin-bottom: 0;
    margin-top:60px;
    font-size:42px;
    line-height:51px;
}

.landing-intro h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #F7F5F8;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
}

.fw-medium {
    font-weight: 500 !important;
}

.landing-splitter {
    min-height: 90px;
    display: grid;
    place-content: center;
    background-color: #f9f9f94d;
}

.landing-splitter ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

.landing-splitter ul li {
    list-style-type: none;
    text-align: center;
    max-width: 100px;
    margin: 0 60px;
}

    .landing-splitter ul li img {
        margin-bottom: 10px;
        height: 34px;
        width: 51px;
        object-fit: contain;
    }

.landing-splitter ul li p {
    color: #221B24;
    opacity: 0.5;
    font-size: 10px;
    line-height: 13px;
}

.over-index {
    position: relative;
    z-index: 11;
}

@media(max-width:1024) {
    .landing-intro {
        background-position: right 2vw center;
    }
}

@media(max-width:767px) {
    .sbmit-btn.mi-btn{
        max-width:100%;
    }
    .footer_agri .sbmit-btn {
        max-width: 320px;
    }
    .bg-setter {
        opacity: 0.5;
    }
    .landing-header {
        position: relative;
    }
    .landing-intro h2 {
        font-size: 34px;
        line-height: 37px;
        margin-top: 120px;
    }
    .landing-intro h2.fw-medium {
        margin-top: 0;
    }
    .landing-intro {
        background-position: right 0vw center;
    }
    .landing-intro:before {
        width: 100%;
    }
    .landing-splitter ul {
        flex-wrap: wrap;
    }
    .landing-splitter ul li {
        margin: 10px 30px;
    }
    header {
        position: relative;
        padding: 35px 25px;
    }
    .landing-intro {
        margin-top: -115px;
    }
}

@media(max-width:576px) {
    .call-link img{
        width:245px;
    }
    .landing-intro {
        min-height: calc(100vh - 190px)
    }
        .landing-intro h2 {
            margin-top: 85px;
        }
}


/* landing page end */


/* login page */

.login-intro {
    display: grid;
    place-content: center;
    position: relative;
}

.login-intro:before {
    content: '';
    height: 250px;
    position: absolute;
    width: 100%;
    opacity: 0.3;
    background-position: center;
    background-image: url(../images/banner_bg_01.png);
}

.login-intro h3 {
    color: #F7F5F8;
    font-size: 38px;
    font-weight: 500;
    line-height: 50px;
    font-family: 'Ubuntu', sans-serif;
}

.content-wrapper {
    display: flex;
}

.login-box {
    width: 480px;
    min-height: 100vh;
    display: grid;
    place-content: center;
    align-items: center;
}

.login-box>div {
    width: 320px;
}

.login-intro {
    width: calc(100vw - 480px);
    background-color: #6C3086;
    min-height: 100vh;
    display: grid;
    place-content: center;
}

.login-box img {
    margin-bottom: 40px;
}

.login-box h3 {
    color: #221B24;
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 30px;
    font-family: 'Ubuntu', sans-serif;
}

.form-item {
    margin-bottom: 20px;
}

.form-item label {
    color: #221B24;
    font-size: 12px;
    line-height: 16px;
    /*display: block;*/
    margin-bottom: 3px;
}

.form-item input {
    /* max-width: 320px; */
    width: 100%;
    color: #221B24;
    font-size: 14px;
    padding: 0 10px;
    height: 40px;
    border: 1px solid #ECE7EE;
    background-color: #FCFBFC;
    border-radius: 5px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.was-validated .custom-select:valid+.select2 .select2-selection {
    border: 1px solid #9662AC !important;
    background-color: #F4EFF6 !important;
}

.form-item input:focus,
.select2-container--open .select2-selection--single,
.form-item .select2-container .select2-selection--single:focus,
.form-item .select2-container--default .select2-selection--single .select2-selection__rendered:focus,
input:-webkit-autofill,
.select2-container *:focus,
input:-webkit-autofill:focus,
input:-webkit-autofill:active, .custom-select:focus {
    border: 1px solid #9662AC !important;
    background-color: #F4EFF6 !important;
    outline: 0;
    box-shadow:unset;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.mi-btn {
    width: 320px;
    height: 40px;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    background-color: #6C3086;
    color: #fff;
    margin-top: 10px;
    border: 1px solid transparent;
    font-family: 'Ubuntu', sans-serif;
}

.mi-btn:disabled {
    color: #fff;
    cursor: no-drop;
    background-color: #59555A;
}


/* login page end */


/* customer detail pages */

.user-list {
    padding: 0;
    margin: 0 0 0 auto;
    display: flex;
}

.user-list li {
    list-style-type: none;
    margin-left: 40px;
}

    .user-list li a {
        text-decoration: none;
        font-size: 14px;
        color: rgba(34, 27, 36, 0.5);
    }

.history-link {
    display: block;
    line-height: 40px;
}

.user-name {
    background-color: #221B24;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 16px;
    display: grid;
    place-content: center;
}

.user-btn {
    padding: 0;
}

.content-box {
    background-color: rgba(108, 48, 134, 1);
    min-height: 100vh;
    width: 330px;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
}

.content-box .bg-img {
    width: 100%;
    position: absolute;
    bottom: 0;
}

.content-box.remedical-action .bg-img {
    width: 112.5%;
}

.content-box.step1 .vector-img {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
}

.content-form {
    display: flex;
    margin-left: 330px;
    align-items: center;
    min-height: 100vh;
    padding-bottom: 20px;
    width: calc(100% - 330px);
    min-height: calc(100vh - 116px);
}

.content-form-topEdge {
    margin-top: 10px;
    align-items: unset;
    min-height: auto;
}

.content-form>div {
    width: 700px;
    margin-left: 11vw;
}

.content-form>div>label {
    color: #6C3086;
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 2px;
}

.content-form h3,
.thanks-popup h2 {
    color: #221B24;
    font-size: 26px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 30px;
    font-family: 'Ubuntu', sans-serif;
}

.step-2 .form-item input {
    width: 100%;
}

.radio-grp {
    margin-bottom: 30px;
}

.radio-grp>label {
    color: #221B24;
    font-size: 12px;
    margin-bottom: 15px;
}

.radio-grp span {
    font-size: 14px;
    display: inline-flex;
    margin-right: 20px;
    line-height: 14px;
    color: #221B24;
}

.form-item .select2-container .select2-selection--single {
    height: 40px;
    background-color: #FCFBFC;
    border: 1px solid #ECE7EE;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #9662AC;
    background-color: #FCFBFC;
    border-bottom: 0;
}

.select2-dropdown {
    border: 1px solid #9662AC;
    overflow: hidden;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    background-color: #fff;
}

.form-item .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}

.form-item .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
    color: #221B24;
    font-size: 14px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #834c97;
}

.radio-grp input {
    margin-right: 10px;
}
.modalTopHead{
    position:fixed;
    height:60px;
    background-color:#000;
    left:0;
    right:0;
    top:0;
    display:flex;
    align-items:center;
    z-index:100;
}
    .modalTopHead .close {
        opacity: 1;
        text-shadow: unset;
        font-weight: 400;
        font-size: 25px;
        border: 1px solid #fff;
        color: #fff;
        height: 30px;
        width: 30px;
        padding: 0;
        margin-right: 25px;
    }
.helpline-modal {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.modalTopHead + .modal-dialog {
    margin-bottom: 0 !important;
    margin-top: 56px !important;
}
    input[type="radio"]:hover {
        cursor: pointer;
    }
.radioSet input[type="radio"] + span{
    display:inline-block;
    margin-right:10px;
}
input[type="radio"] {
    max-width: 13px !important;
    max-height: 13px;
    width: 13px !important;
    height: 13px;
    padding: 0;
    margin-right: 3px;
    border: 1px solid #D6D6D6;
    background-color: #fff;
    -webkit-appearance: none;
    border-radius: 50%;
    outline: none;
    position: relative;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

input[type="radio"]:checked {
    border: 1px solid #6C3086;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

input[type="radio"]:checked::before {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    content: '';
    border: 1px solid #6C3086;
    background-color: #6C3086;
    width: 7px;
    height: 7px;
    position: absolute;
    top: 2px;
    left: 2px;
    display: block;
    border-radius: 50%;
}

input[type=checkbox]:hover {
    cursor: pointer;
}

input[type=checkbox],
.form-item input[type=checkbox] {
    -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    position: relative;
    background-color: #F4EFF6;
    border: 1px solid #9662AC !important;
    outline: 0;
    box-shadow: none;
    border-radius: 3px;
    height: 18px;
    outline: none;
    width: 18px;
    -webkit-appearance: none;
    vertical-align: text-bottom;
}

input[type=checkbox]:after {
    -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    content: '';
    display: block;
    position: absolute;
    height: 18px;
    width: 18px;
    margin-left: -1px;
    margin-top: -1px;
    background-color: #FCFBFC;
    border: 1px solid #E1DDE3;
    border-radius: 3px;
    overflow: hidden;
    -webkit-transform: rotate(0deg) scale(1);
    -moz-transform: rotate(0deg) scale(1);
    -ms-transform: rotate(0deg) scale(1);
    -o-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
    -webkit-transform-origin: 40% 90%;
    -moz-transform-origin: 40% 90%;
    -ms-transform-origin: 40% 90%;
    -o-transform-origin: 40% 90%;
    transform-origin: 40% 90%;
}

input[type=checkbox]:before {
    -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    border-bottom: 2px solid #6C3086;
    border-left: 2px solid #6C3086;
    bottom: 6px;
    content: '';
    height: 10px;
    left: 5px;
    position: absolute;
    -webkit-transform: rotate(-45deg) scale(0);
    -moz-transform: rotate(-45deg) scale(0);
    -ms-transform: rotate(-45deg) scale(0);
    -o-transform: rotate(-45deg) scale(0);
    transform: rotate(-45deg) scale(0);
    -webkit-transform-origin: 40% 100%;
    -moz-transform-origin: 40% 100%;
    -ms-transform-origin: 40% 100%;
    -o-transform-origin: 40% 100%;
    transform-origin: 40% 100%;
    width: 10px;
}

input[type=checkbox]:checked:after {
    -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    -webkit-transform: rotate(45deg) scale(0);
    -moz-transform: rotate(45deg) scale(0);
    -ms-transform: rotate(45deg) scale(0);
    -o-transform: rotate(45deg) scale(0);
    transform: rotate(45deg) scale(0);
}

input[type=checkbox]:checked:before {
    -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    height: 5px;
    -webkit-transform: rotate( -45deg) scale(1);
    -moz-transform: rotate(-45deg) scale(1);
    -ms-transform: rotate(-45deg) scale(1);
    -o-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1);
    transition-delay: 0.1s;
    width: 10px;
    top: 4px;
    left: 6px;
}

.width-adjuster {
    width: 70% !important;
}

.checkbox-grp label {
    color: #221B24;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 18px;
}

.checkbox-grp>label {
    color: #ADA6AF;
    font-size: 12px;
    line-height: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 400;
}

.checkbox-grp:first-child>label {
    margin-top: 0;
}

.checkbox-grp input {
    margin-right: 25px;
}

.checkbox-grp textarea {
    margin-top: 14px;
    resize: none;
    display: none;
}

.checkbox-grp input:checked~textarea {
    display: block;
}
footer {
    height: 55px;
    padding: 0 45px;
    background-color: #fff;
    border-top: 1px solid rgb(250 238 255);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
    footer img{
        width:50px;
    }
    footer p {
     
        font-size: 11px;
        color: rgba(44, 5, 61,  0.7);
        line-height: 14px;
    }
        .policytext {
            text-align: center;
            position: relative;
        }
    .policytext a {
        font-size: 11px;
        margin: 10px 0;
        opacity: 0.8;
        text-align: center;
        text-decoration: underline;
        margin: 0 auto;
        color: #50076f;
        background-color: #fff;
        z-index: 10;
        display: inline-block;
        position: relative;
        padding: 0 10px;
        overflow: hidden;
    }
    .policytext span {
    
        position: absolute;
        height: 1px;
        width: 100%;
        display:block;
        z-index: -3;
        top: 9px;
        left: 0;
        background-color: #dedede;
    }
.action-list {
    padding: 0;
    margin: 0;
    padding-bottom: 25px;
    text-align: justify;
}
    .action-list li  h2{
        font-size: 25px;
        line-height: 32px;
    }
    .action-list li b{
        margin-bottom:3px;
    }
    .action-list li {
        list-style-type: none;
        position: relative;
        margin-bottom: 15px;
        padding-right: 20px;
        font-size: 12px;
        line-height: 16px;
    }

.action-list li p {
    font-size: 12px;
    line-height: 16px;
}

        .action-list li > ul > li {
            margin-bottom: 5px;
            list-style-type: disclosure-closed;
        }

    .footer_agri {
        display: flex;
        height: 40px;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 15px;
    }

.footer_agri input {
    margin-right: 10px;
}

.footer_agri label {
    font-weight: 500;
}

.search-input {
    border: 1px solid rgba(236, 231, 238, 1);
    height: 35px;
    background-color: #FCFBFC;
    border-radius: 5px;
    padding: 0 10px 0 30px;
    font-size: 12px;
    color: #221B24;
    background-image: url(../images/Search.png);
    background-repeat: no-repeat;
    background-position: left 10px center;
}

.search-input::placeholder {
    color: rgba(34, 27, 36, 0.5);
}

.text-theme {
    color: #6C3086 !important;
    font-weight: 500;
}


/* history page */

.switch {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 16px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #e7e3e8;
    background-color: #fcfbfc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 3px;
    bottom: 1px;
    border: 1px solid #e7e3e8;
    background-color: #fcfbfc;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #6c3086;
}

input:checked+.slider:before {
    -webkit-transform: translateX(13px);
    -ms-transform: translateX(13px);
    transform: translateX(13px);
}


/* Rounded sliders */

.inline-head {
    display: flex;
    flex-wrap: wrap;
}

.switch-box {
    display: flex;
    margin-left: auto;
}

.switch-box>label {
    margin-top: 6px;
}

.switch-box>span {
    font-size: 12px;
    line-height: 30px;
    color: #221B24;
    font-weight: 500;
    margin: 0 6px;
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.history-body {
    margin: 0 9vw !important;
    width: 100% !important;
}

.card {
    background-color: #fff;
    border: 0;
    border-radius: 10px !important;
    margin-bottom: 15px;
    box-shadow: 0px 3px 6px rgba(34, 27, 36, 0.1);
    overflow: hidden;
}

.card-header {
    background-color: #fff;
    border-radius: 10px;
    border-bottom: 1px solid rgba(236, 231, 238, 1);
    padding: 13px 15px;
    background-image: url(../Images/open_arroe.png);
    background-repeat: no-repeat;
    background-position: right 15px center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.card-header[aria-expanded="true"] {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    background-image: url(../Images/close_arrow.png);
}

.card-header:hover {
    cursor: pointer;
}

.card-header h3 {
    color: rgba(34, 27, 36, 1);
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    margin-bottom: 5px;
}

.card-body {
    padding: 15px;
}

.card-list {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.card-list li {
    list-style-type: none;
    margin-right: 20px;
}

.card-list li label {
    margin-bottom: 0;
    color: rgba(34, 27, 36, 0.5);
    font-size: 11px;
    line-height: 15px;
}

.symbtomps-list {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.symbtomps-list li {
    list-style-type: none;
    margin-right: 35px;
}

.symptom-content {
    margin-bottom: 15px;
}

.symptom-content label {
    color: rgba(34, 27, 36, 0.5);
    font-size: 11px;
    display: block;
    line-height: 15px;
    margin-bottom: 1px;
}

.symptom-content p {
    display: inline-block;
    color: rgba(34, 27, 36, 1);
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 0;
}

.solution-tag {
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    margin: 10px 10px 0px 0;
    line-height: 16px;
    padding: 2px 10px;
    border-radius: 10px;
}

.skyBlue-bg {
    background-color: rgba(232, 244, 255, 1);
}

.mine-blue {
    background-color: rgba(219, 222, 251, 1);
}

.light-yellow {
    background-color: rgba(252, 248, 196, 1);
}

.light-red {
    background-color: rgba(251, 228, 219, 1);
}

.light-violet {
    background-color: rgba(244, 219, 251, 1);
}

.history-listBox {
    padding: 0;
    margin: 0;
}

.history-listBox li {
    list-style-type: none;
}

.history-listBox>li>label {
    color: #6C3086;
    font-size: 13px;
    margin-bottom: 5px;
}

.history-listBox>li:first-child>label {
    display: none;
}

.DetailSubmition {
    width:100%;
    background-color:transparent;
    text-align:right;
}
.popup_head {
    position: fixed;
    height: 60px;
    top: 0;
    background-color: #000;
    left: 0;
    right: 0;
    align-items: center;
    display: flex;
}
    .popup_head + .modal-dialog {
        margin-bottom: 0 !important;
        margin-top: 56px !important;
    }
    .prescriptionContent {
        background-color: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        font-weight: 400;
        /*margin-top: 60px;*/
        box-shadow: unset !important;
    }
.bordered-btn {
    margin-left: auto;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    height: 30px;
    min-width: 85px;
    border: 1px solid #9c9a9a;
    background-color: transparent;
    color: #fff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.bordered-btn:hover {
    background-color: #323232;
    transition:all 0.3s ease;
    -webkit-transition:all 0.3s ease;
}
    .bordered-btn + .prescriptionButton {
        margin-left: 15px !important;
    }
.prescriptionButton, .prescriptionButton:hover {
    width: 40px;
    margin-left: auto;
    height: 40px;
    font-weight: 400;
    margin-right: 20px;
    background-color: transparent !important;
    opacity: 1;
    color: #fff;
    text-shadow: none;
    float: right;
    font-size: 30px;
}
.DetailSubmition button {
    width: 110px;
    height: 30px;
    border: 0;
    background-color: #6C3086;
    color: #fff;
}
.description_modal table {
    border: 0;
    color: #221B24;
}

.description_modal table tr td {
    padding: 15px;
    border: 0;
}

.description_modal table h2 {
    font-size: 19px;
    font-weight: bold;
    line-height: 18px;
}

.description_modal table h2>span,
.description_modal table p {
    font-size: 11px;
    line-height: 17px;
    font-weight: 400;
}

.description_modal table h2>span {
    line-height: 18px;
}

.description_modal .modal-content {
    min-height: 85vh;
    border-radius: 0;
    border: 1px solid #CECECE;
}

.form-flex {
    display: flex;
}

.form-flex label {
    font-size: 10px;
    color: rgba(34, 27, 36, 0.5);
    font-size: 10px;
    line-height: 16px;
}

.form-flex p {
    font-size: 12px;
    line-height: 16px;
    margin: 0 0 0 5px !important;
}

.header_td {
    border-top: 1px solid #D6D6D6;
    border-bottom: 1px solid #D6D6D6;
}

table .header_td td {
    padding: 10px 13px !important;
    border-right: 1px solid #D6D6D6 !important;
}

table .header_td td:nth-child(2) {
    width: 75px;
}

table .header_td td:last-child {
    border-right: 0 !important;
    width: 90px;
    padding-right: 30px;
}

.description_td td {
    padding: 11px 30px !important;
    font-size: 14px;
    line-height: 20px;
}

.pt-30p,
td.pt-30p {
    padding-top: 30px !important;
}

.footer-text {
    position: absolute;
    font-size: 10px;
    line-height: 13px;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

@media(min-width:576px) {
    .description_modal .modal-dialog {
        max-width: 445px;
    }
}


/* history page end */


/* thankyou popup */

.thanks-popup .modal-content {
    padding: 20px 25px;
    border-radius: 10px;
    border: 0;
}

.thanks-popup img {
    width: 75px;
    margin: 0 auto 30px auto;
}

.thanks-popup h2 {
    margin-bottom: 15px;
}

.thanks-popup p {
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 14px;
}

.thanks-popup a {
    font-size: 14px;
    line-height: 18px;
    color: #6C3086;
    text-decoration: none;
}
.success-content a {
    display: block;
    margin-top: 15px;
}

    .thanks-popup button{
        max-width:100% !important;
        width:100%;
    }
    .sbmit-btn {
        width: 100%;
        max-width: 345px;
    }
.footer_agri .sbmit-btn{
    max-width:320px;
}
.otherAssistance {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
    .otherAssistance button {
        border: 0;
        background-color: #F4DBFB;
        width: 50%;
        color: #6c3086;
        text-transform: uppercase;
        border-radius: 5px;
        height: 35px;
        font-weight: 500;
    }
        .otherAssistance a{
            margin-top:0;
            line-height:35px;
        }
        /* thankyou popup */
        @media(max-width:1024px) {
            .bg-setter img:nth-child(2) {
        width: 59%;
        left: 10%;
    }
    .bg-setter img:nth-child(3) {
        left: 43.5%;
        width: 33%;
    }
    .content-form>div {
        width: 100%;
        margin-right: 6vw;
    }
    .form-item input {
        width: 100%;
        max-width: 100%;
    }
    .mi-btn {
        width: 100%;
    }
    .history-body>.d-flex {
        flex-wrap: wrap;
    }
    header {
        position: relative;
    }
    .content-form-topEdge {
        margin-top: 20px;
    }
    .content-box {
        width: 270px;
    }
    .content-form {
        margin-left: 270px;
        width: calc(100% - 270px);
        padding: 0 35px;
    }
    .content-box.remedical-action::before {
        background-size: 100%;
    }
}

@media(max-width:967px) {
    .bg-setter img:nth-child(4) {
        width: 30%;
    }
    .login-intro {
        width: calc(100vw - 400px);
    }
    .login-box {
        width: 400px;
    }
    .login-intro h3 {
        font-size: 31px;
    }
    .content-box.remedical-action::before {
        background-size: 100%;
        right: -30px;
    }
    header {
        padding: 35px 25px;
        flex-wrap: wrap;
    }
    .content-box {
        width: 300px;
    }
    .content-form {
        margin-left: 300px;
        padding: 0 50px;
        min-height: auto;
        width: calc(100% - 300px);
    }
    .content-form>div {
        margin-right: 0;
    }
    .content-form>div,
    .width-adjuster {
        width: 100% !important;
        margin-left: 0 !important;
    }
    .checkbox-grp input {
        margin-right: 12px;
    }
    .form-item input {
        max-width: 100%;
        width: 100%;
    }
    .mi-btn {
        width: 100%;
    }
    .checkbox-grp label {
        font-size: 13px;
    }
    .checkbox-grp>label {
        font-size: 11px;
    }
}

@media(max-width:767px) {
    .checkbox-grp input {
        margin-right: 7px;
    }
    .login-intro {
        display: flex;
        align-items: center;
        place-content: unset;
        position: fixed;
        top: 0;
    }
    .login-intro h3 {
        font-size: 24px;
        line-height: 28px;
        padding-left: 15px;
    }
    .login-box {
        display: flex;
        justify-content: center;
        min-height: calc(100vh - 115px);
        margin-top: 120px;
    }
    .login-intro:before {
        height: 108px;
    }
    .content-box,
    .login-intro {
        min-height: 110px;
        overflow: hidden;
        width: 100%;
    }
    .content-box.step2 .bg-img {
        width: 100%;
        height: 100%;
        opacity: 0.8;
        object-fit: contain;
    }
    .content-box.step1 .vector-img,
    .content-box .bg-img {
        width: 100% !important;
        height: 100%;
        opacity: 0.8;
        object-fit: contain;
    }
    .history-link {
        color: #fff !important;
        text-shadow: 0 0px 6px #000;
    }
    .user-list li a {
        font-size: 13px;
    }
    .logo-link img {
        width: 140px;
    }
    .search-input {
        margin-bottom: 20px;
    }
    .content-form {
        width: 100%;
        margin-left: 0;
        padding: 0 20px 20px 20px;
        align-items: unset;
        margin-top: 125px;
    }
    .form-item input {
        width: 100%;
    }
    .mi-btn {
        width: 100%;
    }
    header {
        position: fixed;
        top: 0;
    }
    .user-list li {
        margin-left: 20px;
    }
    .checkbox-grp label {
        font-size: 14px;
    }
    .checkbox-grp>label {
        font-size: 12px;
    }
    .user-name {
        height: 30px;
        width: 30px;
        font-size: 14px;
    }
}

@media(min-width:968px) {
    .logo-link {
        position: fixed;
    }
    .position-relative {
        position: relative;
    }
}

@media(min-width:1600px) {
   
    .mi-btn {
        width: 100%;
    }
    .sbmit-btn{
        max-width:345px;
    }
    .footer_agri .sbmit-btn {
        max-width: 320px;
    }
    .form-item input {
        max-width: 100%;
        width: 100%;
    }
    .action-list li, .footer_agri {
        max-width: 680px;
    }
}

/*VALIDATION MESSAGE START*/
.error, .validation-message {
    margin-top: 0.25rem;
    font-size: 66.5%;
    color: #cd201f !important;
    display: inline !important;
    float: right
}

.invalid ~ .validation-message {
    display: block;
}

.form-control.invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23cd201f' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23cd201f' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

    .form-control.invalid:focus {
        border-color: #dc3545;
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    }

textarea.form-control.invalid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.form-check-input.invalid ~ .form-check-label {
    color: #dc3545;
}

.form-check-input.invalid ~ .validation-message {
    display: block;
}
/*VALIDATION MESSAGE END*/


.custom-select.is-valid, .was-validated .custom-select:valid {
    background: unset;
    border: 1px solid #ECE7EE;
    background-color: #FCFBFC !important;
    border-radius: 5px;
    color: #221B24;
    padding-right: 30px;
    position: relative;
    font-size: 14px;
}

.custom-select.is-valid:focus, .was-validated .custom-select:valid:focus, .custom-select.modified {
    box-shadow: unset;
    border: 1px solid #9662AC !important;
    background-color: #F4EFF6 !important;
}
.custom-select {
    background: url(../images/down-arrow.png) no-repeat right .75rem center/8px 10px !important;
    font-size: 14px;
    color: #221B24;
}
.errorText-left .validation-errors{
    padding-left:0;
}
.errorText-left .error, .errorText-left .validation-message {
    float: unset;
    font-size: 10px;
}

.btn-sm {
    padding: 8px 21px;
    font-size: 13px;
    height: 35px;
    border-radius: 5px;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.theme-bg {
    background-color: #6C3086;
    color: #fff;
}

.btn-xs {
    padding: 0 15px;
    font-size: 13px;
    height: 30px;
    min-width: 75px;
    font-weight:500;
    border-radius: 5px;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.theme-bg {
    background-color: #6C3086;
    color: #fff;
}

.lightTheme-bg {
    background-color: #F1E1F8;
    color: #6C3086;
}

.light-green {
    background-color: rgba(220, 255, 200, 1);
    color: #45B22C;
}
.bg_lightRed {
    background-color: #ffd2ce;
    color: #c03c3c;
}
.bg_violet {
    background-color: #E8D1F2;
    color: #6C3086;
}

.lightBlue_bg {
    background-color: #e4eaff;
    color: #4960b1;
}

.Yellow_bg {
    background-color: #fff4aa;
    color: #f3bd46;
}

.main-header {
    position: fixed;
    height: 60px;
    top: 0;
    left: 0;
    right: 0;
    padding: 0;
    display: flex;
    background-color: #6C3086;
    align-items: center;
}

.menu-list {
    padding: 0;
    margin: 0 0 0 auto;
    display: flex;
}

    .menu-list li {
        list-style-type: none;
        margin-left: 40px;
    }

        .menu-list li a.active {
            color: rgba(255, 255, 255, 1);
        }

        .menu-list li a {
            font-size: 14px;
            line-height: 19px;
            color: rgba(34, 27, 36, 0.5);
        }
.main-header .menu-list li a, .landing-header .menu-list li a {
    color: rgba(255, 255, 255, 0.7);
}
            .page-wrapper {
                margin-top: 80px;
            }


/* table */
.container-fluid {
    padding-left: 45px;
    padding-right: 45px;
}
.hoverTable tbody tr:hover td {
    cursor: pointer;
    background-color: #f9f8f9;
}
.text-ellipseTd{
    max-width:120px;
    text-overflow:ellipsis;
    white-space:nowrap;
    overflow:hidden;
}
.text-ellipse {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.table-overflow {
    width: 100%;
    overflow-x: auto;
}

.table td,
.table th {
    border: 0;
    padding: 0;
}

.helpline_table {
    border: 0;
    border-collapse: separate;
    border-spacing: 0 5px;
}

    .helpline_table thead th,
    .helpline_table tbody td {
        padding: 10px 20px;
        font-size: 11px;
        border-bottom: 0;
        white-space: nowrap;
        color: rgba(34, 27, 36, 0.5);
    }

    .helpline_table tbody tr td {
        border-top: 1px solid #F6F4F6;
        border-bottom: 1px solid #F6F4F6;
        border-left: 0;
        border-right: 0;
    }

    .helpline_table thead th {
        padding-bottom: 0;
    }

    .helpline_table tbody td {
        padding: 11px 20px;
        color: #221B24;
        background-color: #fff;
        font-size: 12px;
        line-height: 16px;
    }

    .helpline_table tbody tr td:first-child {
        border-radius: 6px 0 0 6px;
        border-left: 1px solid #F6F4F6;
    }

    .helpline_table tbody tr td:last-child {
        border-radius: 0 6px 6px 0;
        border-right: 1px solid #F6F4F6;
    }

table tbody tr td.collapse_td {
    padding: 0;
    background-color: rgba(246, 244, 246, 0.3) !important;
    border: 0 !important;
    border-bottom-right-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
}

    table tbody tr td.collapse_td table {
        margin: 0;
    }

        table tbody tr td.collapse_td table tr td {
            border: 0 !important;
            border-radius: 0 !important;
            background-color: rgba(246, 244, 246, 0.3);
            padding-top: 7px !important;
            padding-bottom: 7px !important
        }

        table tbody tr td.collapse_td table tr:first-child td {
            padding-top: 20px !important;
        }

            table tbody tr td.collapse_td table tr:first-child td:first-child {
                border-top-left-radius: 6px !important;
            }

            table tbody tr td.collapse_td table tr:first-child td:last-child {
                border-top-right-radius: 6px !important;
            }

        table tbody tr td.collapse_td table tr:last-child td {
            padding-bottom: 20px !important;
        }

            table tbody tr td.collapse_td table tr:last-child td:last-child {
                border-bottom-right-radius: 6px !important;
            }

            table tbody tr td.collapse_td table tr:last-child td:first-child {
                border-bottom-left-radius: 6px !important;
            }

        table tbody tr td.collapse_td table tr td label {
            color: rgba(34, 27, 36, 0.5);
            font-size: 11px;
            line-height: 15px;
        }

        table tbody tr td.collapse_td table tr td p {
            color: #221B24;
            font-size: 13px;
            line-height: 18px;
            white-space: normal;
        }

.deliverable-infos {
    height: auto;
}

    .deliverable-infos.td_hide {
        height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
    }

.action_btn {
    padding: 0;
    border: 0;
    background-color: transparent;
    filter: invert(7%) sepia(75%) saturate(229%) hue-rotate(241deg) brightness(91%) contrast(91%);
}

.mr-20p {
    margin-right: 20px;
}
@media(max-width:567px){
    .container-fluid{
        padding-left:20px;
        padding-right:20px;
    }
}
@media(min-width:1600px){
    .container-fluid{
        max-width:1440px;
    }
}

/* table end */

.page-wrapperHead {
    display: flex;
    flex-wrap: wrap;
}

    .page-wrapperHead h3, .page-wrapperHead h3 a {
        color: #221B24;
        font-size: 26px;
        font-weight: 500;
        line-height: 30px;
        margin-bottom: 20px;
        font-family: 'Ubuntu', sans-serif;
    }


/* physician page */

.btn-sm + .search-input {
    margin-left: 15px;
}


/* modal */

.history-modal .form-item .custom-select {
    font-size: 13px;
    height: 30px !important;
    background-color: #FCFBFC;
    border: 1px solid #ECE7EE;
    padding: 0 10px;
}


.borderd-box > .form-row {
    padding-top: 15px;
    border-bottom: 1px solid #DCDCDC;
    margin-left: -15px;
    margin-right: -15px;
}
    .borderd-box > .form-row > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
.helpline-modal .modal-header {
    border-bottom: 1px solid #DCDCDC;
    padding: 15px;
    justify-content: center;
}
.history-modal .modal-header .btn_grp {
    margin-left: auto;
}
.helpline-modal .modal-body {
    padding: 15px 15px 0 15px;
}
.HistoryCard .modal-body{
    padding-bottom:10px;
}
.helpline-modal .modal-body .form-item {
    margin-bottom: 15px;
}

.helpline-modal .modal-content {
    box-shadow: 0px 3px 6px #00000029;
    border: 1px solid #DCDCDC;
    border-radius: 10px;
}

.helpline-modal .modal-header h2 {
    text-align: center;
    font-size: 18px;
    line-height: 21px;
    font-weight: 500;
}

.helpline-modal .modal-footer {
    padding: 0 15px 15px 15px;
    border: 0;
}

    .helpline-modal .modal-footer > :not(:first-child) {
        margin-left: 10px;
    }

.helpline-modal .form-item label {
    color: rgba(34, 27, 36, 0.5);
    font-size:12px;
    margin-bottom:0;
}
.helpline-modal .form-item p {
    font-size:14px;
}
        .modal-backdrop {
        background-color: rgba(34, 27, 36, 0.4);
    }

.history-modal .form-item .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 30px;
    font-size: 13px;
}

.history-modal .form-item .select2-container .select2-selection--single,
.history-modal .form-item .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 30px !important;
}

.btn-adjust {
    margin-top: 19px;
    margin-left: -10px;
}
.history-modal .modal-header .btn_grp button, .history-modal .modal-header .btn_grp a {
    padding: 0;
    border: 0;
    color: #212529;
    background-color: transparent;
    font-size: 12px;
    margin-left: 10px;
    text-decoration: none;
}

.HistoryCard table {
    border: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #DCDCDC;
    margin-bottom: 0;
}

    .HistoryCard table td {
        border: 0 !important;
        font-size: 12px;
        padding-top: 7px;
        padding-bottom: 7px;
    }

        .HistoryCard table td:first-child {
            opacity: 0.5;
            white-space: nowrap;
            padding-right: 25px;
        }
/* doctor prescription modal */

.doctor_description {
    box-shadow: 0px 3px 6px #00000029;
    border: 1px solid #DCDCDC;
    border-radius: 0;
    background-color: #fff;
    width: 100%;
}

.doctor_description-head {
    display: flex;
    margin: 0 15px;
    height: 65px;
    align-items: center;
    border-bottom: 1px solid #DCDCDC;
}

    .doctor_description-head > div {
        margin-left: auto;
        text-align: right;
    }

        .doctor_description-head > div h2 {
            font-size: 20px;
            line-height: 28px;
        }

    .doctor_description-head div p {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 0;
    }

.description-bodyHead {
    display: flex;
    margin: 10px 15px;
}

    .description-bodyHead .form-item {
        margin-bottom: 0;
    }

.name {
    font-size: 14px;
    font-weight: 500;
    margin-right: 12px;
    font-family: 'Ubuntu', sans-serif;
}
    .name:first-letter{
        text-transform:uppercase;
    }
    .detail_table,
    .description-tableBox {
        width: calc(100% - 30px);
        border: 1px solid #DCDCDC;
        margin: 0 0 15px 15px;
    }

.description-tableBox {
    min-height: 50vh;
    position:relative;
    padding-bottom:30px;
}
    .description-tableBox > p {
        font-size: 9px;
        line-height: 13px;
        position: absolute;
        bottom: 5px;
        left: 10px;
        right: 10px;
    }
    .description_table {
        border: 0;
        width: 100%;
        margin-bottom: 0;
    }

.detail_table td {
    border-right: 1px solid #DCDCDC;
    vertical-align: middle;
    padding: 7px 10px;
    background-color: #f8f8f8;
}

    .detail_table td:last-child,
    .description_table thead th:last-child,
    .description_table tbody td:last-child {
        border-right: 0;
    }

.description_table thead th {
    font-weight: 500;
}

.detail_table td label {
    font-size: 10px;
    line-height: 16px;
    display: block;
    margin-bottom: 0px;
    margin-right: 2px;
    color: rgba(34, 27, 36, 0.5);
}

.detail_table td p {
    font-size: 12px;
    line-height: 16px;
}

.description_table thead th,
.description_table tbody td {
    border-right: 1px solid #DCDCDC;
    vertical-align: middle;
    padding: 7px 10px;
    font-size: 12px;
    background-color: #f8f8f8;
}

.description_table tbody td {
    background-color: #fff;
    border-bottom: 1px solid #DCDCDC;
}

.doctor_description-footer {
    height: 50px;
    font-size: 12px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    border-top: 1px solid #DCDCDC;
}

    .doctor_description-footer p {
        width: 85%;
        font-size: 9px;
        line-height: 14px;
    }
.snackbar-container {
    background: #E8D1F2 !important;
   /* background: #ffe8c7 !important;*/
}
    .snackbar-container p, .snackbar-container button {
        /*color: #6C3086 !important;*/
/*        color: #212529 !important;*/
color:#000 !important;
    }
    .menu-list + ul {
        margin: 0 !important;
    }

    @media(max-width:640px){
        .doctor_description-head img{
            width:90px;
        }
        .doctor_description-head > div h2 {
            font-size: 17px;
            line-height: 23px;
        }
        .doctor_description-head div p {
            font-size: 12px;
            line-height: 18px;
            margin-bottom: 0;
        }
        .helpline-modal .form-item label {
            font-size: 11px;
        }
        .helpline-modal .form-item p , .name{
            font-size:13px;
        }
        .detail_table, .description-tableBox {
            margin: 0 0 15px 7px;
        }
        .description-bodyHead {
            margin: 10px 7px;
        }
        .detail_table, .description-tableBox {
            width: calc(100% - 15px);
        }
            .detail_table td p {
                font-size: 11px;
            }
            .detail_table td label {
                font-size: 9px;
            }
        .description_table thead th, .description_table tbody td {
            padding: 7px 7px;
            font-size: 11px;
        }
    }


/* doctor prescription end */
/* caller detail list */
form.form-row{
    width:100%;
    margin-left:10px;
}
.btn-adjust {
    margin-top: 22px;
    margin-left: 0px;
}
.CalerListDetail {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.CalerListDetailBox {
    width: 280px;
}

.CalerListDetailTable {
    width: calc(100% - 300px);
}

.callerTable tr th {
    padding: 7px 10px;
    vertical-align: middle;
}

.CalerListDetailBox-head {
    background-color: #edd8f6;
    padding: 15px;
    border-radius: 6px 6px 0 0;
}

    .CalerListDetailBox-head p {
        font-size: 16px;
        font-weight: 500;
    }

    .CalerListDetailBox-head label {
        font-size: 12px;
        color: #716c72;
    }

.CalerListDetailBox-body {
    padding: 15px;
    background-color: #fff;
    height: calc(100vh - 215px);
    overflow-y: auto;
    border-radius: 0 0 6px 6px;
}

    .CalerListDetailBox-body .form-item label {
        opacity: 0.5
    }

    .CalerListDetailBox-body .form-item {
        margin-bottom: 10px;
    }

.PhysicianRemarkBox {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    height: 80px;
    font-size:12px;
    resize:none;
    margin: 15px 0 0 0;
    border: 1px solid #DCDCDC;
}
.callerTable {
    border: 1px solid #DCDCDC;
    background-color: #fff;
    height: calc(100vh - 290px);
    border-radius: 10px;
    overflow-x: auto !important;
}

.table-overflow .slimScrollDiv {
    overflow-x: auto !important;
}

.callerTable table {
    border: 0;
}

.callerTable th {
    padding: 7px;
    border-right: 1px solid #DCDCDC;
    background-color: #f2f1f1;
    font-size: 12px;
    vertical-align: middle;
    color: #00000080;
    font-weight: 400;
}

.callerTable tr:first-child th:first-child {
    border-radius: 10px 0 0 0;
}

.callerTable tr:first-child th:last-child {
    border-radius: 0 10px 0 0;
    border-right: 1px solid transparent;
}

.callerTable th:first-child,
.callerTable tbody tr td:first-child {
    padding-left: 15px;
    padding-right: 15px;
    text-align: left;
}
.fixed-width115 {
    max-width: 115px;
    width: 115px;
}
.fixed-width
{
    max-width: 65px;
    padding: 0 6px !important;
    width: 65px;
}
.callerTable tbody tr td {
    padding: 7px;
    border-right: 1px solid #DCDCDC;
    border-bottom: 1px solid #DCDCDC;
    text-align: center;
    vertical-align: middle;
}

    .callerTable tbody tr td input[type="text"],
    .callerTable tbody tr td input[type="number"] {
        width: 30px;
        padding: 0 7px;
        height: 30px;
        font-size: 12px;
        border-radius: 3px;
        border: 1px solid #ECE7EE;
        background-color: #FCFBFC;
        text-align: center;
    }

        .callerTable tbody tr td input[type="text"]::placeholder {
            color: #21252980;
        }

    .callerTable tbody tr td:first-child input[type="text"] {
        height: 30px;
        min-width: 250px;
        text-align: left;
        width: 100%;
    }

    .callerTable tbody tr td input[type="text"]:disabled {
        border: 0;
        background-color: transparent;
    }

        .callerTable tbody tr td input[type="text"]:disabled::placeholder {
            opacity: 0;
        }

.deletBtn,
.input_hider .addrows {
    display: none;
}

.input_hider .deletBtn {
    display: block;
    margin: 0 auto;
    background-color: transparent;
}

.callerTable tbody tr td .btn-xs {
    max-width: 30px;
    font-size: 17px;
    min-width: 30px;
    padding: 0;
    text-align: center;
}

.duration-input {
    min-width:135px;
    width: 100% !important;
    text-align: left !important;
}

.CalerListDetailTableFooter > form {
    display: flex;
    height: 35px;
    align-items: center;
    margin-top: 10px;
}

    .CalerListDetailTableFooter input {
        margin-right: 0;
    }

    .CalerListDetailTableFooter button {
        margin-right: 15px;
    }

    .CalerListDetailTableFooter label {
        line-height: 35px;
        font-weight: 500;
        font-size: 14px;
    }

.transparent_btn {
    background-color: transparent;
    border: 0;
    margin: 0 5px;
}

.page-wrapperHead h3 a img {
    width: 25px;
    margin-right: 10px;
}
.btn_Action {
    background-color: #efefef;
    border: 0;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
    height: 20px;
    margin-right: 7px;
}
.callerdetailtable tr td {
    vertical-align: middle;
}


@media(max-width:767px){
    .CalerListDetailTable, .CalerListDetailBox {
        width: 100%;
    }
    .CalerListDetailTable {
        margin-top: 20px;
    }
}

/* caller detail list End */

/*Annexture dropdown*/
.Annexturetable {
    padding:15px;

}
    .Annexturetable table{
        margin-bottom:0;
    }
    .Annexturetable table tr td {
        padding: 3px 6px;
        white-space:nowrap;
        font-size: 12px;
    }
        .Annexturetable table tr td input{
            margin-right:0;
        }
        .batch-count {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            color: #fff;
            display: block;
            font-size: 11px;
            line-height: 18px;
            position: absolute;
            background-color: #f19c1f;
            top: -4px;
            right: -7px;
        }

.dropup .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 0;
    border-right: .3em solid transparent;
    border-bottom: .3em solid;
    border-left: .3em solid transparent;
}

/*Annexture dropdown End*/
@media(min-width:576px) {
    .modal-medium {
        max-width: 380px;
    }

    .modal-large {
        max-width: 680px;
    }

    .modal-xtralarge {
        max-width: 460px;
    }

    .smallBox {
        max-width: 321px;
        margin: 1.75rem auto;
    }
    .AnnextureModal .modal-dialog{
        max-width:320px;
    }
}

/* modalend */

@media (min-width: 1300px) {
    .container {
        max-width: 1200px;
    }
}



/*DISABLING UP AND DOWN ARROWS FOR INPUT TYPE = NUMBER ------- START*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
/*DISABLING UP AND DOWN ARROWS FOR INPUT TYPE = NUMBER-------END*/


.text-ellipse {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.ml{
    margin-left:10px;
}