body {
    margin: 0;
    padding: 0;
    list-style: none;
    background: #181818;
    font-family: 'Montserrat', sans-serif;
}
:root {
    --red: #BE202D;
    --red-hover: #a3101c;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

/* google fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.h-screen {
    height: 100vh; /* Full height of the viewport */
}
.red{
    color: red!important;
}

/***********************
    header-top-area
***********************/
.header-top-area {
    position: fixed;
    top: 0;
    left: 0;
    background: #2C2C2C;
    width: 100%;
    box-shadow: 0px 3px 6px #000000;
    height: 60px;
    padding-right: 15px;
    z-index: 9999;
}

.header-top-area ul {
    text-align: right;
}

.header-top-area ul li {
    display: inline-block;
    position: relative;
}

.header-top-area ul li a {
    display: inline-block;
    padding: 10px 0px;
}

.header-top-area ul li ul.dropdown-profile {
    position: absolute;
    width: 140px;
    top: 115%;
    right: 0;
    background: #2C2C2C;
    text-align: left;
    padding: 3px 8px;
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: .2s ease-in-out;
}
.header-top-area ul li:hover .profile ,
.header-top-area ul li:hover .profile {
    top: 100%;
    visibility: visible;
    opacity: 1;
}
.header-top-area ul li:hover .screen ,
.header-top-area ul li:hover .screen {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

/* .header-top-area ul li:hover>ul.dropdown-profile {
    visibility: visible;
    top: 100%;
}

.header-top-area ul li:focus>ul.dropdown-profile {
    visibility: visible;
    top: 100%;
} */

.header-top-area ul li ul.dropdown-profile li {
    display: block;
}

.header-top-area ul li ul.dropdown-profile li a {
    display: block;
    color: #FFFFFF;
    font-size: 14px;
    text-decoration: none;
    padding: 8px 8px;
    border-bottom: 1px solid #535353;
    transition: .3s ease-in-out;
}

.header-top-area ul li ul.dropdown-profile li:last-child a {
    border-bottom: none;
}

.header-top-area ul li ul.dropdown-profile li a:hover {
    background: #4B4B4B;
    color: #FFFFFF75;
    border-radius: 5px;
}

/***********************
   sidebar-menu-area
***********************/
.sidebar-menu-area {
    position: fixed;
    top: 0;
    left: 0;
    height: 100px;
    background: #242424;
    width: 250px;
    height: 100vh;
    transition: .2s;
    z-index: 9999;
}

.sidebar-menu-area.collapsedone {
    left: -250px
}

.sidebar-main-logo {
    border-bottom: 1px solid #707070;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar-main-logo a {
    display: block;
    padding: 13px 13px;
    text-align: center;
    height: 60px;
}

.sidebar-main-logo a img {
    height: 100%;
    width: 100%;
}

.sidebar-main-logo .logomobile {
    display: none;
}

/* sidebar-main-menu */
.sidebar-main-menu {
    padding: 25px 10px;
}

.sidebar-main-menu ul li a {
    display: block;
    color: #FFFFFF65;
    text-decoration: none;
    font-size: 15px;
    transition: .3s ease-in-out;
    padding: 8px 10px;
    border-radius: 4px;
    margin: 2px 0px
}

.sidebar-menu-area.collapsedone ul li a {
    font-size: 18px;
    text-align: center;
}

.sidebar-main-menu ul li a span {
    margin-left: 10px;
}

.sidebar-main-menu ul li.activecss a {
    background: #404040;
    color: #FFFFFF
}

.sidebar-main-menu ul li a:hover {
    background: #0052D9;
    color: #FFFFFF;
}

.sidebar-main-menu ul ul.sidebar-dropdown {
    display: none;
    background-color: rgb(36, 36, 36);
}

.sidebar-main-menu ul ul.sidebar-dropdown li a {
    padding-left: 34px;
    text-align: left;
    font-size: 14px;

}

.sidebar-main-menu.collapsedone ul ul.sidebar-dropdown li a {
    padding-left: 0px;
}

.sidebar-menu-area.collapsedone ul li a span {
    display: none;
}

.sidebar-main-menu ul li.has_dropdown {
    position: relative;
}

.sidebar-main-menu ul li.has_dropdown a svg.dropdown_icon {
    float: right;
    margin-top: 4px;
    margin-right: 5px;
    transition: .2s
}

.sidebar-menu-area.collapsedone ul li.has_dropdown a svg.dropdown_icon {
    display: none
}

.sidebar-main-menu ul li a span {
    margin-left: 10px;
}

.sidebar-main-menu ul li ul.sidebar-dropdown a:hover {
    background: #404040;
}

/* page url equal */
.sidebar-main-menu ul li.has_dropdown.pageactive a svg.dropdown_icon {
    transform: rotate(90deg);
}

.sidebar-main-menu ul li.has_dropdown.pageactive ul.sidebar-dropdown {
    display: block;
}

.sidebar-main-menu.collapsedone ul li.has_dropdown.pageactive ul.sidebar-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    background: #242424
}

/* sidebar-togglebar */
.sidebar-togglebar {
    position: absolute;
    left: 260px;
    top: 15px;
    z-index: 9999;
    transition: .2s all ease-in-out;
}
.header-top-area.togglebar-icon .sidebar-togglebar {
    left: 10px;
} 

.sidebar-togglebar a {
    color: #FFFFFF;
    font-size: 20px;
    padding: 10px
}

/***********************
  hospital-content-area
***********************/
.hospital-content-area {
    overflow: hidden;
    margin-top: 80px;
    margin-left: 270px;
    margin-right: 20px;
    padding: 60px 20px;
    background: #242424;
    box-sizing: border-box;
    color: #FFFFFF;
    transition: .2s;
}

.hospital-content-area.menuleft {
    margin-left: 20px
}

.content-top {
    padding-bottom: 25px;
    display: flex;
}

.content-top .content-title {
    width: 50%;
}

.content-top .content-title h2 {
    font-size: 24px;
    font-weight: 700;
    ;
}

.content-top .content-button {
    width: 50%;
    text-align: right;
}

.content-top .content-button a {
    color: var(--red);
    font-size: 14px;
    text-decoration: none;
    background: #FFFFFF;
    padding: 7px 28px;
    display: inline-block;
    border-radius: 5px;
    transition: .3s ease-in-out
}

.content-top .content-button a span {
    background: var(--red);
    color: #FFFFFF;
    font-size: 16px;
    padding: 2px 6px;
    margin-right: 3px;
    font-weight: bold;
    transition: .3s ease-in-out
}

.content-top .content-button a:hover {
    color: #FFFFFF;
    background: var(--red);
}

.content-top .content-button a:hover span {
    background: #FFFFFF;
    color: var(--red);
    ;
}

.content-tablearea {
    padding: 30px 15px;
    background: #333333;
    border-radius: 5px;
}

.table {
    margin-bottom: 0px;
}

.form-check {
    margin-bottom: 0px;
}

.form-check-input:focus {
    border: none;
    box-shadow: inherit;
}

.form-switch .form-check-input {
    height: 20px;
    width: 40px;
    position: relative
}

.form-switch .form-check-input:checked {
    background-color: #0052D9;
    border-color: #0052D9;
}

.form-switch .form-check-input:checked::before {
    content: "";
    background: url('../images/checked.png') no-repeat scroll 0 0 / 100% 100%;
    position: absolute;
    left: 7px;
    top: 5px;
    width: 12px;
    height: 10px;
}

.form-switch .form-check-input::before {
    content: "x";
    position: absolute;
    right: 7px;
    top: -3px;
    font-size: 14px;
    color: #645f5f;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.content-tablearea table th,
td {
    color: #FFFFFF;
    font-size: 16px;
    padding-left: 15px;
    vertical-align: middle;
    border: 1px solid #FFFFFF65;
}

.content-tablearea table th {
    background: #ffffff20
}

.content-tablearea table td {
    font-weight: 400;
    padding-left: 15px;
    border: 1px solid #FFFFFF65;
}

.content-tablearea table td a {
    height: 32px;
    width: 32px;
    background: none;
    color: #FFFFFF;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    line-height: 33px;
    border-radius: 50%;
    transition: .3s ease-in-out
}

.content-tablearea table td a.edit:hover {
    background: #0052D9
}

.content-tablearea table td a.remove:hover {
    background: #E0001C
}

.content-tablefooter {
    padding-top: 15px;
    display: flex;
    align-items: center;
}

.content-tablefooterleft {
    width: 50%;
}

.content-tablefooterright {
    width: 50%
}

.content-tablefooterright ul {
    text-align: right;
}

.content-tablefooterright ul li {
    display: inline-block;
    padding-left: 5px;
    margin-bottom: 5px;
}

.content-tablefooterright ul li a {
    display: block;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    color: #00000060;
    background: #FFFFFF;
    height: 35px;
    width: 35px;
    line-height: 36px;
    border-radius: 5px;
    transition: .3s ease-in-out
}

.content-tablefooterright ul li:first-child a {
    background: inherit;
    color: #FFFFFF;
    font-size: 18px;
}

.content-tablefooterright ul li:last-child a {
    background: inherit;
    color: #FFFFFF;
    font-size: 18px;
}

.content-tablefooterright ul li a.active {
    background: #0052D9;
    color: #FFFFFF
}

.content-tablefooterright ul li a:hover {
    background: #0052D9;
    color: #FFFFFF
}

/* dashboard page */
.visitor-count {
    padding: 40px 25px;
    background: #404040;
    box-sizing: border-box;
    border-radius: 5px;
}

.dashboard-graph .content-top {
    padding-bottom: 15px;
    margin-bottom: 35px;
    border-bottom: 1px solid #DADADA50
}

.dashboard-graph #pills-tab {
    float: right;
}

.dashboard-graph #pills-tab li button.nav-link {
    width: 120px;
    color: #A9ABB0
}

.dashboard-graph #pills-tab li button.nav-link:hover {
    background-color: #404040;
}

.dashboard-graph #pills-tab li button.nav-link.active {
    background-color: var(--red);
    color: #FFFFFF;
    font-weight: 600;
}

.dashboard-graph img.graph {
    max-width: 100%;
}

.visitor-countsingle {
    border-bottom: 1px solid #FFFFFF40;
    position: relative;
}

.visitor-countsingle h2 {
    font-size: 40px;
    font-weight: 500;
}

.visitor-countsingle p {
    font-size: 16px;
    padding: 20px 0px;
}

.visitor-countsingle span.color_square {
    background: var(--red);
    height: 16px;
    width: 16px;
    border-radius: 3px;
    margin-right: 6px;
    display: inline-block;
    margin-bottom: -2px;
}

.visitor-countsingle span.visitor_increase {
    color: #30D988;
    font-size: 16px;
    position: absolute;
    right: 0;
    top: 35%
}

.visitor-countsingle span.visitor_increase.descrease {
    color: #E0001C
}

/* content-formarea */
.content-formarea label {
    font-size: 14px;
    padding-bottom: 8px
}

.content-formarea input,
.content-formarea textarea {
    border-radius: 5px;
}

.content-formarea input.form-control {
    background: #404040;
    border: 1px solid #707070;
    color: #FFFFFF
}

.content-formarea input.form-control:focus {
    box-shadow: inherit;
    border: 1px solid #86b7fe;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25)
}

.content-formarea textarea.form-control {
    background: #404040;
    border: 1px solid #707070;
    color: #FFFFFF
}
.content-formarea textarea::placeholder {
    color: #707070;
}

.content-formarea textarea.form-control:focus {
    box-shadow: inherit;
    border: 1px solid #86b7fe;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25)
}

.content-formarea .form-select {
    background-color: #404040;
    border: 1px solid #707070;
    border-radius: 0px;
    color: #FFFFFF
}

.content-formarea .form-select:focus {
    box-shadow: inherit;
}

button.submit-button {
    background: #0052D9;
    color: #FFFFFF;
    padding: 8px;
    padding-top: 10px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    width: 180px;
    transition: .3s ease-in-out;
}

button.submit-button:hover {
    background: #FFFFFF;
    color: #0052D9;
}

.content-formarea p.image {
    font-size: 16px;
    padding-bottom: 8px;
}

.browse-imagearea {
    padding-left: 30px;
}

.browse-imagearea label img {
    max-width: 100%;
    border: 1px solid #6e6d6d;
    max-height: 290px;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
}

/* role add design */
.role-formcheck .form-check {
    float: left;
    overflow: hidden;
    margin-right: 25px;
    margin-bottom: 15px
}

/* setting */
.browse-imagearea.browsesetting label img {
    max-height: 100px;
}

.browse-imagearea.browsesetting label img.favicon {
    max-height: 64px;
}

/* report page */
.content-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.option_single {
    width: 100%;
    margin-right: 20px;
    margin-bottom: 20px;
}

.option_single:last-child {
    margin-right: 0px;
}

.option_single label {
    font-size: 15px;
    color: #9C9C9C;
    padding-bottom: 5px;
}

.option_single .form-select {
    background-color: #333333;
    color: #FFFFFF;
    border: none;
    border-radius: 0px;
    font-size: 15px;
    padding: 9px 8px;
    text-align: center;
    background-image: url('../images/selectbg.png');
    background-size: 12px 7px;
}

.option_single .form-select:focus {
    box-shadow: inherit;
}

.option_single input.form-select {
    cursor: pointer;
}

/* Calendar Design */
#ui-datepicker-div {
    display: none;
    background-color: #fff;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
    margin-top: 0.25rem;
    border-radius: 0.5rem;
    padding: 0.5rem;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.ui-datepicker-calendar thead th {
    padding: 0.25rem 0;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 400;
    color: #78909C;
}

.ui-datepicker-calendar tbody td {
    width: 2.5rem;
    text-align: center;
    padding: 0;
}

.ui-datepicker-calendar tbody td a {
    display: block;
    border-radius: 0.25rem;
    line-height: 2rem;
    transition: 0.3s all;
    color: #546E7A;
    font-size: 0.875rem;
    text-decoration: none;
}

.ui-datepicker-calendar tbody td a:hover {
    background-color: #0052D9;
    color: #ffffff
}

.ui-datepicker-calendar tbody td a.ui-state-active {
    background-color: #009688;
    color: white;
}

.ui-datepicker-header a.ui-corner-all {
    cursor: pointer;
    position: absolute;
    top: 0;
    width: 2rem;
    height: 2rem;
    margin: 0.5rem;
    border-radius: 0.25rem;
    transition: 0.3s all;
}

.ui-datepicker-header a.ui-corner-all:hover {
    background-color: #ECEFF1;
}

.ui-datepicker-header a.ui-datepicker-prev {
    left: 0;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
    background-repeat: no-repeat;
    background-size: 0.5rem;
    background-position: 50%;
    transform: rotate(180deg);
}

.ui-datepicker-header a.ui-datepicker-next {
    right: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==');
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: 50%;
}

.ui-datepicker-header a>span {
    display: none;
}

.ui-datepicker-title {
    text-align: center;
    line-height: 2rem;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    padding-bottom: 0.25rem;
}

.ui-datepicker-week-col {
    color: #78909C;
    font-weight: 400;
    font-size: 0.75rem;
}

/***********************
       Call Page
***********************/
.all-calls h2.call-title {
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 15px;
}

.calling-left-top {
    padding: 18px;
    box-sizing: border-box;
    background: #333333;
}

.calling-leftsingle img.leftimg {
    max-width: 100%;
    border-radius: 8px;
}
.screen-small-single img {
    max-width: 100%;
    /* height: 160px; */
    height: auto;
    object-fit: contain;
}
.calling-leftoptions {
    display: flex;
    align-items: center;
    justify-content: center;
}

.calling-leftoptions-top {
    padding: 15px;
    background: #555555;
    box-sizing: border-box;
}

.calling-leftoptions-top .form-check {
    margin-bottom: 10px;
}

.calling-leftoptions-top .form-check:last-child {
    margin-bottom: 0px;
}

.calling-leftoptions-bottom {
    text-align: center;
    padding-top: 20px;
}

.calling-leftoptions-bottom h3 {
    font-size: 24px;
    font-weight: 500;
}

.calling-leftoptions-bottom h1 {
    font-size: 38px;
    font-weight: 700;
    padding: 10px 0px;
}

.calling-leftoptions-bottom p {
    font-size: 24px;
}

/* calling-left-buttons */
.calling-left-buttons {
    padding-top: 25px;
}

.calling-left-buttons a.call-btn {
    color: var(--red);
    background: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    max-width: 250px;
    width: 100%;
    text-align: center;
    transition: .3s ease-in-out
}

.calling-left-buttons a.call-btn.recall {
    background: var(--red);
    color: #FFFFFF
}

.calling-left-buttons a.call-btn:hover {
    background: var(--red);
    color: #FFFFFF
}

.calling-left-buttons .button_center {
    text-align: center
}

.calling-left-buttons .button_right {
    text-align: right
}

/* calling-right */
#overflow-y-scroll{
    overflow-y: scroll;
    height: 570px;
    overflow-x: hidden;
}

.next-calling-single {
    position: relative;
    padding: 25px;
    background: #333333;
    box-sizing: border-box;
    text-align: center;
}

.next-calling-single img {
    max-width: 100%;
    margin: auto;
}

.dl {
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    background: red;
    padding: 0px 5px;
}

#delete .modal-footer {
    border-top: none !important;
}

.next-calling-top {
    background: #404040
}

.next-calling-bottom {
    background: #404040;
    padding: 15px 10px;
}

.next-calling-bottom p {
    font-size: 14px;
}

.next-calling-bottom h3 {
    font-size: 26px;
    padding: 7px 0px;
}

.next-calling-bottom a {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: var(--red);
    color: #FFFFFF;
    display: inline-block;
    padding: 6px 20px;
    border-radius: 3px;
    margin-top: 5px;
    transition: .2s ease-in-out
}

.next-calling-bottom a:hover {
    color: var(--red);
    background: #FFFFFF;
}

/* Modal */
.transfer-modal .modal-content {
    background: #333333
}

.transfer-modal .modal-header {
    padding-bottom: 0px;
    border-bottom: none
}

.transfer-modal .btn-close {
    background: transparent url("../images/close.png") center/1em auto no-repeat;
}

.transfer-modal .modal-body {
    padding: 0px 15px;
    padding-bottom: 15px;
}

.transfer-modal .modal-body h1 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 15px;
}

.transfer-modal .modal-body .form-check {
    margin-bottom: 10px;
}

.transfer-modal .modal-body a.transfer-btn {
    display: block;
    padding: 6px;
    text-decoration: none;
    background: #0052D9;
    color: #FFFFFF;
    text-align: center;
    border-radius: 3px;
    margin-top: 20px;
}

/***********************
       Token Page
***********************/
.token_bodyclass {
    background: #FFFFFF;
}

.token_contentarea h1 {
    text-align: center;
    font-weight: 700;
    color: #707070;
    font-size: 36px;
    padding-bottom: 5px;
}
.token_contentarea img {
    width: 100%;
}
.token_contentarea input.form-control:focus {
    box-shadow: inherit;
}
.token_contentarea .token_btn {
    display: block;
    text-decoration: none;
    padding: 8px;
    background-color: var(--red) !important;
    border: 1px solid var(--red);
    color: #fff;
    width: 100%;
    text-align: center;
    margin: 10px 0px;
    border-radius: 3px;
    transition: .2s ease-in-out
}
.token_contentarea .token_btn:hover {
    background: var(--red);
    color: #FFFFFF;
}
.token_contentarea .btn-primary {
    background-color: var(--red) !important;
    border: 1px solid var(--red) !important;
}

.token_close {
    position: absolute;
    right: 30px;
    top: 30px;
}

.token_close a {
    font-size: 16px;
    font-weight: 600;
    color: #181818;
    text-decoration: none;
    border: 1px solid #181818;
    padding: 2px 9px;
    display: inline-block;
    transition: .2s ease-in-out;
}

.token_close a:hover {
    color: var(--red);
    border: 1px solid var(--red);
}

/***********************
       Screen Page
***********************/
.screen-headerarea {
    background: var(--red);
    position: relative;
    width: 100%;
    padding: 6px 15px;
}

.screen-headerlogo h1 {
    font-size: 120px;
}

.screen-headerright {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.screen-headerright ul li {
    display: inline-block;
    padding: 0px 2px
}

.screen-headerright ul li a {
    color: #FFFFFF;
    display: block;
    padding: 4px 8px;
    border: 1px solid var(--red);
    transition: .2s ease-in-out
}

.screen-headerright ul li a:hover {
    border: 1px solid #FFFFFF;
}

/* screen-contentarea */
.main-screen {
    padding-top: 10px;
}
.screen-container {
    max-width: 1800px;
    width: 98%;
    margin: auto;
    overflow: hidden;
}

.main-screen .screen-container {
    max-width: 100%;
    width: 98%;
    margin: auto;
    overflow: hidden;
}

.calling-left-top.screen-top {
    background: #FFFFFF;
    box-shadow: 0px 3px 30px #00000016;
}

.screen-contentarea h2.call-title {
    font-size: 24px;
    font-weight: 700;
    padding-top: 5px;
    padding-bottom: 15px;

}

.calling-leftsingle.align-items-center {
    background: #F1F1F1;
    margin: 0px;
}

.calling-leftsingle.align-items-center .col-sm-6 {
    padding-left: 0px;
    padding-right: 0px;
}

.screen-leftoptions h1 {
    font-size: 45px;
    color: var(--red)
}

.screen-leftoptions h1:last-child {
    color: #E0001C;
}

.screen-leftoptions h3 {
    font-size: 26px;
}

.screen-small-single {
    background: #FFFFFF;
    padding: 10px;
    box-shadow: 0px 3px 30px #00000016;
}


.screen-bottom .screen-leftoptions h3 {
    font-size: 12px
}

.screen-bottom .screen-leftoptions h1 {
    font-size: 22px;
    padding: 0px 0px;
    color: var(--red)
}

.screen-bottom .screen-leftoptions h1.red {
    color: #E0001C
}

.screen-bottom .screen-leftoptions p {
    font-size: 12px;
}

.footer_notice {
    background: var(--red);
    padding: 5px 20px;
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
}

.footer_notice p {
    font-size: 20px;
    padding: 5px 0px;
    color: #FFFFFF;
    font-weight: 700;
}

.footer_notice p span.marquee {
    font-weight: 400;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.footer_notice p span.notice {
    font-weight: 700;
    position: relative;
    z-index: 9999;
    background: #E0001C;
    padding: 5px;
}

/***********************
       Login Page
***********************/
.loginpage {
    background: #000000;
    height: 100vh;
    padding: 40px;
    box-sizing: border-box;
}

.loginpage-area {
    overflow: hidden;
    background: #242424;
    height: 85vh;
}

/* logincontent */
.token_contentarea.logincontent {
    position: absolute;
    left: 50%;
    top: 48%;
    -webkit-transform: translate(-50%, -54%);
    transform: translate(-50%, -50%);
    background: #333333;
    border: 2px solid #949494;
    max-width: 1000px;
    width: 100%;
    border-radius: 10px;
}

.token_contentarea.logincontent h1 {
    background: #848484;
    padding: 18px 0px;
    font-size: 24px;
    color: #FFFFFF;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.login-form {
    padding: 20px 25px;
    padding-top: 35px;
    box-sizing: border-box;
}

.login-form .token_btn {
    border: 1px solid var(--red);
    background: var(--red);
    color: #FFFFFF;
}

.login-form .token_btn:hover {
    border: 1px solid var(--red);
    background: inherit;
}

.login-form input.form-control {
    border: inherit;
    border-bottom: 1px solid #707070;
    border-radius: inherit;
    background: transparent;
    padding: 15px;
    padding-left: 40px;
    position: relative;
}

.login-form .email {
    position: relative;
}

.login-form .email::after {
    content: "";
    position: absolute;
    background: url('../images/email.png');
    left: 1%;
    top: 38%;
    background-repeat: no-repeat;
    width: 21px;
    height: 14px;
}

.login-form .password {
    position: relative;
}

.login-form .password::after {
    content: "";
    position: absolute;
    background: url('../images/password.png');
    left: 1%;
    top: 21%;
    background-repeat: no-repeat;
    width: 19px;
    height: 24px;
}

.login-form .form-check label {
    color: #6D6D6F
}

.login-form .form-check .form-check-input {
    background: #6D6D6F;
    border-color: #6D6D6F
}

.login-form .form-check .form-check-input:checked[type="checkbox"] {
    background-image: url('../images/logincheck.png');
    background-size: 9px 7px;
    background-repeat: no-repeat;
    background-position: center;
}

.login-form .text-align-right {
    text-align: right;
}

.login-form .text-align-right a {
    color: #6D6D6F;
    text-decoration: none;
}

.direct_btns {
    margin-top: -5px;
}

.direct_btns .btn {
    margin: 5px;
}

.login_footer {
    text-align: center;
    overflow: hidden;
    padding-top: 10px;
}

.login_footer p {
    padding: 10px;
    color: #FFFFFF40
}

/* counter */
.token_contentarea.counter {
    width: 1000px
}

.token_contentarea.counter h2 {
    font-weight: 700;
    padding-bottom: 10px
}

.last-5-call {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-content: center;
    justify-content: center;
    grid-gap: 10px;
    margin-bottom: 15px;
}

.last-5-call h4 {
    font-size: 18px;
    text-align: center;
    padding: 10px;
    background-color: #333333;
}

.token_genderarea {
    max-width: 500px;
    width: 100%;
    margin: auto;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.token_genderarea .gender {
    background: #CACACA;
    /* background: #ddd; */
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    cursor: pointer;
    padding-bottom: 15px;
    text-align: center;
}

.token_genderarea .gender:hover {
    background: #ffffff;
    box-shadow: 0px 3px 10px #ddd;
}

.token_genderarea .gender.active {
    background: #ffffff;
    box-shadow: 0px 3px 10px #ddd;
}

.token_genderarea span {
    display: block;
    font-size: 24px;
    font-weight: bold;
    padding-top: 3px;
    font-family: 'Hind Siliguri', sans-serif;
    font-weight: 700;
}

.token_genderarea img {
    margin: auto;
    width: 140px;
}

.token_genderarea .gender:hover span {
    color: var(--red);
}

#token_add input.form-control {
    padding: 20px 15px !important;
    font-size: 20px;
    font-family: 'Hind Siliguri', sans-serif;
    font-weight: 600;
}
#token_add input.form-control:focus {
    border: 1px solid var(--red) !important;
}

.tab_container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

#token_add .btn {
    padding: 20px 15px;
    font-size: 20px;
    font-family: 'Hind Siliguri', sans-serif;
    font-weight: 700;
}

#token_add .form-group {
    margin-bottom: 1rem;
}

#my_camera {
    width: 100%;
    height: auto;
    margin: auto;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 10px;
    height: 450px;
    overflow: hidden;
}

#my_camera .auto-video {
    width: 100%;
    height: auto;
}

.full_area {
    display: grid;
    align-items: center;
    justify-content: center;
}
.mobile-calling {
    display: none;
}
.servive-brder {
 border-left: 1px solid #dbdada;
}
.dummy-img img {
    height: 400px;
    width: 100%;
    object-fit: contain;
}
.sticted-img img {
    height: 450px;
    width: 100%;
}
.view_err_msg {
    margin-bottom: 0px;
}
.counter-h-screen {
    height: 100vh;
}
.counter-full-area {
    height: calc(100vh - 150px) !important;
}
.counter-screen-header {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.counter-full-area-empty {
    height: 100vh !important;
}
/* Token Page  */
.token-header {
    height: 50px;
}
.token-full-area {
    height: calc(100vh - 50px);
}
/* Main Screen  */
.main-screen-header {
    height: 50px;
}
.main-screen {
    height: calc(100vh - 50px);
    display: flex;
}

@media screen and (max-width: 1440px) {
    .screen-small-single img {
        max-width: 100%;
        height: auto;
    }
    .mobile-calling {
        display: block;
    }
    .mobile-calling h1 {
        font-size: 16px !important;
    }
    .screen-bottom .screen-leftoptions h1 {
        font-size: 16px;
    }
    .dummy-img img {
        height: auto;
    }
    .next-call-transfer {
        flex-direction: column;
    }
    .next-calling-bottom a {
        padding: 6px 15px;
    }
    
}
@media screen and (max-width: 1280px) {
    #my_camera .auto-video {
        width: 100%;
        height: 450px;
    }
}
@media screen and (max-width: 1024px) {
    .loginpage {
        padding: 20px;
    }

    .token_contentarea.logincontent {
        width: 90%;
    }
    .sidebar-menu-area ul li.has_dropdown a svg.dropdown_icon {
        display: none;
    }
    .sidebar-menu-area {
        left: -250px;
    }
    .sidebar-menu-area.collapsedone {
        left: 0px;
    }
    .sidebar-togglebar {
        left: 10px;
    }
    .header-top-area.togglebar-icon .sidebar-togglebar {
        left: 260px;
    }
    .hospital-content-area {
        margin-left: 20px;
    }

    .sidebar-menu-area.collapsedone ul li a span {
        display: inline-block;
    }

    .sidebar-menu-area.collapsedone ul li.has_dropdown a svg.dropdown_icon {
        display: block;
    }

    .sidebar-menu-area.collapsedone ul li a {
        font-size: 14px;
        text-align: left;
    }

    .token_contentarea {
        max-width: 950px;
        width: 95%;
    }

    .sidebar-dropdown {
        left: 70px;
        background: rgb(36, 36, 36);
    }
    .mobile-calling h1 {
        font-size: 15px !important;
    }
    .screen-bottom .screen-leftoptions h1 {
        font-size: 15px;
    }
    .screen-bottom .screen-leftoptions h3 {
        font-size: 12px;
    }
    #token_add input.form-control {
        padding: 12px 5px !important;
        font-size: 16px;
    }
    #token_add .btn {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    #my_camera .auto-video {
        width: 100%;
        height: 200px;
    }
    
    #my_camera {
        height: 200px;
    }
    .sticted-img img {
        height: 200px;
        object-fit: contain;
    } 

    .screen-headerlogo h1 {
        font-size: 70px;
    }
    .present-call img.leftimg {
        max-width: 100%;
        height: 370px;
        object-fit: contain;
    }
    .calling-leftsingle img.left-img-small {
        max-width: 100%;
        height: auto !important;
        object-fit: contain;
    }
    .counter-screen-header {
        height: 130px;
    }
    .counter-full-area {
        height: calc(100vh - 130px) !important;
    }

}

@media screen and (max-width: 992px) {
    #my_camera {
        width: 100%;
    }
    .token_contentarea.counter {
        max-width: 700px;
        width: 100%;
    }

}

@media screen and (max-width: 768px) {
    
    .screen-headerlogo h1 {
        font-size: 60px;
    }

    .last-5-call {
        grid-template-columns: repeat(2, 1fr);
    }

    .calling-leftoptions {
        padding-left: 0px;
    }

    .content-tablefooter {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .content-tablefooterleft {
        width: 100%;
        text-align: center;
    }

    .content-tablefooterright {
        width: 100%;
    }

    .content-tablefooterright ul {
        text-align: center;
    }

    .content-options {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .option_single {
        width: 30%;
        margin-right: 10px;
        margin-bottom: 20px;
    }
    .screen-bottom .screen-leftoptions h3 {
        font-size: 10px;
    }
    .screen-bottom .screen-leftoptions p {
        font-size: 10px;
    }
    .screen-leftoptions h3 {
        font-size: 22px;
    }
    .screen-leftoptions h1 {
        font-size: 35px;
    }
    .calling-leftoptions-bottom p {
        font-size: 20px;
    }
    .calling-leftoptions-bottom h1 {
        padding: 2px 0px;
    }
    .calling-leftoptions-bottom {
        padding-left: 2px;
    }
    .counter-full-area {
        height: calc(100vh - 100px) !important;
    
    }
    .counter-screen-header {
        height: 100px;
    }
    .mobile-calling h1 {
        font-size: 12px !important;
    }
    .screen-bottom .screen-leftoptions h1 {
        font-size: 12px;
    }


}

@media screen and (max-width: 600px) {

    .calling-left-buttons .button_center,
    .calling-left-buttons .button_right,
    .calling-left-buttons .button_left {
        text-align: center;
    }

    .content-top .content-title h2 {
        font-size: 24px;
        font-weight: 700;
    }

    .content-top {
        padding-bottom: 25px;
        display: flex;
        flex-direction: column;
    }

    .content-top .content-title {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .content-top .content-button {
        width: 100%;
        text-align: center;
    }

    .sidebar-main-menu ul ul.sidebar-dropdown li a {
        padding-left: 10px !important;
        padding-right: 10px;
    }

}

@media screen and (max-width: 512px) {
    .screen-headerlogo h1 {
        font-size: 40px;
    }

    .last-5-call h4 {
        font-size: 16px;
    }

    .option_single {
        width: 98%;
        margin-right: 10px;
        margin-bottom: 20px;
    }

    .sidebar-menu-area.collapsedone {
        width: 230px;
    }
}

@media screen and (max-width: 390px) {
    .token_genderarea img {
        margin: auto;
        width: 110px;
    }
}

.table-body tbody tr td {
    background-color: #191919 !important;
    color: #fff;
}

.dataTables_length select {
    color: white !important;
}

label {
    display: block;
    text-align: left;
}