button {
    border-radius: 80%;
    width: 10%;
}

.menutip {
    #visibility: hidden;
    display: none;
    width: 120px;
    #background-color: black;
    color: black;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
}

.menuitem:hover .menutip {
    #visibility: visible;
    display: inline-block;
}

.paddingtop40 {
    margin-top: 40px;
}

.banId {
    height: 50px;
    border: 1px solid #33A8FF;
}

.login-box {
    width: 200px;
    background-color: #33a8ff;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 400px;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

#left-panel {
    width: 15%;
    padding: 20px;
    box-sizing: border-box;
}

#right-panel {
    width: 85%;
    box-sizing: border-box;
    padding: 20px;
    overflow-y: auto;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color: #33A8FF;
    color: #fff;
    /*text-align: center;*/
    /*padding: 10px 0;*/
}

.footCon {
    /*display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 10px;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-icon {
    display: inline-block;
    margin: 0 20px;
    color: #fff;
    font-size: 18px;
    /*padding: 10px;*/
}

.footer-text {
    display: block;
    /*margin-top: 5px;*/
    font-size: 12px;
}

.first-icon {
    margin-left: 60px;
}

.footCon .footer-icon:nth-child(2):only-child {
    margin-left: auto;
}

li {
    margin-bottom: 12px;
}

/* Add an active class to the active dropdown button */
.active {
    background-color: green;
    color: white;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
    display: none;
    background-color: #33A8FF;
    padding-left: 8px;
}

/* Optional: Style the caret down icon */
.fa-caret-down,
.fa-caret-up {
    float: right;
    padding-right: 8px;
}

/* Some media queries for responsiveness */
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black */
    backdrop-filter: blur(10px);
    /* Apply blur effect */
    z-index: 1;
    display: none;
    /* Hide by default */
}

/* Styles for the video popup */
.video-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: none;
    /* Hide by default */
    max-width: 80%;
    /* Set the maximum width to 80% of the viewport width */
    text-align: center;
    /* Center the content horizontally */
    background: #fff;
    /* Background color for the video popup */
    padding: 20px;
    /* Add some padding for better appearance */
    border-radius: 10px;
    /* Rounded corners */
}

.video-popup video {
    max-width: 100%;
    /* Limit the video's width to 100% of the container */
    height: auto;
    /* Maintain aspect ratio */
    display: block;
    /* Ensure video is displayed as a block element */
    margin: 0 auto;
    /* Center the video horizontally */
}

.close-vid-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;
    background-color: #fff;
    #background-color: #f44336;
    color: #f44336;
    border: none;
    border-radius: 50%;
    /* Make it circular */
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #1363df;
    border-radius: 5px;
}

table {
    border: 1px solid black;
}

body {
    #font-family: Times New Roman, sans-serif;
    font-family: Arial, sans-serif;
}

datalist {
    max-height: none;
    width: auto;
}

input {
    font-size: 16px;
}

.pcon {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pcon input,
.pcon select,
.pcon form,
.pcon textarea {
    flex: 1;
}

#sbconid {
    margin-right: 15px;
}

.warpper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tab,
.tabe {
    cursor: pointer;
    padding: 10px 20px;
    margin: 0px 2px;
    background: #33A8FF;
    #background: #32557f;
    display: inline-block;
    color: #fff;
    border-radius: 3px 3px 0px 0px;
    box-shadow: 0 0.5rem 0.8rem #00000080;
    font-size: 18px;
}

.panelss {
    background: #fff;
    box-shadow: 0 2rem 2rem #00000080;
    min-height: auto;
    width: 100%;
    max-width: 1200px;
    border-radius: 3px;
    overflow: hidden;
    padding: 20px;
}

.panels {
    background: #fff;
    box-shadow: 0 2rem 2rem #00000080;
    min-height: auto;
    width: 100%;
    max-width: 1200px;
    border-radius: 3px;
    overflow: hidden;
    padding: 20px;
}

.panel {
    display: none;
    animation: fadein 0.8s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.col {
    float: left;
    width: 30%;
    height: 200px;
    border: 1px solid black;
    #background-color: #bbb;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.ed {
    width: 100%;
    max-width: 100%;
    height: 75%;
    overflow-y: scroll;
    word-wrap: break-word;
    font-size: 20px;
}

.panel-title {
    font-size: 1.5em;
    font-weight: bold;
}

.warpper .radio {
    display: none;
}

#six:checked~.panelss #six-panel,
#seven:checked~.panelss #seven-panel {
    display: block;
}

#six:checked~.tabss #six-tab,
#seven:checked~.tabss #seven-tab {
    background: #fff;
    color: #000;
    border-top: 3px solid #32557f;
}

#one:checked~.panels #one-panel,
#two:checked~.panels #two-panel,
#three:checked~.panels #three-panel,
#four:checked~.panels #four-panel,
#five:checked~.panels #five-panel {
    display: block;
}

#one:checked~.tabs #one-tab,
#two:checked~.tabs #two-tab,
#three:checked~.tabs #three-tab,
#four:checked~.tabs #four-tab,
#five:checked~.tabs #five-tab {
    background: #fff;
    color: #000;
    border-top: 3px solid #32557f;
}

.vit th,
td {
    width: 150px;
    height: 50px;
    font-size: 16px;
}

.vit tr,
td {
    width: 90px;
    font-size: 20px;
}

.tileTS {
    font-size: 12px;
}

.dtileTS {
    font-size: 12px;
}

.tileConT {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    margin: 0 auto;
}

.tileConT.vtable {
    display: flex;
    flex-wrap: nowrap;
    padding: 10px;
    margin: 0 auto;
    overflow-x: auto;
}

/* Media query for tablets and smaller screens */
@media (max-width: 768px) {
    .tileConT {
        grid-template-columns: repeat(3, 1fr);
        /* Two columns for tablets */
        gap: 5px;
        /* Reduce spacing */
        padding: 10px;
        /* Reduce padding */
    }
}

/* Media query for mobile phones */
@media (max-width: 480px) {
    .tileConT {
        grid-template-columns: 1fr;
        /* Single column for phones */
        padding: 5px;
        /* Further reduce padding */
    }
}

#qtid {
    border-radius: 50%;
    height: 45px !important;
    width: 45px !important;
    margin-right: 10px;
    background-color: #efefef;
    text-align: center;
}

#ctid {
    border-radius: 50%;
    height: 45px !important;
    width: 45px !important;
    margin-right: 10px;
    background-color: #efefef;
    text-align: center;
}

.tileCon3T {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Three columns */
    gap: 2px;
    /* Adjust spacing between tiles */
    padding: 5px;
    /* Add padding if needed */
    max-width: 800px;
    /* Set a max width for the container */
    margin: 0 auto;
    /* Center the container horizontally */
}

/* Media query for tablets and smaller screens */
@media (max-width: 768px) {
    .tileCon3T {
        grid-template-columns: repeat(2, 1fr);
        /* Two columns for tablets */
        gap: 5px;
        /* Reduce spacing */
        padding: 10px;
        /* Reduce padding */
    }
}

/* Media query for mobile phones 
@media (max-width: 480px) {
    .tileCon3T{*/
#grid-template-columns: 1fr;
/* Single column for phones */
#padding: 5px;
/* Further reduce padding */
/*}
}*/

.tileCon3TSS {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Three columns */
    gap: 2px;
    /* Adjust spacing between tiles */
    padding: 5px;
    /* Add padding if needed */
    max-width: 800px;
    /* Set a max width for the container */
    margin: 0 auto;
    /* Center the container horizontally */
}

/* Media query for tablets and smaller screens */
@media (max-width: 768px) {
    .tileCon3TSS {
        grid-template-columns: repeat(2, 1fr);
        /* Two columns for tablets */
        gap: 5px;
        /* Reduce spacing */
        padding: 10px;
        /* Reduce padding */
    }
}

/* Media query for mobile phones 
@media (max-width: 480px) {
    .tileCon3TSS{*/
#grid-template-columns: 1fr;
/* Single column for phones */
#padding: 5px;
/* Further reduce padding */
/*}
}*/


.styleTd {
    width: 50px;
    height: 75px;
    overflow: auto;
}

.atme {
    position: relative;
    /* Allow absolute positioning for close button */
    padding: 10px;
    background-color: #87CEFA;
    /* Light blue color */
    color: white;
    opacity: 1;
    transition: opacity 0.6s;
    margin-bottom: 15px;
    border-radius: 5px;
}

#csid,
#csdid {
    width: 360px;
}

.chat-container h2 {
    color: white;
    padding: 10px;
    background-color: #6200ea;
    margin: 0;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.chat-container {
    max-width: 600px;
    margin: 20px auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    height: 600px;
    overflow-y: auto;
}

/*justify-content: space-between;
        padding: 10px;*/
.chat-header {
    display: flex;
    align-items: left;
    background-color: #6200ea;
    color: #fff;
    font-size: 18px;
}

.chat-header h2 {
    margin-top: 7px;
    margin-left: -30px;
    font-size: 25px;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: #f2f2f2;
    padding: 5px;
    border-radius: 3px
}

.search-bar input {
    flex-grow: 1;
    padding: 5px;
    border: none;
    background-color: transparent
}

.search-bar input:focus {
    outline: none
}

.contact-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    height: calc(100% - 100px);
    background-color: #e5ddd5;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.contact-list li {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    background-color: #33A8FF;
    color: white;
    font-size: 22px;
}

.contact-list li:hover {
    background-color: #33A8FF;
    cursor: pointer;
}

.add-contact {
    font-size: 24px;
    color: #075e54;
    cursor: pointer;
}

.back-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-right: 10px;
    padding: 35px;
}

.back-icon i {
    font-size: 24px;
    color: white;
}

/* .contact-icon {
    width: 24px;
    height: 24px;
    background-color: #075e54;
    border-radius: 50%;
    margin-right: 10px;
} */

.chat-messages {
    height: 430px;
    overflow-y: auto;
    padding: 10px
}

.message {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.message.sent {
    align-items: flex-end
}

.message .sender {
    font-weight: bold;
    margin-bottom: 2px
}

.message .content {
    background-color: #DCF8C6;
    padding: 5px;
    border-radius: 10px
}

.message.sent .content {
    background-color: #E1FFC7
}

.message .timestamp {
    font-size: .8em;
    color: #888
}

.chat-input {
    display: flex;
    align-items: center;
    padding: 10px
}

.chat-input input {
    flex-grow: 1;
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #ccc
}

.chat-input button {
    padding: 5px 10px;
    margin-left: 10px;
    background-color: #075e54;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer
}


.float {
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #6200ea;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
}

.my-float {
    margin-top: 22px;
}

.float1 {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 80px;
    left: 320px;
    background-color: #0C9;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
}

/*
.my-float1{
        margin-top:11px;
}*/


#idpid {
    width: 100px;
    height: 100px;
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 25px;
    background: #D3D3D3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #FF0000;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #FF0000;
    cursor: pointer;
}

.sliderticks {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.sliderticks p {
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 1px;
    background: #D3D3D3;
    height: 10px;
    line-height: 40px;
    margin: 0 0 20px 0;
}

.pfContainer {
    max-width: 75%;
    margin: 40px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.pfContainer form#pfcId {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.pfContainer form#pfcId input {
    width: 32%;
}

.pfContainer form#pfcId select {
    width: 32%;
}

@media only screen and (max-width: 768px) {
    .pfContainer form#pfcId input {
        width: 48%;
    }

    .pfContainer form#pfcId select {
        width: 48%;
    }
}

@media only screen and (max-width: 420px) {
    .pfContainer form#pfcId input {
        width: 100%;
    }

    .pfContainer form#pfcId select {
        width: 100%;
    }
}

.pfContainer h2 {
    text-align: center;
    margin-bottom: 20px;
}

.pfContainer input[type="text"],
.pfContainer input[type="email"],
.pfContainer input[type="password"],
.pfContainer input[type="tel"],
.pfContainer input[type="date"],
.pfContainer input[type="Address"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.pfContainer select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.pfContainer input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.pfContainer .toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.pfContainer .toggle-switch input[type="checkbox"] {
    display: none;
}

.pfContainer .toggle-switch label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ccc;
    border-radius: 34px;
    cursor: pointer;
}

.pfContainer .toggle-switch label:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    top: 4px;
    left: 4px;
    background-color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.pfContainer .toggle-switch input[type="checkbox"]:checked+label {
    background-color: #4CAF50;
}

.pfContainer .toggle-switch input[type="checkbox"]:checked+label:before {
    transform: translateX(26px);
}

.pfContainer .toggle-switch label:active {
    background-color: #6c6c6c;
}


.ivit {
    display: inline-flex;
    justify-content: space-between;
}

.ivit .vit {
    width: 48%;
}

@media only screen and (max-width: 768px) {
    .ivit {
        display: block;
    }

    .ivit .vit {
        width: 100%;
    }
}

.ahr {
    margin-top: 5px;
    margin-bottom: 5px;
}

.bhr {
    margin-top: 5px;
}

.ewit {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.custom-confirm {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
}

.sub-info {
    color: green;
}

#myDropDown li,
#myDropDown i,
#myDropDown a {
    color: white;
    font-size: 16px;
}

#myDropDown a:hover {
    background-color: black;
}

.pit {
    flex-basis: 50%;
    padding: 2%;
    font-size: 20px;
}

.wit {
    #flex-basis: 50%;
    #padding: 2%;
    font-size: 20px;
    margin-left: 20px;
}

.iwit {
    #flex-basis: 50%;
    #padding: 2%;
    font-size: 20px;
    margin-left: 20px;
}

@media (max-width: 768px) {
    .pit {
        flex-basis: 50%;
    }
}


@media (max-width: 480px) {
    .pit {
        flex-basis: 100%;
    }
}


.tileCon6d {
    width: 60%;
    height: 5%;
    #float: left;
    margin-left: 10%;
    border: 1px solid black;
    overflow: auto;
}

.sdconcl,
.sbconcol {
    #width: 450px;
    #height: 350px;
    margin: 5px;
    float: left;
}

.tileCon {
    width: 420px;
    height: 215px;
    float: left;
    margin-left: 30%;
}

.tileConSS {
    width: 420px;
    height: 215px;
    float: left;
    margin-left: 30%;
}


.tileConTile {
    #background-color: #33A8FF;
    width: 175px;
    height: 125px;
    margin: 5px;
    position: relative;
    text-align: center;
    cursor: pointer;
    border-radius: 20px;
    padding: 25px 20px 25px 20px;
    display: flex;
    align-items: center;
    #justify-content: flex-start;
    justify-content: center;
    flex-direction: column;
    #border: 1px solid #33A8FF;
    /* border:1px #33A8FF ; */
    border: 1px #33A8FF;
    border-style: solid;
    color: #33A8FF;
}

.tileConTile span {
    font-size: 16px;
    color: #33A8FF;
    #font-family: Georgia;
    color: #33A8FF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.tileConTile span i {
    color: #33A8FF;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #56af3e;
    background-color: black;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 36px;
    top: 8px;
    position: absolute;
    right: 6px;
}

.tileConTile i {
    font-size: 36px;
}

.tileConTileSS {
    #background-color: #33A8FF;
    width: 175px;
    height: 175px;
    margin: 5px;
    position: relative;
    #text-align: center;
    cursor: pointer;
    border-radius: 20px;
    padding: 25px 20px 25px 20px;
    display: flex;
    #align-items: center;
    #justify-content: flex-start;
    #justify-content: center;
    flex-direction: column;
    border: #33A8FF;
    border-style: solid;
    color: #33A8FF;
}

.tileConTileSS span {
    font-size: 16px;
    color: #33A8FF;
}

.tileConTileSS span i {
    color: #33A8FF;
    display: flex;
    #align-items: center;
    #justify-content: center;
    background-color: #56af3e;
    background-color: black;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 16px;
    top: 8px;
    position: absolute;
    right: 6px;
}

.tileConTileSS input {
    align-items: left;
    justify-content: left;
    position: relative;
}

.tiletext {
    font-size: 20px;
    font-weight: bold;
    color: #4f81c5;
}

.out-txtarea {
    width: 70%;
    height: 350px;
}

.clearfix {
    *zoom: 1;
}

/* For IE 6/7 */
.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

#miniId {
    color: #fff;
    position: relative;
    bottom: 11px;
    left: -9px;
    display: block;
    float: right;
    font-size: 15px;
    height: 17px;
    line-height: 2px;
    margin-top: 19px;
    margin-right: 30px;
    text-align: center;
    width: 17px;
}

#maxId {
    background: #33A8FF;
    #background: #1b2126;
    border-radius: 50%;
    color: #fff;
    display: block;
    float: right;
    font-size: 10px;
    height: 16px;
    line-height: -31px;
    //margin: 18px 5 0 0;
    margin-top: 1px;
    text-align: center;
    width: 16px;
}

/* Chat window style End*/

#BusyId {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: none;
    opacity: 0.7;
    background-color: #fff;
    z-index: 99;
    text-align: center;
}

.color-#33A8FF {
    display: inline-block;
    color: #33A8FF;
    font-style: italic;
}

.indent-txt {
    text-indent: 20px;
}

.table-percentage {
    width: 80%;
}

.tbody {
    height: 350px;
}

.thead {
    height: 35px;
}

.margin-top-100 {
    margin-top: 100px;
}


#msgTextBoxId {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 400px;
}

.newLine {
    bottom: 0;
    height: 3px;
    width: 40%;
    position: relative;
    background: #33A8FF;
    margin-bottom: 20px;
}

.mrglftn {
    margin-left: 51px;
}

.term {
    color: #33A8FF;
    display: inline-block;
}

/* Net Style */
/* Net style End */


/*responsive logo*/
@media (max-width: 327px) and (min-width: 254px) {
    .topHead {
        border-bottom: 54px solid #33A8FF;
        border-left: 54px solid transparent;
        border-right: 54px solid transparent;
        //width: 200px;
        width: 180px;

    }

    .logo-text {
        font-size: 18px;
    }
}

@media (max-width: 253px) {
    .topHead {
        border-bottom: 54px solid #33A8FF;
        border-left: 54px solid transparent;
        border-right: 54px solid transparent;
        width: 170px;
    }

    .logo-text {
        left: -230%;
        font-size: 17px;
    }
}

#dialogoverlay {
    display: none;
    opacity: .8;
    position: fixed;
    top: 0px;
    left: 0px;
    background: #fff;
    width: 100%;
    z-index: 10;
}

#dialogbox {
    display: none;
    position: fixed;
    background: #000;
    border-radius: 7px;
    width: 50%;
    margin-left: 25%;
    z-index: 10;
}

@media screen and (max-width:750px) {
    #dialogbox {
        margin-left: 0%;
        width: 70%;
    }
}

#dialogbox>div {
    background: #333;
    margin: 8px;
}

#dialogbox>div>#dialogboxbody {
    background: #333;
    padding: 20px;
    color: #FFF;
}

#dialogboxbody>button {
    background-color: #33A8FF;
}

@media(max-width:330px) {
    #dial ogboxbody {
        margin-left: 22%;
    }
}

@media(min-width:331px) and (max-width:380px) {
    #dial ogboxbody {
        margin-left: 46%;
    }
}

@media(min-width:381px) and (max-width:450px) {
    #dial ogboxbody {
        margin-left: 50%;
    }
}

.table {
    width: 50%;
    max-width: 100%;
    border: 1;

}

.table-responsive>.table {
    min-width: 100%;

}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    background-color: white;

    border-top: 1px solid #ddd
}

.table>thead>tr>th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd
}

.table>caption+thead>tr:first-child>td,
.table>caption+thead>tr:first-child>th,
.table>colgroup+thead>tr:first-child>td,
.table>colgroup+thead>tr:first-child>th,
.table>thead:first-child>tr:first-child>td,
.table>thead:first-child>tr:first-child>th {
    border-top: 0 background-color: #33A8FF;
}

.table>tbody+tbody {
    border-top: 2px solid #ddd
}

.table .table {
    background-color: #fff
}

.table-condensed>tbody>tr>td,
.table-condensed>tbody>tr>th,
.table-condensed>tfoot>tr>td,
.table-condensed>tfoot>tr>th,
.table-condensed>thead>tr>td,
.table-condensed>thead>tr>th {
    padding: 5px
}

.table-bordered {
    border: 1px solid #ddd
}

.table-bordered>tbody>tr>td,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>td,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
    border: 1px solid #ddd
}

.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
    border-bottom-width: 2px
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #f9f9f9
}

.table-hover>tbody>tr:hover {
    background-color: #f5f5f5
}

.table>tbody>tr.active>td,
.table>tbody>tr.active>th,
.table>tbody>tr>td.active,
.table>tbody>tr>th.active,
.table>tfoot>tr.active>td,
.table>tfoot>tr.active>th,
.table>tfoot>tr>td.active,
.table>tfoot>tr>th.active,
.table>thead>tr.active>td,
.table>thead>tr.active>th,
.table>thead>tr>td.active,
.table>thead>tr>th.active {
    background-color: #f5f5f5
}

.table-hover>tbody>tr.active:hover>td,
.table-hover>tbody>tr.active:hover>th,
.table-hover>tbody>tr:hover>.active,
.table-hover>tbody>tr>td.active:hover,
.table-hover>tbody>tr>th.active:hover {
    background-color: #e8e8e8
}

.table>tbody>tr.success>td,
.table>tbody>tr.success>th,
.table>tbody>tr>td.success,
.table>tbody>tr>th.success,
.table>tfoot>tr.success>td,
.table>tfoot>tr.success>th,
.table>tfoot>tr>td.success,
.table>tfoot>tr>th.success,
.table>thead>tr.success>td,
.table>thead>tr.success>th,
.table>thead>tr>td.success,
.table>thead>tr>th.success {
    background-color: #dff0d8
}

.table-hover>tbody>tr.success:hover>td,
.table-hover>tbody>tr.success:hover>th,
.table-hover>tbody>tr:hover>.success,
.table-hover>tbody>tr>td.success:hover,
.table-hover>tbody>tr>th.success:hover {
    background-color: #d0e9c6
}

.table>tbody>tr.info>td,
.table>tbody>tr.info>th,
.table>tbody>tr>td.info,
.table>tbody>tr>th.info,
.table>tfoot>tr.info>td,
.table>tfoot>tr.info>th,
.table>tfoot>tr>td.info,
.table>tfoot>tr>th.info,
.table>thead>tr.info>td,
.table>thead>tr.info>th,
.table>thead>tr>td.info,
.table>thead>tr>th.info {
    background-color: rgba(248, 155, 32, 0.56);
}

.table-hover>tbody>tr.info:hover>td,
.table-hover>tbody>tr.info:hover>th,
.table-hover>tbody>tr:hover>.info,
.table-hover>tbody>tr>td.info:hover,
.table-hover>tbody>tr>th.info:hover {
    background-color: #c4e3f3
}

.table>tbody>tr.warning>td,
.table>tbody>tr.warning>th,
.table>tbody>tr>td.warning,
.table>tbody>tr>th.warning,
.table>tfoot>tr.warning>td,
.table>tfoot>tr.warning>th,
.table>tfoot>tr>td.warning,
.table>tfoot>tr>th.warning,
.table>thead>tr.warning>td,
.table>thead>tr.warning>th,
.table>thead>tr>td.warning,
.table>thead>tr>th.warning {
    background-color: #fcf8e3
}

.table-hover>tbody>tr.warning:hover>td,
.table-hover>tbody>tr.warning:hover>th,
.table-hover>tbody>tr:hover>.warning,
.table-hover>tbody>tr>td.warning:hover,
.table-hover>tbody>tr>th.warning:hover {
    background-color: #faf2cc
}

.table>tbody>tr.danger>td,
.table>tbody>tr.danger>th,
.table>tbody>tr>td.danger,
.table>tbody>tr>th.danger,
.table>tfoot>tr.danger>td,
.table>tfoot>tr.danger>th,
.table>tfoot>tr>td.danger,
.table>tfoot>tr>th.danger,
.table>thead>tr.danger>td,
.table>thead>tr.danger>th,
.table>thead>tr>td.danger,
.table>thead>tr>th.danger {
    background-color: #f2dede
}

.table-hover>tbody>tr.danger:hover>td,
.table-hover>tbody>tr.danger:hover>th,
.table-hover>tbody>tr:hover>.danger,
.table-hover>tbody>tr>td.danger:hover,
.table-hover>tbody>tr>th.danger:hover {
    background-color: #ebcccc
}

.table-responsive {
    min-height: .01%;
    overflow-x: auto
}

@media screen and (max-width: 767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd
    }

    .table-responsive>.table {
        margin-bottom: 0
    }

    .table-responsive>.table>tbody>tr>td,
    .table-responsive>.table>tbody>tr>th,
    .table-responsive>.table>tfoot>tr>td,
    .table-responsive>.table>tfoot>tr>th,
    .table-responsive>.table>thead>tr>td,
    .table-responsive>.table>thead>tr>th {
        white-space: nowrap
    }

    .table-responsive>.table-bordered {
        border: 0
    }

    .table-responsive>.table-bordered>tbody>tr>td:first-child,
    .table-responsive>.table-bordered>tbody>tr>th:first-child,
    .table-responsive>.table-bordered>tfoot>tr>td:first-child,
    .table-responsive>.table-bordered>tfoot>tr>th:first-child,
    .table-responsive>.table-bordered>thead>tr>td:first-child,
    .table-responsive>.table-bordered>thead>tr>th:first-child {
        border-left: 0
    }

    .table-responsive>.table-bordered>tbody>tr>td:last-child,
    .table-responsive>.table-bordered>tbody>tr>th:last-child,
    .table-responsive>.table-bordered>tfoot>tr>td:last-child,
    .table-responsive>.table-bordered>tfoot>tr>th:last-child,
    .table-responsive>.table-bordered>thead>tr>td:last-child,
    .table-responsive>.table-bordered>thead>tr>th:last-child {
        border-right: 0
    }

    .table-responsive>.table-bordered>tbody>tr:last-child>td,
    .table-responsive>.table-bordered>tbody>tr:last-child>th,
    .table-responsive>.table-bordered>tfoot>tr:last-child>td,
    .table-responsive>.table-bordered>tfoot>tr:last-child>th {
        border-bottom: 0
    }
}

.checkbox,
.radio {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px
}

.checkbox label,
.radio label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer
}

.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox],
.radio input[type=radio],
.radio-inline input[type=radio] {
    position: absolute;
    margin-top: 4px \9;
    margin-left: -20px
}

.checkbox+.checkbox,
.radio+.radio {
    margin-top: -5px
}

.checkbox-inline,
.radio-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    vertical-align: middle;
    cursor: pointer
}

.checkbox-inline+.checkbox-inline,
.radio-inline+.radio-inline {
    margin-top: 0;
    margin-left: 10px
}

.checkbox-inline.disabled,
.radio-inline.disabled,
fieldset[disabled] .checkbox-inline,
fieldset[disabled] .radio-inline {
    cursor: not-allowed
}

.checkbox.disabled label,
.radio.disabled label,
fieldset[disabled] .checkbox label,
fieldset[disabled] .radio label {
    cursor: not-allowed
}

.form-control-static {
    min-height: 34px;
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0
}

.form-control-static.input-lg,
.form-control-static.input-sm {
    padding-right: 0;
    padding-left: 0
}

.input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: .35s;
    -o-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-property: height, visibility;
    -o-transition-property: height, visibility;
    transition-property: height, visibility
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid \9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.dropdown,
.dropup {
    position: relative
}

.dropdown-toggle:focus {
    outline: 0
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #33A8FF;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    #-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    #box-shadow: 0 6px 12px rgba(0, 0, 0, .175)
}

.dropdown-menu.pull-right {
    right: 0;
    left: auto
}

.dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #33A8FF
}

.dropdown-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap
}

.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
    color: #262626;
    text-decoration: none;
    background-color: #33A8FF
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:focus,
.dropdown-menu>.active>a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #33A8FF;
    outline: 0
}

.dropdown-menu>.disabled>a,
.dropdown-menu>.disabled>a:focus,
.dropdown-menu>.disabled>a:hover {
    color: #777
}

.dropdown-menu>.disabled>a:focus,
.dropdown-menu>.disabled>a:hover {
    text-decoration: none;
    cursor: not-allowed;
    background-color: #33A8FF;
    #background-color: transparent;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
}

.open>.dropdown-menu {
    display: block
}

.open>a {
    outline: 0
}

.dropdown-menu-right {
    right: 0;
    left: auto
}

.dropdown-menu-left {
    right: auto;
    left: 0
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.42857143;
    color: #777;
    white-space: nowrap
}

.dropdown-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 990
}

.pull-right>.dropdown-menu {
    right: 0;
    left: auto
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px
}

@media (min-width: 768px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto
    }

    .navbar-right .dropdown-menu-left {
        right: auto;
        left: 0
    }
}

.nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.nav>li {
    position: relative;
    display: block
}

.nav>li>a {
    position: relative;
    display: block;
    padding: 10px 15px
}

.nav>li>a:focus,
.nav>li>a:hover {
    text-decoration: none;
    # background-color: #eee background-color: #33A8FF
}

.nav>li.disabled>a {
    color: #777
}

.nav>li.disabled>a:focus,
.nav>li.disabled>a:hover {
    color: #777;
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent
}

.nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover {
    background-color: #33A8FF;
    #background-color: #eee;
    border-color: #337ab7
}

.nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    #background-color: #e5e5e5 background-color: #33A8FF
}

.nav>li>a>img {
    max-width: none
}

.nav-tabs {
    border-bottom: 1px solid #ddd
}

.nav-tabs>li {
    float: left;
    margin-bottom: -1px
}

.nav-tabs>li>a {
    margin-right: 2px;
    line-height: 1.42857143;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0
}

.nav-tabs>li>a:hover {
    border-color: #eee #eee #ddd
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    color: #555;
    cursor: default;
    background-color: #33A8FF;
    #background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent
}




.tab-content>.tab-pane {
    display: none
}

.tab-content>.active {
    display: block
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

/*Lists
------------------------------------*/

/*Lists v1*/
.lists-v1 li {
    margin-bottom: 10px;
}

.lists-v1 i {
    color: #fff;
    width: 15px;
    height: 15px;
    padding: 1px;
    font-size: 13px;
    margin-right: 7px;
    text-align: center;
    background: #33A8FF;
    display: inline-block;
    border-radius: 50% !important;
}

/*Lists v2*/
.lists-v2 li {
    margin-bottom: 10px;
}

.lists-v2 i {
    color: #33A8FF;
    font-size: 13px;
    margin-right: 7px;
    display: inline-block;
}

/*Alerts
------------------------------------*/

/*Thumbnails
------------------------------------*/

/*Images*/

/*Responsive Video*/

.responsive-video iframe {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

/*Icons
------------------------------------*/


/*Font Awesome Icon Styles*/

.link-icon:hover i {
    color: #33A8FF;
    background: none;
    border: solid 1px #33A8FF;
}

.link-bg-icon:hover i {
    color: #33A8FF;
    background: #33A8FF;
    border-color: #1ccdca;
    color: #fff !important;
}

/*Icons Color*/

/*Column Sizes
------------------------------------*/
/*Remove the Gutter Padding from Columns*/
.no-gutter>[class*='col-'] {
    padding-right: 0;
    padding-left: 0;
}

/*Heights
------------------------------------*/

/*Spaces
------------------------------------*/

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.margin-bottom-50 {
    margin-bottom: 50px;
}

/*Other Spaces*/

.service:hover i {
    color: #656565;
}

.service .desc h4 {
    font-size: 22px;
    line-height: 25px;
}

/*Line Icon Page
------------------------------------*/

.icon-page-fa .item i {
    /*color: #555;*/
    color: #33A8FF;
    display: block;
    font-size: 24px;
    margin-bottom: 10px;
}

/*Title-Box-V2*/

.title-box-v2 h2 {
    font-size: 25px;
    text-transform: uppercase;
}

.title-box-v2 p {
    font-size: 13px;
}

/*remove padding from "Col-"*/

/*List Style v1*/
.list-style-v1 li {
    margin-bottom: 7px;
}

.list-style-v1 i {
    margin-right: 5px;
}


/*styles*/

/* Top Log-Reg */
.log-reg-block>li {
    float: left;
    position: relative;
}

.log-reg-block a {
    color: #eee;
    font-size: 12.5px;
    text-transform: uppercase;
    padding: 17px 15px 13px 15px;
    display: block;
    line-height: 20px;
}

.log-reg-block a:hover {
    color: #33A8FF;
    z-index: 1;
}

.log-reg-block a:before {
    color: #eee;
    content: "\f10c";
    font-family: FontAwesome;
    font-size: 4px;
    left: -3px;
    margin-right: 6px;
    position: absolute;
    z-index: 2;
}

.top-nav-collapse .log-reg-block a,
.top-nav-collapse .log-reg-block a:before {
    color: #777;
}

@media (max-width: 992px) {}

/* Dropdown Menu */

.one-page-header .dropdown-menu .active>a,
.one-page-header .dropdown-menu li>a:hover {
    background: none;
    filter: none !important;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    color: #33A8FF;
}

.one-page-header .dropdown-menu li>a:focus {
    background: none;
    filter: none !important;
}

@media (min-width: 992px) {

    .one-page-header .dropdown-menu>li {
        background: rgba(8, 7, 7, 0.75);
    }

    .one-page-header.top-nav-collapse .dropdown-menu>li {
        background: #fff;
    }

    .one-page-header .dropdown-menu>li:first-child {
        padding-top: 15px;
    }

    .one-page-header .dropdown-menu>li:last-child {
        padding-bottom: 15px;
    }

    .one-page-header .dropdown-menu>li>a {
        color: #fff;
        font-size: 13px;
        font-weight: 400;
        padding: 6px 25px;
    }

    .one-page-header.top-nav-collapse .dropdown-menu>li>a {
        color: #777;
    }

    .one-page-header.top-nav-collapse .dropdown-menu>li>a:hover {
        color: #f9f8f7;
    }
}

@media (max-width: 991px) {
    .one-page-header .dropdown-menu a {
        color: #fff !important;
        padding: 10px 20px;
        background: none !important;
    }

    .one-page-header.top-nav-collapse .dropdown-menu>li>a {
        color: #777 !important;
    }

    .one-page-header .dropdown-menu a:hover,
    .one-page-header.top-nav-collapse .dropdown-menu>li>a:hover {
        color: #33A8FF !important;
    }
}

/* Top Contacts Block */
.top-contact-block i {
    display: inline-block;
    width: 30px;
    height: 30px;
    color: #fff;
    border: solid 1px #fff;
    border-radius: 50% !important;
    text-align: center;
    padding-top: 7px;
    margin-right: 5px;
}

.top-nav-collapse .top-contact-block i {
    color: #777;
    border-color: #777;
}

.top-contact-block a {
    color: #fff;
    position: relative;
    top: 1px;
}

.top-contact-block a:hover {
    text-decoration: none;
}

.top-nav-collapse .top-contact-block a {
    color: #777;
}

@media (max-width: 991px) {}

@media (max-width: 480px) {}

/* Login Block Simple */
.log-reg-block-simple .btn-u {
    font-size: 12.5px;
    color: #fff;
    border: solid 1px #fff;
    background: none;
    padding: 5px 13px;
}

.top-nav-collapse .log-reg-block-simple .btn-u {
    color: #777;
    border-color: #777;
}

.log-reg-block-simple .btn-u:hover,
.top-nav-collapse .log-reg-block-simple .btn-u:hover {
    color: #fff;
    background: #33A8FF;
    border-color: #1ccdca;
}

@media (max-width: 991px) {}

/* Lang Block */

.lang-block ul {
    list-style: none;
    padding: 0 13px 5px;
    margin: 0;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
}

/*.lang-block:hover {
  cursor: pointer;
}*/
.lang-block a {
    color: #fff;
}

@media (max-width: 991px) {}

/*Fixed Header*/

@media (max-width: 768px) {}

.one-page-header.top-nav-collapse .navbar-brand,
.one-page-header.top-nav-collapse .navbar-nav>li>a,
.one-page-header.top-nav-collapse .navbar-nav>li>a:before {
    color: #777;
}

.one-page-header.top-nav-collapse .navbar-brand {
    color: #777 !important;
}

/*Navbar Toggle*/
.one-page-header.top-nav-collapse .navbar-toggle .icon-bar {
    /*background: #555;*/
    background: #33A8FF;
}

.one-page-header.top-nav-collapse .navbar-toggle:hover .icon-bar {
    background: #33A8FF;
}

.contacts-section2 {
    padding-top: 50px;
    padding-bottom: 10px;
    font-size: 15px;
}

.contacts-section2 h2 {
    color: #444;
    font: 28px "Open Sans", sans-serif;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
    text-transform: uppercase;
}

.contacts-section2 i {
    float: left;
    margin-right: 15px;
}

.contacts-section2 h6 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px;
}

/*
.footer-simple {
    padding: 20px 0;
    border-top: 1px solid #eee;
}
.footer-simple p {
    margin-top: 15px;
    margin-bottom: 0;
}
.footer-simple .social-icons {
    margin-top: 10px;
}
.footer-simple .social-icons li {
    margin-bottom: 0;
}
*/
/*Spaces
------------------------------------*/

/*--------------------------------------------------------------------------
logo
---------------------------------------------------------------------------*/
.logo-text {
    float: left;
    position: absolute;
    top: 10px;
    z-index: 1;
    font-weight: 900;
    color: #fff;
    font-size: 38px;
}

.logo-text small {
    font-size: 12px;
    font-style: italic;
}


.topHead {
    border-bottom: 54px solid #33A8FF;
    border-left: 54px solid transparent;
    border-right: 54px solid transparent;
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    min-width: 230px;
    z-index: 1;
}



.titleContent {
    border-bottom: 1px solid #bdc3c7;
    display: block;
    margin-bottom: 10px;
    position: relative;
}


.titleContent h1 span {
    border-bottom: 3px solid #33A8FF !important;
}

/*fonts*/

.white_section {
    color: rgba(255, 255, 255, 0.7);
    background: #42484d;
}

.theme_option {
    display: none;
}

.table_container {
    background: #fff;
    border: 1px solid #E7E7E7;
    border-width: 1px;
    padding: 15px;
}

.page_title {
    border-bottom: 4px solid #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.17);
    -moz-box-shadow: 0 0px 4px rgba(0, 0, 0, 0.17);
    -webkit-box-shadow: 0 0px 4px rgba(0, 0, 0, 0.17);
    -ms-box-shadow: 0 0px 4px rgba(0, 0, 0, 0.17);
    -o-box-shadow: 0 0px 4px rgba(0, 0, 0, 0.17);
    position: relative;
    z-index: 1;
}

.page_title:not(.has_bg_image) {
    background: #06506d;
}

.page_title.has_bg_image {
    padding: 50px 0;
}

.page_title.has_bg_image.member_header {
    padding: 150px 0 145px;
}

.page_title.has_bg_image::after {
    background: rgba(255, 255, 255, 0.1);
    content: "";
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.page_title.has_bg_image h1 {
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    font-family: "Oswald", "Open Sans", sans-serif;
    font-size: 35px;
    font-weight: 500;
}

.page_title h1 {
    color: #888;
    float: left;
    clear: both;
    font-size: 30px;
    font-weight: 300;
    margin: 0;
    padding: 36px 0;
    text-transform: capitalize;
    font-family: "lato", sans-serif;
}

.page_title .breadcrumbs {
    float: left;
    line-height: 40px;
    margin: 38px 0 0 -161px;
    font-size: 12px;
    color: #888;
}

.page_title .breadcrumbs a {
    color: #888;
}

.page_title .breadcrumbs a:hover {
    color: #444444;
}

.page_title .breadcrumbs .crumbs-spacer {
    color: #ccc;
    margin: 0 4px;
    vertical-align: middle;
}

.white_section.page_title h1,
.white_section.page_title .breadcrumbs,
.white_section.page_title .breadcrumbs a,
.white_section.page_title .breadcrumbs a:hover {
    color: #fff;
}

/*-------------------------------------------------------------
                    Login Page	
-------------------------------------------------------------*/
.lfc_user_row {
    position: relative;
}

.lfc_user_row:not(:last-of-type) {
    margin-bottom: 20px;
}

.lfc_user_row input[type="text"],
.lfc_user_row input[type="password"] {
    color: #000;
    font-weight: 500;
    padding-left: 40px;
    width: 100%;
}

.lfc_user_row input.input_no_icon {
    padding-left: 13px;
}

/*
.login_form_colored {
	background: #fff;
	border: 1px solid #e1e1e1;
	padding: 20px;
	position: relative;
}
*/
.login_form_colored {
    background: rgba(242, 238, 235, 0.5);
    border: 1px solid #c0bebe;
    padding: 20px;
    position: relative;
}

.login_form_colored input[type="checkbox"] {
    display: inline-block;
    margin: 3px 5px 4px 0;
}

.login_form_colored .remember-box {
    display: inline-block;
    font-size: 13px;
    line-height: 20px;
    padding: 10px 0;
}

.login_form_colored label {
    display: block;
    text-align: left;
}

.lfc_forget_pass {
    background: #F9F9F9;
    border-top: 1px solid #e1e1e1;
    color: #888;
    display: block;
    font-size: 13px;
    margin: 20px -20px -20px;
    padding: 15px 20px;
    text-align: left;
}

.lfc_forget_pass:hover {
    color: #555555;
}

.lfc_header {
    background: #F9F9F9;
    border-bottom: 1px solid #e1e1e1;
    color: #555555;
    display: block;
    margin: -20px -20px 0;
    padding: 15px 20px;
    text-transform: uppercase;
}

.login_flip {
    position: absolute;
    width: 100%;
}

.flip_top {
    z-index: 3;
}

#site_header+div,
#site_header+section {
    clear: both;
}

.one_page_site #main_nav:not(.has_mobile_menu) {
    float: right;
}

.sticky_menu #navigation_bar {
    width: 100%;
    left: 0;
    right: 0;
}

.light_header #navigation_bar {
    background: #fff;
    border-bottom: 1px solid #E4E4E4;
}

#top_cart+.top_search+#main_nav .nav_trigger {
    right: 122px;
}

.one_page_site .nav_trigger {
    right: 0;
}

.label_space {
    display: block;
    margin-bottom: 10px;
}

/*----------------------------------------------------------------
	Icon Boxes
-----------------------------------------------------------------*/
.service_box .fa {
    font-size: 90px;
    color: #33A8FF;
}

.service_box {
    position: relative;
    z-index: 1;
}

.icon_boxes_con.style1 .service_box {
    margin-bottom: 60px;
}

.icon_boxes_con.style1 .service_box .service_box_con {
    border: 1px solid #e7e7e7;
    padding: 55px 15px 45px;
    background: #f7f494;
}

.icon_boxes_con.style1 .service_box>.icon i {
    background: #33A8FF;
    color: #fff;
    display: block;
    font-size: 32px;
    height: 60px;
    left: 9px;
    line-height: 60px;
    position: absolute;
    text-align: center;
    top: 9px;
    width: 60px;
    z-index: 1;
}

.icon_boxes_con.style1 .service_box>.icon i.color1 {
    background: #92c135;
}

.icon_boxes_con.style1 .service_box>.icon i.color2 {
    background: #0072A5;
}

.icon_boxes_con.style1 .service_box>.icon i.color3 {
    background: #E85F1B;
}

.icon_boxes_con.style1 .service_box>.icon i.color4 {
    background: #163535;
}

.icon_boxes_con.style1 .service_box>.icon i.color5 {
    background: #1c93cd;
}

.icon_boxes_con.style1 .service_box>.icon i.color6 {
    background: #23135f;
}

.icon_boxes_con.style1 .service_box>.icon i.color7 {
    background: #5f1340;
}

.icon_boxes_con.style1 .service_box>.icon:after {
    background: #fff;
    border: 1px solid #fff;
    content: "";
    display: block;
    height: 80px;
    left: 0px;
    position: absolute;
    top: 0px;
    width: 78px;
}

.icon_boxes_con.style1 .service_box .service_box_con:before {
    border: 1px solid #e7e7e7;
    content: "";
    display: block;
    height: 80px;
    position: absolute;
    top: -37px;
    width: 80px;
    z-index: -1;
}

.icon_boxes_con.style1 .service_box .ser-box-link {
    background: #fff;
    border: 1px solid #e7e7e7;
    bottom: -17px;
    color: transparent;
    display: block;
    font-size: 0;
    height: 35px;
    position: absolute;
    width: 35px;
}

.icon_boxes_con.style1 .service_box .ser-box-link>span {
    background: #c4c2c2;
    display: block;
    height: 11px;
    left: 16px;
    position: absolute;
    top: 11px;
    width: 1px;
}

.icon_boxes_con.style1 .service_box .ser-box-link>span:after {
    background: #c4c2c2;
    content: "";
    display: block;
    height: 1px;
    left: -5px;
    position: absolute;
    top: 5px;
    width: 11px;
}

.icon_boxes_con.style1 .service_box .ser-box-link:hover {
    border-color: #1ccdca;
}

.icon_boxes_con.style1:not(.just_icon_border) .service_box {
    margin-top: 10px;
}

.icon_boxes_con.style1.just_icon_border .service_box .service_box_con {
    padding-top: 115px;
}

.icon_boxes_con.style1.just_icon_border.img_icon_box .service_box .service_box_con {
    padding-top: 35px;
}

.icon_boxes_con.style1.just_icon_border:not(.img_icon_box) .service_box>.icon {
    top: 0;
}

.icon_boxes_con.style1:not(.img_icon_box) .service_box>.icon {
    height: 78px;
    position: absolute;
    top: -36px;
    width: 78px;
}

.icon_boxes_con.style1 .service_box h3,
.icon_boxes_con.style2 .service_box h3 {
    font-size: 17px;
    font-weight: 500;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.icon_boxes_con .service_box h3 a {
    color: inherit;
}

.white_section .icon_boxes_con .service_box h3 {
    color: #fff;
}

.white_section .icon_boxes_con.style2:not(.icon_box_no_border) .service_box .icon::after {
    background: rgba(0, 0, 0, 0.15);
    border: none;
}

.upper_title h1,
.upper_title h2,
.upper_title h3,
.upper_title h4,
.upper_title h5,
.upper_title h6,
.upper_title .tabs-navi {
    text-transform: uppercase;
}

.light_title h1,
.light_title h2,
.light_title h3,
.light_title h4,
.light_title h5,
.light_title h6 {
    font-weight: 300 !important;
}

.icon_boxes_con.style1 .service_box .desc,
.icon_boxes_con.style2 .service_box .desc {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}

.white_section .icon_boxes_con.style1 .service_box .desc,
.white_section .icon_boxes_con.style2 .service_box .desc {
    color: #ccc;
    color: rgba(255, 255, 255, 0.45);
}

.icon_boxes_con.style2 .service_box {
    margin-bottom: 60px;
}

.icon_boxes_con.style2 .service_box .service_box_con {
    padding-left: 100px;
}

.icon_boxes_con.style2 .service_box .icon {
    background: #33A8FF;
    color: #fff;
    display: block;
    font-size: 32px;
    height: 70px;
    line-height: 73px;
    position: absolute;
    text-align: center;
    width: 70px;
    top: 8px;
}

.icon_boxes_con.style2 .service_box .ser-box-link {
    display: inline-block;
    font-size: 12px;
    margin-top: 14px;
    position: relative;
    padding-left: 14px;
    text-transform: uppercase;
}

.icon_boxes_con.style2 .service_box .ser-box-link>span {
    left: 2px;
    position: absolute;
    top: 5px;
}

.icon_boxes_con.style2 .service_box .ser-box-link>span:after {
    background: #33A8FF;
    content: "";
    display: block;
    height: 6px;
    left: 0;
    position: absolute;
    top: 3px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 2px;
}

.icon_boxes_con.style2 .service_box .ser-box-link>span:before {
    background: #33A8FF;
    content: "";
    display: block;
    height: 6px;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 2px;
}

.icon_boxes_con.style2 .service_box .ser-box-link:hover>span:before {
    top: 2px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

.icon_boxes_con.style2 .service_box .ser-box-link:hover>span:after {
    top: 2px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.icon_boxes_con.style2.icon_box_no_border .service_box .service_box_con {
    padding-left: 105px;
}

.icon_boxes_con.style2.icon_box_no_border .service_box .icon {
    height: 84px;
    width: 84px;
    line-height: 87px;
    top: 0;
}

.icon_boxes_con.style2.icon_left_right>div:nth-child(2n+1) .service_box .service_box_con {
    padding-left: 0;
    padding-right: 100px;
    text-align: right;
}

.icon_boxes_con.style2.icon_left_right>div:nth-child(2n+1) .service_box .icon {
    right: 7px;
    left: auto;
}

.icon_boxes_con.style1 .service_box .ser-box-link:hover>span,
.icon_boxes_con.style1 .service_box .ser-box-link:hover>span:after {
    background: #33A8FF;
}

.icon_boxes_con.style2.medium_icon .service_box .icon,
.icon_boxes_con.style1.medium_icon .service_box .icon {
    font-size: 24px;
}

.icon_boxes_con.style2:not(.icon_box_no_border):not(.solid_icon) .service_box .icon {
    left: 7px;
}

.icon_boxes_con.style2:not(.icon_box_no_border) .service_box .icon:after {
    background: #fff;
    border: 1px solid #e6ebea;
    content: "";
    display: block;
    height: 84px;
    left: -7px;
    position: absolute;
    top: -7px;
    width: 84px;
    z-index: -1;
}

.icon_boxes_con.style2.solid_icon .service_box .service_box_con {
    padding-left: 105px;
}

.icon_boxes_con.style2.solid_icon .service_box .icon {
    background: #fff;
    background: none;
    height: 84px;
    line-height: 84px;
    width: 84px;
    top: 0;
}

.icon_boxes_con.style2.solid_icon .service_box .icon i {
    background: none;
    color: #33A8FF;
    position: relative;
    z-index: 1;
}

.icon_boxes_con.style2.solid_icon .service_box .icon:after {
    left: 0;
    top: 0;
}

.icon_boxes_con.style2.solid_icon .service_box:hover>.icon i {
    color: #fff;
}

.icon_boxes_con.style1.circle .service_box>.icon i {
    height: 70px;
    line-height: 70px;
    width: 70px;
}

.icon_boxes_con.style1.circle .service_box .service_box_con:before {
    height: 90px;
    width: 90px;
    top: -44px;
}

.icon_boxes_con.style1.circle .service_box>.icon:after,
.icon_boxes_con.style1.circle .service_box>.icon {
    height: 88px;
    width: 88px;
}

.icon_boxes_con.style1.circle:not(.just_icon_border) .service_box>.icon {
    top: -43px;
}

.icon_boxes_con.style1.circle:not(.just_icon_border) .service_box:hover>.icon i {
    height: 88px;
    left: 0;
    top: 0;
    width: 88px;
}

.icon_boxes_con.just_icon_border .service_box .service_box_con,
.icon_boxes_con.just_icon_border .service_box .service_box_con:before {
    border: none;
    background: none;
}

.icon_boxes_con.just_icon_border .service_box>.icon:after {
    border: 1px solid #e6ebea;
    background: #fff;
}

.icon_boxes_con.just_icon_border.img_icon_box .service_box>.icon::after {
    background: none;
    border: medium none;
}

.icon_boxes_con.just_icon_border.circle .service_box>.icon i {
    height: 74px;
    left: 7px;
    line-height: 70px;
    top: 7px;
    width: 74px;
}

.icon_boxes_con.style1.solid_icon .service_box>.icon:after,
.icon_boxes_con.style2.solid_icon .service_box .icon:after {
    background: #fff;
    border: 1px solid #33A8FF;
}

.icon_boxes_con.style1.solid_icon .service_box>.icon i {
    background: #fff;
    color: #33A8FF;
}

.icon_boxes_con.style2.reflection .service_box .icon i:after {
    background: rgba(255, 255, 255, 0.1);
    content: "";
    display: block;
    height: 50%;
    left: -23px;
    position: absolute;
    top: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 100px;
}

.icon_boxes_con.style2.reflection .service_box .icon i {
    display: block;
    height: 70px;
    line-height: 70px;
    overflow: hidden;
    position: relative;
    width: 70px;
}

.icon_boxes_con.style1.circle.just_icon_border.solid_icon:not(.radius5) .service_box>.icon:before,
.icon_boxes_con.style2.solid_icon .service_box>.icon:before {
    background: #33A8FF;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 1;
    left: 50%;
    top: 50%;
    opacity: 0;
    -webkit-transform: translateY(-50%) translateX(-50%) scale(1.2);
    -moz-transform: translateY(-50%) translateX(-50%) scale(1.2);
    -ms-transform: translateY(-50%) translateX(-50%) scale(1.2);
    -o-transform: translateY(-50%) translateX(-50%) scale(1.2);
    transform: translateY(-50%) translateX(-50%) scale(1.2);
}

.icon_boxes_con.style1.circle.just_icon_border:not(.solid_icon) .service_box>.icon i {
    background: none;
}

.icon_boxes_con.style1.circle.just_icon_border:not(.solid_icon) .service_box>.icon i:after {
    background: #33A8FF;
    content: "";
    display: block;
    height: 100%;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: -1;
    -webkit-transform: translateY(-50%) translateX(-50%) scale(1);
    -moz-transform: translateY(-50%) translateX(-50%) scale(1);
    -ms-transform: translateY(-50%) translateX(-50%) scale(1);
    -o-transform: translateY(-50%) translateX(-50%) scale(1);
    transform: translateY(-50%) translateX(-50%) scale(1);
}

.icon_boxes_con.style1.circle.just_icon_border:not(.solid_icon) .service_box:hover>.icon i:after {
    opacity: 0;
    -webkit-transform: translateY(-50%) translateX(-50%) scale(0);
    -moz-transform: translateY(-50%) translateX(-50%) scale(0);
    -ms-transform: translateY(-50%) translateX(-50%) scale(0);
    -o-transform: translateY(-50%) translateX(-50%) scale(0);
    transform: translateY(-50%) translateX(-50%) scale(0);
}

.icon_boxes_con.style1.circle.just_icon_border:not(.solid_icon) .service_box:hover>.icon i {
    background: #fff;
    color: #33A8FF;
}

.icon_boxes_con.style2:not(.solid_icon):not(.icon_box_no_border) .service_box:hover .icon {
    background: #fff;
    color: #33A8FF;
}

.icon_boxes_con.style1.circle.just_icon_border:not(.radius5) .service_box:hover>.icon:before,
.icon_boxes_con.style2.solid_icon .service_box:hover>.icon:before {
    opacity: 1;
    -webkit-transform: translateY(-50%) translateX(-50%) scale(1);
    -moz-transform: translateY(-50%) translateX(-50%) scale(1);
    -ms-transform: translateY(-50%) translateX(-50%) scale(1);
    -o-transform: translateY(-50%) translateX(-50%) scale(1);
    transform: translateY(-50%) translateX(-50%) scale(1);
}

.icon_boxes_con.style1:not(.radius5):not(.circle) .service_box:hover .service_box_con:before,
.icon_boxes_con.style1:not(.radius5):not(.circle) .service_box:hover>.icon {
    transform: translateX(-50%) rotate(45deg);
}

.icon_boxes_con.style1.solid_icon.radius5 .service_box:hover>.icon:after,
.icon_boxes_con.style1.solid_icon.radius5 .service_box:hover>.icon i,
.icon_boxes_con.style1.circle.just_icon_border.solid_icon .service_box:hover>span i {
    background: #33A8FF;
    color: #fff;
}

.service_box:hover h3 {
    color: #33A8FF;
}

.languages-select,
.top_details,
.top-socials {
    float: none;
    text-align: center;
    margin: 0;
}

.languages-select .languages-panel-con::after,
.languages-drop .languages-panel {
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.topbar.topbar_small {
    padding: 10px 0;
}

.top_details>span,
.top_details>div {
    padding: 8px 0;
}

.filter_item_block {
    width: 50%;
}

.hm_blog_list .blog_grid_con {
    float: none;
    margin-top: 20px;
    padding: 0;
    width: 100%;
}

.hm_blog_list:not(.hm_blog_full_list) .feature_inner {
    float: none;
    width: 100%;
}

.row_spacer {
    padding-bottom: 60px;
    padding-top: 60px;
}

.content_spacer {
    padding-bottom: 50px;
    padding-top: 35px;
}

.four_blocks .filter_item_block {
    width: 100%;
}

.two_blocks .filter_item_block {
    width: 100%;
}

#comments .children {
    padding-left: 0;
    border-left: none;
}

#comments .children::after {
    background: none;
}

.quote_con,
a.quote_con:focus {
    font-size: 16px;
    line-height: 27px;
}

.send_button {
    padding: 8px 11px;
}

.site_boxed #main_wrapper {
    border: none;
}

.icons_spacer {
    padding-bottom: 20px;
    padding-top: 70px;
}

.page404 {
    font-size: 190px;
}

.top_details>span:last-child {
    margin-right: 0px;
}

.top_details {
    margin-left: 0;
}

.top_details .languages-select {
    margin-left: 25px;
}

.hm_new_title_con {
    padding: 0 11px;
    width: 50px;
}

.hm_new_title_con h4 i {
    font-size: 25px;
}

.page_title h1 {
    font-size: 25px;
    padding: 25px 0 15px;
    float: none;
}

.page_title .breadcrumbs {
    float: none;
    line-height: 30px;
    margin: 0 0 25px;
}

.hm_new_bar {
    padding-left: 45px;
}

.post_next_prev_con .single_pro_row {
    padding-right: 0;
}

.single_pro_row {
    margin-top: 25px;
}

.post_next_prev {
    float: none;
    margin-top: 25px;
}

#comments .single_comment .comment_content {
    margin-left: 0px;
}

#comments .single_comment .avatar {
    margin: 0 15px 15px 0;
}

.quote_con,
a.quote_con:focus {
    font-size: 15px;
    line-height: 25px;
    padding: 13px 20px 18px;
}

#commentform input[type="text"] {
    margin: 0 0 1.4%;
    width: 100%;
}

.internal_post_con .content_block {
    padding-bottom: 20px;
}

.comment_said_text {
    font-size: 13px;
}

.normal_text_slider .desc {
    font-size: 15px;
    line-height: 29px;
}

.page_title.has_bg_image.member_header {
    padding: 50px 0 45px;
}

#logo {
    float: none;
    margin-right: 0;
    text-align: center;
    opacity: 1 !important;
}

.top_search {
    top: 88px;
    right: 100px;
}

.top_cart_con {
    min-width: 280px;
    right: 0;
    transform: translateX(50%);
    -moz-transform: translateX(50%);
    -webkit-transform: translateX(50%);
}

.top_cart_title {
    margin-bottom: 5px;
}

.top_search.large_top_search {
    right: 46px;
}

#logo+#top_cart {
    right: 50%;
    top: 100px;
}

#logo+#top_cart+.top_search {
    margin-right: -20px;
    right: 50%;
    top: 100px;
}

.top_search+#main_nav .mobile_menu_trigger {
    right: 50%;
}

#top_cart+.top_search+#main_nav .nav_trigger {
    right: 0;
    transform: translateX(-35px) translateY(-50%);
    -webkit-transform: translateX(-35px) translateY(-50%);
    -moz-transform: translateX(-35px) translateY(-50%);
    -o-transform: translateX(-35px) translateY(-50%);
}

.top_add_card {
    right: -20px;
    transform: translateX(55px) translateY(-50%);
    -moz-transform: translateX(55px) translateY(-50%);
    -webkit-transform: translateX(55px) translateY(-50%);
}

.top_search.large_top_search,
#top_cart+.top_search.large_top_search,
#logo+#top_cart+.top_search.large_top_search {
    padding-left: 30px;
    right: 15px;
    margin-right: 0;
}

.hm_new_bar_slider {
    padding-left: 0;
}

.hm_new_bar {
    padding-left: 0;
}

.hm_new_title_con {
    display: none;
}

.comment-box {
    padding: 15px;
}

.comment_said_text {
    font-size: 13px;
}

.send_button {
    font-size: 13px;
}

.icon_boxes_con.style2.icon_box_no_border .service_box .service_box_con {
    padding-left: 0;
    padding-top: 105px;
    text-align: center;
}

.icon_boxes_con.style2.icon_box_no_border .service_box .icon {
    left: 50%;
    margin-left: -42px;
}

.icon_boxes_con.style2.icon_left_right>div:nth-child(2n+1) .service_box .service_box_con,
.icon_boxes_con.style2 .service_box .service_box_con,
.icon_boxes_con.style2.solid_icon .service_box .service_box_con {
    padding: 95px 0 0;
    text-align: center;
}

.icon_boxes_con.style2 .service_box .icon {
    left: 50%;
    margin-left: -35px;
}

.icon_boxes_con.style2.solid_icon .service_box .icon {
    left: 50%;
    margin-left: -42px;
}

.icon_boxes_con.style1 .service_box h3,
.icon_boxes_con.style2 .service_box h3 {
    font-size: 15px;
    margin: 5px 0 12px;
}

.main_title h2 {
    font-size: 26px;
    margin-top: 10px;
}

.page_title h1,
.page_title .breadcrumbs {
    text-align: center;
}

.top_details {
    margin-left: 0;
}

.content_thumbs_gall.gall_arrow2 .thumbs_gall_slider_larg .owl-next {
    right: -10px;
}

.content_thumbs_gall.gall_arrow2 .thumbs_gall_slider_larg .owl-prev {
    left: -22px;
}

.gall_arrow2 .thumbs_gall_slider_larg .enar_owl_n,
.gall_arrow2 .thumbs_gall_slider_larg .enar_owl_p {
    border: 1px solid #E5E5E5;
}

.tabs-navi a {
    font-size: 13px;
}

.team_block2 .member_img,
.our_team_section .medium-6:nth-child(2n) .team_block2 .member_img {
    float: none;
    width: 100%;
}

.team_block2 .team_detail,
.our_team_section .medium-6:nth-child(2n) .team_block2 .team_detail {
    float: none;
    margin-top: 15px;
    padding-right: 0;
    padding-left: 0;
    width: 100%;
    text-align: center;
}

.our_team_section .medium-6:nth-child(2n+1) .team_block2 .team_detail {
    text-align: center;
}

.hm_tooltip-content1 {
    font-size: 12px;
    line-height: 21px;
    margin: 0 0 0 -180px;
    min-width: 214px;
    padding: 15px;
}

.page404 {
    font-size: 130px;
}

.normal_text_slider .desc {
    font-size: 14px;
    line-height: 27px;
}

.contact_details_row .c_con {
    margin-top: 15px;
    padding-left: 0;
}

.contact_details_row .icon {
    position: relative;
}

.porto_nums {
    display: block;
    margin-top: 7px;
    float: none;
}

.shop_slider .pro_add2cart_details {
    width: 70%;
}

.topbar.topbar_small {
    padding: 7px 0 8px;
}

.top_details>span:not(.top_login):not(.languages-select) {
    display: none;
}

.top-socials>a {
    font-size: 13px;
    height: 28px;
    line-height: 30px;
    margin-top: 6px;
    width: 28px;
}

.top-socials>a>span.soc_name,
.top-socials>a>span.soc_name {
    display: none !important;
}

.light_header .top-socials>a>span.soc_icon_bg {
    background: #33A8FF;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -o-border-radius: 2px;
    height: 30px;
    width: 30px;
}
}

.flex_in {
    background: rgba(0, 0, 0, 0.4);
}

.oswald_font {
    font-family: "Oswald", "Open Sans", sans-serif;
}

.sticky_options {
    position: absolute;
    top: 1px;
    right: 5px;
    color: #999;
}

.heading_content {
    padding: 10px !important;
}

.subtext {
    bottom: 0.75em;
    margin: -3px;
}

.line_title .heading {
    color: #000;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 2px;
    position: relative;
    font-family: "Oswald", "Open Sans", sans-serif;
}

.line_title .heading .line1 {
    background: rgba(255, 255, 255, 0.51);
    bottom: 0;
    height: 1px;
    position: absolute;
    width: 33%;
}

.line_title .line1:before {
    background: #0072A5;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    width: 100px;
}

.line_title .heading .line2 {
    background: rgba(255, 255, 255, 0.51);
    bottom: 0;
    height: 1px;
    position: absolute;
    width: 33%;
}

.line_title .heading .dot {
    background-color: #eee !important;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: .35s;
    -o-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-property: height, visibility;
    -o-transition-property: height, visibility;
    transition-property: height, visibility;
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid \9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.dropup,
.dropdown {
    position: relative;
}

.dropdown-toggle:focus {
    outline: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    #-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    #box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.dropdown-menu.pull-right {
    right: 0;
    left: auto;
}

.dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

.dropdown-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5;
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus {
    color: #fff;
    text-decoration: none;
    background-color: #337ab7;
    outline: 0;
}

.dropdown-menu>.disabled>a,
.dropdown-menu>.disabled>a:hover,
.dropdown-menu>.disabled>a:focus {
    color: #777;
}

.dropdown-menu>.disabled>a:hover,
.dropdown-menu>.disabled>a:focus {
    text-decoration: none;
    cursor: not-allowed;
    background-color: #33A8FF;
    #background-color: transparent;
    #background-color: transparent;
}

#bodyId {
    min-height: 590px;
    flex-grow: 1;
}

.tileCon3T .tileConTile {
    #height: 175px;
    #padding: 15px 20px 25px 20px;
    height: 180px;
    padding: 15px 20px 25px 20px;
    width: 180px;
}

.tileCon3TSS .tileConTileSS {
    height: 175px;
    padding: 15px 20px 25px 20px;
}

.menubar {
    height: 100%;
    width: 200px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #33A8FF;
    color: white;
    overflow-x: hidden;
    padding-top: 20px;
}

.menubar a,
.dropdown-btn {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 18px;
    color: white;
    display: block;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.active {
    background-color: #33A8FF;
    color: white !important;
}

/* Optional: Style the caret down icon */
.fa-caret-down,
.fa-caret-up {
    float: right;
    padding-right: 8px;
}

.btnClass {
    width: 10%;
}

.loginbody {
    background-color: snow;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    margin-top: 120px;
}

.login-box {
    width: 200px;
    background-color: #33a8ff;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 400px;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
}

.login-card {
    width: 300px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-title {
    color: #007BFF;
    margin-bottom: 20px;
}

.underline-text {
    display: inline-block;
    border-bottom: 2px solid black;
    padding-bottom: 2px;
}

.loginform {
    display: flex;
    flex-direction: column;
}

.login-label {
    text-align: left;
    margin-bottom: 5px;
}

.login-input {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.login-btn {
    padding: 10px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.login-btn:hover {
    background-color: #33a8ff;
}

.login-forget {
    margin-top: 15px;
    font-size: 14px;
}

.forget {
    color: #007BFF;
    text-decoration: none;
}

.main_consult_wrapper {
    background-color: #fff;
    border: 1px solid #ebebeb;
    border-radius: 10px;
}

.doctor_profile {
    background-color: #dde1ff;
    width: 100%;
    border-radius: 10px 10px 0px 0px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    padding: 5px 15px;
}

.hospital_profile {
    padding: 5px 15px;
    align-items: center;
    display: flex;
}

.hs_img {
    width: 40px;
}

.hs_img img {
    width: 100%;
}

.hs_text {
    font-size: 16px;
    color: #000;
    margin-left: 10px;
}

.patient {
    margin-top: 10px;
}

.pt_box {
    display: flex;
    align-items: center;
}

.pt_name {
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.pt_status {
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.pt_age {
    margin-left: 10px;
    background-color: #dafde3;
    border: 1px solid #60d97f;
    color: #138317;
    font-weight: 600;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 6px;
}

.patient_detail {
    margin-top: 10px;
}


.patient_detail table {
    border-collapse: collapse;
    width: 100%;
    background-color: #fff;
}

.patient_detail table td,
th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 5px 8px;
}

.patient_detail table tbody th {
    background-color: #252954;
    color: #fff;
}

.patient_detail table tbody td {
    color: #000;
    font-weight: 500;
}

.patient_detail table tbody .form-control {
    height: 30px;
}

.btn-add {
    background-color: #33A8FF;
    border: 1px solid #33A8FF;
    color: #fff;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    padding: 3px 15px;
}

.btn-add.sent {
    background-color: #047a01;
    border: 1px solid #047a01;
    font-size: 16px;
    font-weight: 600;
}

.medics {
    background-color: #dde1ff;
    color: #000;
    font-size: 16px;
    text-transform: uppercase;
}

.submit_details {
    margin-top: 10px;
}

.btn-submit-prescription {
    background-color: #33A8FF;
    border: 1px solid #33A8FF;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    padding: 8px 15px;
    font-size: 16px;
}

.btn-submit-prescription:hover {
    background-color: #33A8FF;
    border: 1px solid #33A8FF;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    padding: 8px 15px;
    font-size: 16px;
}

.tabset {
    margin-top: 15px;
    background-color: #fff;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.tabset>input[type="radio"] {
    position: absolute;
    left: -200vw;
}

.tabset .tab-panel {
    display: none;
}

.tabset>input:first-child:checked~.tab-panels>.tab-panel:first-child,
.tabset>input:nth-child(3):checked~.tab-panels>.tab-panel:nth-child(2),
.tabset>input:nth-child(5):checked~.tab-panels>.tab-panel:nth-child(3),
.tabset>input:nth-child(7):checked~.tab-panels>.tab-panel:nth-child(4),
.tabset>input:nth-child(9):checked~.tab-panels>.tab-panel:nth-child(5),
.tabset>input:nth-child(11):checked~.tab-panels>.tab-panel:nth-child(6),
.tabset>input:nth-child(13):checked~.tab-panels>.tab-panel:nth-child(7),
.tabset>input:nth-child(15):checked~.tab-panels>.tab-panel:nth-child(8),
.tabset>input:nth-child(17):checked~.tab-panels>.tab-panel:nth-child(9) {
    display: block;
}


.tabset>label {
    position: relative;
    display: inline-block;
    padding: 10px 15px 10px 15px;
    border: 1px solid transparent;
    border-bottom: 0;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 0px;
}

.tabset>label:hover {
    color: #33A8FF;
}

.tabset>input:focus+label,
.tabset>input:checked+label {
    color: #fff;
}


.tabset>input:checked+label {
    border-color: #33A8FF;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
    background-color: #33A8FF;
    border-radius: 10px 10px 0px 0px;
}

.tab-panel {
    padding: 10px 0px 10px 0px;
    border-top: 1px solid #f7f7f7;
}

.pp_print {
    width: 1280px;
    padding: 10px 20px;
    background-color: #fff;
}

.w-50 {
    width: 50%;
}

.logo_and_mobile {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
}

.logo_and_mobile.bb_bottom {
    border-bottom: 2px solid #09388d;
}

.s_address {
    margin-bottom: 0px;
    color: #09388d;
}

.font_big {
    font-size: 20px;
    font-weight: 800;
}

.font_medium {
    font-size: 16px;
    font-weight: 700;
}

.font_small {
    font-weight: 600;
}





.br_rights {
    border-right: 2px solid #939393;
}

.pl_lefts {
    padding-left: 15px;
}

.icon_size {
    padding-left: 5px;
    padding-right: 5px;
}

.font_ks {
    color: #09388d;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

.font_ks_ans {
    color: #09388d;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}


.prescription_box {
    border: 1.5px solid #939393;
    background-color: #fff;
    margin-top: 10px;
    border-radius: 10px;
}

.double_box {
    border: 1.5px solid #939393;
    background-color: #fff;
    margin-top: 10px;
    border-radius: 10px;
    width: 49%;
}

.info_double_box {
    border-top: 2px solid #09388d;
    border-right: 2px solid #09388d;
    border-left: 2px solid #09388d;
    background-color: #fff;
    margin-top: 10px;
    border-radius: 10px 10px 0px 0px;
    width: 40%;
}

.patient_table {
    width: 100%;
}

.split_double_box {
    display: flex;
    justify-content: space-between;

}

.logos_and_mobile.doctor {
    padding-top: 5px;
}

.split_bluedouble_box {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #09388d;
}

.fonts_medium {
    font-size: 16px;
    font-weight: 800;
}

.pt_table {
    padding: 5px 15px 10px 15px;
}

.pl_lefts_20 {
    padding-left: 20px;
}

.tablet_table.wils thead tr th {
    padding-top: 10px;
    padding-bottom: 10px;
}

.drug_splits {
    display: flex;
    align-items: center;
    text-align: left;
}

.drug_img {
    padding-right: 15px;
}

.drug_img img {
    transform: rotate(45deg);
}

.font_bold {
    color: #000;
    font-weight: 700;
    width: 70px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.font_ans {
    color: #000;
    font-weight: 500;
}

.tablet_table {
    width: 100%;
}

.tablet_table thead th {
    color: #000;
    text-align: left;
}


.main_td {
    width: 90px;
}

.drug_names {
    font-size: 12px;
}

.main_drug {
    padding-left: 20px;
    padding-top: 8px;
    padding-bottom: 3px;
    color: #000;
    font-weight: 700;
    /* border-right: 2px solid #000; */
}

.times_drug {
    /* border-right: 2px solid #000; */
    color: #000;
    font-weight: 400;
}

.last_times_drug {
    color: #000;
    font-weight: 400;
}

.sub_drug {
    color: grey;
    font-weight: 600;
    font-size: 12px;
}

.signature_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px 0px 0px;
    color: #000;
}

.name_sig {
    display: flex;
    align-items: center;
}

.ns_ab {
    font-size: 20px;
    font-weight: 700;
    margin-right: 60px;
}

.ns_bc {
    font-weight: 600;
}

.nexr_rew {
    font-size: 20px;
    font-weight: 700;
}

.vv_bn {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: right;
}

.ns_de {
    font-weight: 600;
}

/*body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
*/
.container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto auto;
    gap: 20px;
}


.top {
    /*background-color: #333;*/
    padding: 20px;
    border-radius: 10px;
    width: 100vw;
    box-sizing: border-box;
    text-align: center;
    grid-column: span 2;
    color: #00bcd4;
}

.left-side,
.right-side {
    /*padding: 20px;*/
    /*background-color: #1e1e1e;*/
    /*border-radius: 10px;*/
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);*/
    /*width:50%;*/
    /*border:1px solid #33A8FF;*/
    /*box-sizing:border-box;*/
}

.left-side {
    /*max-width: 600px;*/
    margin-left: 84px;

}

.side-nav {
    display: flex;
}

.navigation {
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
    margin-bottom: 20px;
    margin-left: 260px;


}

.arrow {
    /*background-color: #333;
    color: #00bcd4;
    border: none;*/
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    width: 40px;
    height: 40px;
}

.arrow:hover {
    /*background-color: #444;*/
}

/*
select {
    width: calc(100% - 100px);
    padding: 10px;
    background-color: #333;
    color: #00bcd4;
    border: none;
    border-radius: 5px;
}





 button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
}



button {
    cursor: pointer;
    background-color: #444;
}

button:hover {
    background-color: #555;
}

#form-submit {
    width: 64px;
    color: #00bcd4;
}
*/

#form-selector,
#item-selector {
    width: max-content;
}

#date-selector {
    /*border: none;*/
    border-radius: 5px;
    /*background-color: #333;*/
    /*color: #fff;*/
    height: 30px;
    padding: 0 10px;
    /*transition: background-color 0.3s, transform 0.2s;*/
    padding-left: 5px;
    height: 34px;
    margin-left: 220px;
}

.item-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-top: 24px;
    margin-right: 8px;
}

.form h1 {
    text-align: center;
    color: #00bcd4;
    margin-bottom: 20px;
    font-size: 32px;
}


@media (max-width: 768px) {
    .container {
        display: flex;
        flex-direction: column;
    }

    .navigation {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
        margin-top: 24px;
        margin-right: 8px;
    }

    #date-selector {
        position: relative;
        right: 134px;
    }

}


.vitals {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    /*background-color: #262626;*/
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    width: 60%;
}

.vitals div {
    padding: 15px;
    text-align: center;
}

.vitals input {
    border: 1px solid #33A8FF;
    border-radius: 5px;
    /*background-color: #333;*/
    /*color: #fff;*/
    height: 30px;
    padding: 0 10px;
    /*transition: background-color 0.3s, transform 0.2s;*/
}

.vitals input:focus {
    /*background-color: #444;*/
    /*transform: scale(1.05);*/
    /*outline: none;*/
}

#Vitals-Date {
    width: 170px;
    padding-left: 5px;
    height: 34px;
}

.vitals h3 {
    margin-bottom: 5px;
    color: #00bcd4;
    font-size: 20px;
}

.vitals div:hover {
    transform: scale(1.05);
    transition: transform 0.2s;
}

@media (max-width: 768px) {
    .vitals {
        flex-direction: column;
        align-items: center;
    }

    .vitals div {
        width: 100%;
    }
}

.labin {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    /*background-color: #262626;*/
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.labin div {
    padding: 15px;
    text-align: center;
}

.labin input {
    /*border: none;*/
    border-radius: 5px;
    /*background-color: #333;*/
    /*color: #fff;*/
    height: 30px;
    padding: 0 10px;
    /*transition: background-color 0.3s, transform 0.2s;*/
}

.labin input:focus {
    /*background-color: #444;*/
    /*transform: scale(1.05);*/
    /*outline: none;*/
}

#LabIn-Date {
    width: 170px;
    padding-left: 5px;
    height: 34px;
}

.labin h3 {
    margin-bottom: 5px;
    color: #00bcd4;
    font-size: 20px;
}

.labin div:hover {
    transform: scale(1.05);
    transition: transform 0.2s;
}

@media (max-width: 768px) {
    .labin {
        flex-direction: column;
        align-items: center;
    }

    .labin div {
        width: 100%;
    }
}




.devices {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}


.devices>div {
    width: 35%;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    /*background-color: #262626;*/
}


.devicedates div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}



.devices input[type="radio"]+.devices label {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    /*transition: background-color 0.3s ease;*/
    /*background-color: #555; */
    /*color: #fff; */
}


.devices input[type="radio"]+.devices label:not(:checked) {
    /*background-color: #555;*/
}

/* Styling for checked radio button */
.devices input[type="radio"]:checked+.devices label {
    /*background-color: #007bff; */
}

.devices label {
    position: relative;
    right: 240px;
    bottom: -5px;
}


.antibiotic {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    /*background-color: #262626;*/
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.antibiotic div {
    padding: 15px;
    text-align: center;
}

.antibiotic input {
    /*border: none;*/
    border-radius: 5px;
    /*background-color: #333;*/
    /*color: #fff;*/
    height: 30px;
    padding: 0 10px;
    /*transition: background-color 0.3s, transform 0.2s;*/
}

.antibiotic input:focus {
    /*background-color: #444;*/
    /*transform: scale(1.05);*/
    /*outline: none;*/
}

.antibiotic input[type="date"] {
    width: 170px;
    padding-left: 5px;
    height: 34px;
}

.antibiotic h3 {
    margin-bottom: 5px;
    color: #00bcd4;
    font-size: 20px;
}

.antibiotic div:hover {
    transform: scale(1.05);
    transition: transform 0.2s;
}

@media (max-width: 768px) {
    .antibiotic {
        flex-direction: column;
        align-items: center;
    }

    .antibiotic div {
        width: 100%;
    }
}



#form5 {
    margin: 20px auto;
    max-width: 800px;
    padding: 20px;
    /* border: 1px solid #262626; */
    border-radius: 5px;
    /*background-color: #262626;*/
    font-family: Arial, sans-serif;
    position: relative;
    left: 94px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.followup {
    margin-left: 32%;

}




h1 {
    text-align: center;
    color: #333;
}


.navigation-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 280px;

}

.arrow-1 {
    /*background-color: #333;*/
    /*color: #00bcd4;*/
    /*border: none;*/
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    margin-left: 24px;
}

.arrow-1:hover {
    /*background-color: #444;*/
}

.form-1 {
    width: 100%
}

#form-submit-1 {
    width: 64px;
    color: #00bcd4;
    margin-left: 24px;
}

#form-selector-1 {
    width: max-content;
    margin-left: 24px;
}

.ros1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

#form1 {
    position: relative;
    left: 42px;
    top: 12px;
}





.ros-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 20px 0;
    width: 100%;
    box-sizing: border-box;
}

.ros {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.ros>div {
    flex: 1 1 300px;
    /* background-color: #262626; */
    /* border: 1px solid #262626; */
    border-radius: 8px;
    padding: 15px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    position: relative;
    bottom: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 400px;
}

.ros h2 {
    margin-top: 0;
    color: #00bcd4;
    font-size: 1.2em;
    text-align: center;
}

.ros h3 {
    margin: 10px 0;
    color: #00bcd4;
    font-size: 1em;
}

.ros input[type='radio'] {
    margin-right: 10px;
}

.ros label {
    margin-bottom: 5px;
    display: block;
    color: #333;
}

.followup input[type='radio'] {
    margin-bottom: 10px;
    margin-right: 4px;
    position: relative;
    top: 2px;
}

.ros1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}



@media (max-width: 768px) {
    .ros>div {
        flex: 1 1 100%;
    }
}

.devices-row {
    position: relative;
    left: 128px;
}

.devices h2 {
    font-size: 24px;
}


.devices input {
    /*border: none;*/
    border-radius: 5px;
    /*background-color: #333;*/
    /*color: #fff;*/
    height: 30px;
    padding: 0 10px;
    /*transition: background-color 0.3s, transform 0.2s;*/
}

#form6 {
    padding: 20px;
    /* border: 1px solid #262626; */
    border-radius: 5px;
    width: 850px;
}


#form7 {
    /* margin: 20px auto; */
    /* max-width: 600px; */
    padding: 20px;
    /* border: 1px solid #262626; */
    border-radius: 5px;
    position: relative;
    right: -290px;
    height: 280px;
    width: 280px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#form2 h1 {
    position: relative;
    right: 240px;
}


#form7 h1 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 28px;
}


.cultures-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.cultures {
    width: calc(50% - 10px);
    margin-bottom: 20px;
    margin-left: 160px;
    margin-top: 18px;


}


.cultures select,
.cultures input[type="date"],
.cultures input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #444;
    border-radius: 5px;
    box-sizing: border-box;
    /*background-color: #333;*/
    transition: border-color 0.3s ease;
    /*color: #fff;*/
}



.cultures select:hover,
.cultures input[type="date"]:hover,
.cultures input[type="text"]:hover {
    border-color: #999;
}



.cultures h3 {
    margin-top: 0;
    color: #00bcd4;
}

.item {
    width: max-content;
    margin: 0 auto;
    padding: 20px;
    /*background-color: #2a2a2a;*/
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/*
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #444;
}

th {
    background-color: #333;
    color: #fff;
}

td {
    background-color: #2a2a2a;
}

tr:hover td {
    background-color: #3a3a3a;
}
*/
.item td:first-child {
    font-weight: bold;
}


#item3 select {
    width: max-content;
    margin: 0 auto;
    display: block;
    height: max-content;
}


.arr {
    /*background-color: #333;*/
    color: #00bcd4;
    /*border: none;*/
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;

    margin-left: 24px;
}

.nav-container {
    display: flex;
}

#item3 .arr.disabled {
    color: red;
    cursor: not-allowed;
}

.container111 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px;
    margin: 20px auto;
    width: 85%;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 20px;
    margin-left: 100px;
}

.left-side {
    width: 50%;
    margin-left: 45px;
}

.right-side {
    width: 45%;
    margin-left: 150px;
}

.left-side p,
.right-side p {
    margin: 10px 0;
    font-size: 18px;
}

.doctor-name {
    font-size: 25px !important;
    color: #33a8ff;
    margin-bottom: 15px;
}

.hospital-name {
    display: flex;
    align-items: center;
    font-size: 25px;
    color: #33a8ff;
}

.hospital-address,
.hospital-contact {
    margin-left: 60px;
}

.logo {
    height: 50px;
    width: 50px;
    margin-right: 10px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 60%;
    height: 60%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    /* padding-top: 60px; */
    margin-top: -50px;

}

/* Modal Content */
/* .modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
} */
.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 1200px;
    /* Optional: Limit max width on large screens */
    height: auto;
    max-height: 100vh;
    /* Prevent overflow on small screens */
    overflow-y: auto;
    box-sizing: border-box;
    border-radius: 10px;
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.card-header {
    padding: 10px;
    border: 2px solid #007BFF;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    background-color: white;
    color: #007BFF;
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
}

.card-header .icon {
    font-size: 18px;
    font-weight: bold;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-group label {
    flex: 1;
    margin-right: 10px;
    font-weight: bold;
    color: #bbbbbb;
}

.form-group input[type="number"] {
    flex: 2;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #2c2c2c;
    color: #ffffff;
    font-size: 16px;
}

.form-group select {
    flex: 1;
    margin-left: 10px;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #2c2c2c;
    color: #ffffff;
    font-size: 16px;
}

.result {
    margin-top: 20px;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
}

.button-group {
    display: flex;
    gap: 10px;
}

.button-group label {
    cursor: pointer;
    background-color: rgb(32, 31, 31);
    padding: 10px 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.button-group input[type="radio"] {
    display: none;
}

.button-group input[type="radio"]:checked+label {
    background-color: #007bff;
    color: #fff;
}

#scoreResult {
    margin-top: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
    color: #fff;
}

#recommendation {
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 1em;
    color: #fff;
}

.criteria div label {
    display: block;
    margin-bottom: 10px;
}

.info ul {
    list-style-type: none;
    padding: 0;
}

.info ul li {
    padding: 10px;
    border-radius: 5px;
}

/* new */
#result {
    margin-top: 1.5em;
    color: white;
    font-size: 1.2em;
}

.info {
    margin-top: 2em;
    text-align: left;
    font-size: 1em;
    color: #555;
}

.info h3 {
    color: #333;
    font-size: 1.1em;
}

.info ul {
    list-style-type: none;
    padding: 0;
}

.info li {
    margin: 0.5em 0;
    padding: 0.75em;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stage {
    color: white;
    padding: 0.5em;
    border-radius: 5px;
}

.stage-1 {
    background-color: rgb(19, 231, 19);
    color: black;
}

.stage-2 {
    background-color: rgb(173, 221, 0);
    color: black;
}

.stage-3a {
    background-color: yellow;
    color: black;
}

.stage-3b {
    background-color: orange;
    color: black;
}

.stage-4 {
    background-color: red;
}

.stage-5 {
    background-color: maroon;
}

.toggle-group {
    display: flex;
    align-items: center;
    margin-top: 1em;
}

.toggle-group label {
    margin-right: 1em;
    font-weight: bold;
    color: #555;
}

.toggle-group input[type="checkbox"] {
    display: none;
}

.toggle-group input[type="checkbox"]+label {
    cursor: pointer;
    padding: 0.5em 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.toggle-group input[type="checkbox"]:checked+label {
    background-color: #007bff;
    color: #fff;
}

.error-message {
    color: red;
    font-size: 0.8em;
    margin-top: 0.5em;
}

@media (max-width: 600px) {
    .form-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-group label,
    .form-group input,
    .form-group select {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .form-group input,
    .form-group select {
        margin-top: 0.5em;
    }
}

.error-message {
    color: red;
    font-size: 12px;
    position: absolute;
    bottom: -20px;
    left: 0;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

button:hover {
    background-color: #0056b3;
}

#result {
    margin-top: 20px;
    padding: 15px;
    background-color: #e9ecef;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    color: #333;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.risk-section {
    margin-bottom: 15px;
}

.risk-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.risk-value {
    margin-bottom: 5px;
}

/* sidenav */
.sidenav {
    height: 60%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #33A8FF;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 16px;
    color: white;
    display: block;
    transition: 0.3s;

}

.sidenav a:hover {
    color: black;
}

.sidenav .closebtn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 36px;
    margin-left: 50px;
    color: #fff;
    background-color: rgba(66, 66, 66, 0.5);
    padding: 0px 14px;
    border-radius: 5px;
}

#main {
    transition: margin-right 0.5s;
    padding: 16px;
    float: right;
}

#main span {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0px 10px;
    border-radius: 5px;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

.card-header {
    padding: 10px;
    border: 2px solid #007BFF;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    background-color: white;
    color: #007BFF;
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
}

.card-header .icon {
    font-size: 18px;
    font-weight: bold;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-group label {
    flex: 1;
    margin-right: 10px;
    font-weight: bold;
    color: #bbbbbb;
}

.form-group input[type="number"] {
    flex: 2;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #2c2c2c;
    color: #ffffff;
    font-size: 16px;
}

.form-group select {
    flex: 1;
    margin-left: 10px;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #2c2c2c;
    color: #ffffff;
    font-size: 16px;
}

.result {
    margin-top: 20px;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
}

.button-group {
    display: flex;
    gap: 10px;
}

.button-group label {
    cursor: pointer;
    background-color: rgb(32, 31, 31);
    padding: 10px 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.button-group input[type="radio"] {
    display: none;
}

.button-group input[type="radio"]:checked+label {
    background-color: #007bff;
    color: #fff;
}

#scoreResult {
    margin-top: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
    color: #fff;
}

#recommendation {
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 1em;
    color: #fff;
}

.criteria div label {
    display: block;
    margin-bottom: 10px;
}

.info ul {
    list-style-type: none;
    padding: 0;
}

.info ul li {
    padding: 10px;
    border-radius: 5px;
}

/* new */
#result {
    margin-top: 1.5em;
    color: white;
    font-size: 1.2em;
}

.info {
    margin-top: 2em;
    text-align: left;
    font-size: 1em;
    color: #555;
}

.info h3 {
    color: #333;
    font-size: 1.1em;
}

.info ul {
    list-style-type: none;
    padding: 0;
}

.info li {
    margin: 0.5em 0;
    padding: 0.75em;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stage {
    color: white;
    padding: 0.5em;
    border-radius: 5px;
}

.stage-1 {
    background-color: rgb(19, 231, 19);
    color: black;
}

.stage-2 {
    background-color: rgb(173, 221, 0);
    color: black;
}

.stage-3a {
    background-color: yellow;
    color: black;
}

.stage-3b {
    background-color: orange;
    color: black;
}

.stage-4 {
    background-color: red;
}

.stage-5 {
    background-color: maroon;
}

.toggle-group {
    display: flex;
    align-items: center;
    margin-top: 1em;
}

.toggle-group label {
    margin-right: 1em;
    font-weight: bold;
    color: #555;
}

.toggle-group input[type="checkbox"] {
    display: none;
}

.toggle-group input[type="checkbox"]+label {
    cursor: pointer;
    padding: 0.5em 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.toggle-group input[type="checkbox"]:checked+label {
    background-color: #007bff;
    color: #fff;
}

.error-message {
    color: red;
    font-size: 0.8em;
    margin-top: 0.5em;
}

@media (max-width: 600px) {
    .form-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-group label,
    .form-group input,
    .form-group select {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .form-group input,
    .form-group select {
        margin-top: 0.5em;
    }
}

.error-message {
    color: red;
    font-size: 12px;
    position: absolute;
    bottom: -20px;
    left: 0;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

button:hover {
    background-color: #0056b3;
}

#result {
    margin-top: 20px;
    padding: 15px;
    background-color: #e9ecef;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    color: #333;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.risk-section {
    margin-bottom: 15px;
}

.risk-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.risk-value {
    margin-bottom: 5px;
}

/* sidenav */
.sidenav {
    height: 60%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #33A8FF;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 16px;
    color: white;
    display: block;
    transition: 0.3s;

}

.sidenav a:hover {
    color: black;
}

.sidenav .closebtn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 36px;
    margin-left: 50px;
    color: #fff;
    background-color: rgba(66, 66, 66, 0.5);
    padding: 0px 14px;
    border-radius: 5px;
}

#main {
    transition: margin-right 0.5s;
    padding: 16px;
    float: right;
}

#main span {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0px 10px;
    border-radius: 5px;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* overflow-x: hidden;
    overflow-y: hidden; */
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    padding: 0;
    margin: 0;
}


/* nav header */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: #33A8FF;
    color: #fff;
    height: 35px;
}

.navbar-header {
    display: flex;
    align-items: center;
    margin-top: -20px;
}

.logo {
    font-size: 20px;
    margin-left: -50px;
}

#toggle {
    display: none;
}

.toggle {
    font-size: 30px;
    position: fixed;
    left: 20px;
    top: 20px;
    transition: 0.5s;
    cursor: pointer;
    z-index: 1000;
    color: white;
}

.main-menu {
    background: #33a8ff;
    border-right: 1px solid #e5e5e5;
    position: fixed;
    top: 0;
    bottom: 0;
    height: 100%;
    left: 0;
    width: 250px;
    overflow: hidden;
    transition: width 0.5s;
    z-index: 999;
    color: white !important;
}

.main-menu.open {
    width: 220px;
}

.main-menu ul {
    margin: 7px 0;
}

.main-menu li {
    position: relative;
    display: block;
    width: 250px;
}

.main-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 14px;
    text-decoration: none;
    padding: 10px 20px;
    transition: all 0.3s;
    margin-left: -30px;
}

.main-menu li i {
    margin-right: 10px;
    font-size: 20px;
}

.main-menu li:hover a,
.main-menu li a:hover,
.main-menu li a:focus,
.main-menu li.active a {
    color: #fff;
    background-color: #2E97E5;
}

.main-menu .nav-text {
    display: none;
    font-size: 16px;
}

.main-menu.open .nav-text {
    display: inline;
}

.main-menu ul.logout {
    position: absolute;
    left: 0;
    bottom: 0;
}

.content {
    margin-left: 50px;
    padding: 20px;
    transition: margin-left 0.5s;
    flex-grow: 1;
}

#toggle:checked~.content {
    margin-left: 210px;
}

@media (max-width: 600px) {
    .main-menu {
        width: 60px;
    }

    .main-menu.open {
        width: 220px;
    }

    .main-menu.open .nav-text {
        display: inline;
    }

    #toggle:checked~.content {
        margin-left: 200px;
    }
}

/* body */
/* .breadcrumb */
.breadcrumb-container {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .breadcrumb-container {
        display: flex;
        align-items: center;
    }
}

.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    margin: 0 5px;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #007BFF;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* body section start */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor_profile {
    width: calc(100% - 900px);
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    /* padding: 5px 15px; */
    margin-top: -40px;
    margin-left: 900px;
    display: flex;
    flex-direction: column;
    /* Ensures the div elements stack vertically */
    align-items: flex-start;
}

.doctor_profile img {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    /* margin-bottom: 15px; Adjust margin to create space below the image */
    background-color: blue;
}

@media (max-width: 768px) {
    .doctor_profile {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 0;
        margin-left: 0;
        text-align: center;
    }

    .doctor_profile img {
        margin-left: 0;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .doctor_profile {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 0;
        margin-left: 0;
        text-align: center;
    }

    .doctor_profile img {
        margin-left: 0;
    }
}


.title {
    background-color: skyblue;
    color: white;
    font-size: 20px;
}

.hospital_profile {
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    padding: 5px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 150px;
    height: 30px;
    background-color: #33a8ff;
    color: white;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .hospital_profile {
        width: 100%;
        margin-left: 0px;
        flex-direction: column;
        align-items: flex-start;
        height: 60px;
    }

}

@media (min-width: 769px) and (max-width: 1200px) {
    .hospital_profile {
        width: 50%;
        margin-left: -50px;
        flex-direction: column;
        align-items: flex-start;
        height: 60px;
    }
}

.hs_img {
    width: 40px;
}

.hs_img img {
    width: 100%;
}

.hs_text {
    font-size: 16px;
    color: #000;
    margin-left: 10px;
}

.patient {
    margin-top: 20px;
}

.pt_box {
    display: flex;
    align-items: center;
}

.pt_name {
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.pt_age {
    margin-left: 10px;
    background-color: #dafde3;
    border: 1px solid #60d97f;
    color: #138317;
    font-weight: 600;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 6px;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="email"],
input[type="number"],
textarea,
.form_row input[type="file"],
.lfc_user_row input[type="password"] {
    border: 1px solid #ddd;
    padding: 10px 12px;
    color: #666;
    font-size: 16px;
    background: #fff;
    outline: none;
    height: 35px;
    font-weight: bold;
}

/* consultation button*/
.box {

    height: 80px;
    margin-left: 20px;
}

.btn {
    border-color: #33A8FF;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
    background-color: #33A8FF;
    border-radius: 10px 10px 0px 0px;
    color: white;
    height: 50px;
    font-size: 16px;
    border: none;
    margin-top: 10px;
    cursor: pointer;
    padding: 10px 20px;
    font-weight: bold;
}

.btn1 {
    margin-bottom: -1px;
    background-color: inherit;
    border-radius: 10px 10px 0px 0px;
    color: black;
    height: 50px;
    font-size: 16px;
    border: none;
    margin-top: 10px;
    cursor: pointer;
    padding: 10px 10px;
    font-weight: bold;
}

.btn1:hover {
    color: #33A8FF;
    font-weight: bold;
}


/* form on prescription section*/
.input-container {
    position: relative;
    margin-bottom: 1.5rem;
}

h1 {
    padding-bottom: 30px;
    font-weight: 900;
    font-size: 35px;
}

.form {
    width: 30%;
    position: relative;
    height: 60px;
    overflow: hidden;
}

.form input {
    width: 100%;
    height: 100%;
    color: #fff;
    padding-top: 20px;
    border: none;
    background-color: white;
    color: black;
}

.form label {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-bottom: 1px solid white;
}

.form label::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0px;
    width: 100%;
    height: 100%;
    border-bottom: 3px solid #007BFF;
    transform: translateX(-100%);
    transition: all 0.3s ease;
}

.content-name {
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.content-name1 {
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding-bottom: -5px;
    transition: all 0.3s ease;
}

@media (min-width: 769px) and (max-width: 1200px) {
    .content-name {
        position: absolute;
        bottom: 0px;
        left: 0px;
        padding-bottom: 5px;
        transition: all 0.3s ease;
    }
}

.form input:focus {
    outline: none;
}

.form input:focus+.label-name .content-name,
.form input:valid+.label-name .content-name {
    transform: translateY(-150%);
    font-size: 14px;
    left: 0px;
    color: #007BFF;
}

.form input:focus+.label-name::after,
.form input:valid+.label-name::after {
    transform: translateX(0%);
}

.form input:focus+.label-name .content-name1,
.form input:valid+.label-name .content-name1 {
    transform: translateY(-200%);
    font-size: 14px;
    left: 0px;
    color: #007BFF;
}

.patient_detail {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

th {
    background-color: #0056b3;
    color: white;
}

/* last button */
.submit_details {
    margin-top: 10px;
    text-align: center;
    padding: 30px;
}

.btn-submit-prescription {
    background-color: #007BFF;
    border: 1px solid #007bff;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    padding: 8px 15px;
    font-size: 16px;
    min-width: 150px;
}

.btn-submit-prescription1 {
    background-color: #007BFF;
    border: 1px solid #007bff;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    padding: 8px 15px;
    font-size: 16px;
    margin-left: 10px;
    min-width: 150px;
}

.btn-submit-prescription:hover {
    background-color: #1f84cb;
    /* Change color on hover */
}

.normal-range {
    color: #888;
    font-size: 14px;
    display: none;
    /* Hide by default */
    position: absolute;
    top: 40px;
    /* Position below the input field */
    left: 0;
}

.form-control:focus+.label-name+.normal-range {
    display: block;
    /* Show when input is focused */
}

/* mini side navbar  */

.sidenav {
    height: 60%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #33A8FF;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 16px;
    color: white !important;
    display: block;
    transition: 0.3s;
    cursor: pointer;
}

.sidenav a:hover {
    color: black;
}

.sidenav .closebtn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 36px;
    margin-left: 50px;
    color: #fff;
    background-color: rgba(66, 66, 66, 0.5);
    padding: 0px 14px;
    border-radius: 5px;
}

#main {
    transition: margin-right 0.5s;
    padding: 16px;
    float: right;
}

#main span {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0px 10px;
    border-radius: 5px;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

/*Header starts*/
.main-bg {
    background-image: url("https://images.unsplash.com/photo-1445905595283-21f8ae8a33d2?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=4a7a3c541e25c15f0049d2222aa1d538&auto=format&fit=crop&w=1504&q=80");
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.header-text {
    color: #fff;
    vertical-align: middle;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ht-head {
    font-size: 54px;
    font-weight: 600;
}

.s2-head {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.s3-head {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: blueviolet;
    color: #fff;
}

.s4-head {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: cornflowerblue;
    color: #fff;
}

.s5-head {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: darkorange;
    color: #fff;
}

/*back to top btn*/

#myBtn {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}

#myBtn:hover {
    background-color: #555;
}

/* textbox  section*/

.patient_detail {
    margin-top: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.container1 {
    flex: 1;
    /* Take remaining space */
    margin-right: 10px;

}

.container2 {
    flex: 1;
    margin-right: 10px;
    margin-left: -350px;
}

@media (max-width: 768px) {
    .container2 {
        flex: 1;
        margin-right: 10px;
        margin-left: -280px;
    }
}

.container3 {
    flex: 1;
    margin-right: 10px;
    margin-left: -350px;
}

@media (max-width: 768px) {
    .container3 {
        flex: 1;
        margin-right: 10px;
        margin-left: -280px;
    }
}

.container4 {
    flex: 1;
    margin-right: 10px;
    margin-left: -350px;
}

@media (max-width: 768px) {
    .container4 {
        flex: 1;
        margin-right: 10px;
        margin-left: -280px;
    }
}

.container5 {
    flex: 1;
    margin-right: 10px;
    margin-left: -200px;
}

@media (max-width: 768px) {
    .container5 {
        flex: 1;
        margin-right: 10px;
        margin-left: -160px;
    }
}

.container6 {
    flex: 1;
    margin-right: 10px;
    margin-left: -380px;
}

@media (max-width: 768px) {
    .container5 {
        flex: 1;
        margin-right: 10px;
        margin-left: -160px;
    }
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.label {
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

/* .input-container {
             display: flex;
            justify-content: center;
            align-items: center; 
        } */
.input-container {
    position: relative;
    /* display: inline-block; */
}

.input-container input {
    width: 25%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.normal-range {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #f0f0f0;
    border: 1px solid #ccc;
    padding: 5px;
    font-size: 0.9em;
    color: #333;
    z-index: 10;
}

.input-container input:focus {
    border-color: #66afe9;
    outline: none;
    box-shadow: 0 0 8px rgba(102, 175, 233, 0.6);
}

.input-container input:focus+.normal-range,
.input-container input:not(:placeholder-shown)+.normal-range {
    display: block;
}

.textarea-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5px;
    position: relative;

}

.textarea-container textarea {
    width: 35%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    resize: vertical;
    margin-left: -480px;
}

.textarea-container textarea:focus {
    border-color: #66afe9;
    outline: none;
    box-shadow: 0 0 8px rgba(102, 175, 233, 0.6);
}

.input-label1 {
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 1rem;
    color: black;
    background-color: #fff;
    padding: 0 0.2rem;
    margin-top: -15px;
    font-weight: 600;
    margin-left: -100px;
}

@media (max-width: 768px) {
    .input-label1 {
        font-family: Arial, Helvetica, sans-serif;
        position: absolute;
        left: 0;
        top: -10px;
        font-size: 1rem;
        color: black;
        background-color: #fff;
        padding: 0 0.2rem;
        margin-top: -15px;
        font-weight: 600;
        margin-left: -100px;
    }
}

/* side popup */
#sticky-side {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    right: 0;
    display: flex;
    align-items: center;
}

/* @media (max-width: 768px) {
    #sticky-side {
        display: none;
    }
} */

.contact-btn {
    height: 50px;
    width: 150px;
    background-color: #3f51b5;
    color: #fff;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transform: translateX(50px) rotate(-90deg);
    cursor: pointer;
}

#side-box {
    padding: 10px;
    border: 1px solid #e1e1e1;
    border-right: 0;
    height: auto;
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    background: #fff;
    max-width: 200px;
    margin-right: -200px;
    z-index: 9999;
    transition: all 0.5s;
    box-sizing: border-box;
}

#side-box.open-box {
    margin-right: 0;
}

#side-box .side-header {
    display: block;
    background-color: #3f51b5;
    padding: 0 15px;
    font-size: 20px;
    color: #fff;
    height: 40px;
    line-height: 40px;
    position: relative;
}

#side-box .side-header i {
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.side-header {
    display: flex;
    align-items: center;
}

.close-icon {
    color: red;
    margin-right: 0px;
}

.tick-icon {
    color: white;
    margin-right: 30px;
}

.notesbox {
    width: 100%;
    height: 100px;
    font-weight: bold;
    border: none;
    overflow-y: auto;
    resize: vertical;
    box-sizing: border-box;
}

/* scores sticky */
/* .scores-side {
    position: absolute;
    top: 50%;
    right: 0px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
  }
  .scores-side i {
    font-size: 22px;
  } */

.scores-side {
    position: absolute;
    top: 50%;
    right: 20px;
    z-index: 1100;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.scores-side i {
    font-size: 24px;
}

.side-box {
    position: absolute;
    top: 55%;
    right: 0;
    width: 200px;
    height: 18%;
    background-color: #f4f4f4;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow-y: auto;
    transform: translateY(-50%);
}

.side-box-content {
    padding: 20px;
}

/* dynamic textbox */
h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #343a40;
    text-align: center;
}

.textbox-container {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 100px;
}

.textbox-container label {
    /* margin-right: 10px; */
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    width: 30%;
    margin-left: 5%;
}

.textbox-container input[type="text"] {
    flex-grow: 1;
    padding: 12px;
    margin-right: 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 16px;
    background-color: #f8f9fa;
    color: #495057;
}

.add-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 50%;
}

.delete-button {
    background-color: #dc3545;
    width: 22%;
}

.add-button:hover {
    background-color: #218838;
}

.delete-button:hover {
    background-color: #c82333;
}

/* Popup styles */
#popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

#popupContent {
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#popupContent input[type="text"] {
    width: 90%;
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
}

#popupContent button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

#popupContent button:hover {
    background-color: #0056b3;
}

/* Styling for the dialog section */
.dialog-section {
    background-color: #33A8FF;
    color: white;
    padding: 15px 20px;
    text-align: left;
    font-size: 24px;
    font-weight: bold;
    width: 100%;
    box-sizing: border-box;
}

.dialog-section h1 {
    margin: 0;
    font-size: inherit;
    height: 30px;
}

/* Styling the form container */
.login_form_colored {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
    margin-top: 20px;
}

/* Title styling */
.sign-title {
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: left;
    justify-content: left;

}

.main_title_c1 {
    color: #33A8FF;
}

.underline {
    height: 2px;
    width: 50px;
    background-color: #33A8FF;
    margin: 10px 0 0 0;
    /* Align to the left by setting left margin to 0 */
}

/* Input field styling */
.lfc_user_row label {
    position: relative;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.lfc_user_row .input-group {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.lfc_user_row input[type="text"],
.lfc_user_row input[type="password"] {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    outline: none;
}

.lfc_user_row input[type="text"]:focus,
.lfc_user_row input[type="password"]:focus {
    border-color: #33A8FF;
}

/* Checkbox styling (hidden) */
#hiddenCheckBox {
    display: none;
}

/* Button styling */
.btn.sign-in {
    background-color: #33A8FF;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.btn.sign-in:hover {
    background-color: #33A8FF;
}

/* Forgot password link styling */
.lfc_forget_pass {
    display: inline-block;
    margin-top: 20px;
    font-size: 16px;
    color: #33A8FF;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lfc_forget_pass:hover {
    color: #33A8FF;
}

.json-container {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.json-container input[type="text"] {
    flex-grow: 1;
    padding: 12px;
    margin-right: 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 16px;
    background-color: #f8f9fa;
    color: #495057;
}

.json-container label {
    margin-right: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    width: 30%;
    margin-left: 10%;
}

.tabimg-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-right: 40px;
    position: relative;
    left: 50px;
}

.tabimg-container img {
    width: 200px;
    height: 200px;
    margin: 300px 0;
}

.tabimg-container1 {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-right: 40px;
    position: relative;
    left: 50px;
}

.tabimg-container1 img {
    width: 200px;
    height: 200px;
    margin: -200px 0;
}

.tabimg-container2 {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-right: 40px;
    position: relative;
    left: 50px;
}

.tabimg-container2 img {
    width: 200px;
    height: 200px;
    margin: -200px 0;
}

.tabimg-container3 {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-right: 40px;
    position: relative;
    left: 50px;
}

.tabimg-container3 img {
    width: 200px;
    height: 200px;
    margin: -200px 0;
}

.tabimg-container4 {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-right: 40px;
    position: relative;
    left: 50px;
}

.tabimg-container4 img {
    width: 200px;
    height: 200px;
    margin: -200px 0;
}

/* .tabhome-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-right: 40px; 
    position: relative;
    left: 100px;
  }

  .tabhome-container img {
    width: 200px;
    height: 200px;
    margin: 250px 0;
  }
  .tabhome-container1 {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-right: 40px; 
    position: relative;
    left: 100px; 
  }

  .tabhome-container1 img {
    width: 200px;
    height: 200px;
    margin: -200px 0;
  }
  .tabhome-container2 {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-right: 40px; 
    position: relative;
    left: 50px; 
  }

  .tabhome-container2 img {
    width: 200px;
    height: 200px;
    margin: -200px 0;
  }
  .tabhome-container3 {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-right: 40px; 
    position: relative;
    left: 50px; 
  }

  .tabhome-container3 img {
    width: 200px;
    height: 200px;
    margin: -200px 0;
  }
  .tabhome-container4 {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-right: 40px; 
    position: relative;
    left: 50px; 
  }

  .tabhome-container4 img {
    width: 200px;
    height: 200px;
    margin: -200px 0;
  } */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* overflow-x: hidden;
    overflow-y: hidden; */
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    padding: 0;
    margin: 0;
}

/* nav header */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: #33A8FF;
    color: #fff;
    height: 35px;
}

.navbar-header {
    display: flex;
    align-items: center;
    margin-top: -20px;
}

.logo {
    font-size: 20px;
    margin-left: -50px;
}

#toggle {
    display: none;
}

.toggle {
    font-size: 30px;
    position: fixed;
    left: 20px;
    top: 20px;
    transition: 0.5s;
    cursor: pointer;
    z-index: 1000;
    color: white;
}

.main-menu {
    background: #33a8ff;
    border-right: 1px solid #e5e5e5;
    position: fixed;
    top: 0;
    bottom: 0;
    height: 100%;
    left: 0;
    width: 60px;
    overflow: hidden;
    transition: width 0.5s;
    z-index: 999;
}

.main-menu.open {
    width: 220px;
}

.main-menu ul {
    margin: 7px 0;
}

.main-menu li {
    position: relative;
    display: block;
    width: 250px;
}

.main-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 14px;
    text-decoration: none;
    padding: 10px 20px;
    transition: all 0.3s;
}

.main-menu li i {
    margin-right: 10px;
    font-size: 20px;
}

.main-menu li:hover a,
.main-menu li a:hover,
.main-menu li a:focus,
.main-menu li.active a {
    color: #fff;
    background-color: #2E97E5;
}

.main-menu .nav-text {
    display: none;
    font-size: 16px;
}

.main-menu.open .nav-text {
    display: inline;
}

.main-menu ul.logout {
    position: absolute;
    left: 0;
    bottom: 0;
}

.content {
    margin-left: 50px;
    padding: 20px;
    transition: margin-left 0.5s;
    flex-grow: 1;
}

#toggle:checked~.content {
    margin-left: 210px;
}

@media (max-width: 600px) {
    .main-menu {
        width: 60px;
    }

    .main-menu.open {
        width: 220px;
    }

    .main-menu.open .nav-text {
        display: inline;
    }

    #toggle:checked~.content {
        margin-left: 200px;
    }
}

/* body */
/* .breadcrumb */
.breadcrumb-container {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .breadcrumb-container {
        display: flex;
        align-items: center;
    }
}

.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    margin: 0 5px;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #007BFF;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* body section start */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor_profile {
    width: calc(100% - -200px);
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    padding: 5px 15px;
    margin-top: -40px;
    margin-left: 200px;
    display: flex;
    align-items: center;
}

.doctor_profile img {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    margin-right: 15px;
    background-color: blue;
}

@media (max-width: 768px) {
    .doctor_profile {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 0;
        margin-left: 0;
        text-align: center;
    }

    .doctor_profile img {
        margin-left: 0;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .doctor_profile {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 0;
        margin-left: 0;
        text-align: center;
    }

    .doctor_profile img {
        margin-left: 0;
    }
}


.title {
    background-color: skyblue;
    color: white;
    font-size: 20px;
}

.hospital_profile {
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 50px;
    height: 30px;
    color: black;
    border-radius: 10px;
    width: 600px;
}

@media only screen and (max-width: 768px) {
    .hospital_profile {
        display: none;
    }
}

@media (max-width: 768px) {
    .hospital_profile {
        width: 100%;
        margin-left: 0px;
        flex-direction: column;
        align-items: flex-start;
        height: 60px;
    }

}

@media (min-width: 769px) and (max-width: 1200px) {
    .hospital_profile {
        width: 50%;
        margin-left: -50px;
        flex-direction: column;
        align-items: flex-start;
        height: 60px;
    }
}

/* consultation button*/
.box {
    text-align: center;
    height: 80px;
    margin-left: 20px;
}

.btn {
    border-color: #007bff;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
    background-color: #007bff;
    border-radius: 5px;
    color: white;
    height: 50px;
    font-size: 16px;
    border: none;
    margin-top: 10px;
    cursor: pointer;
    padding: 10px 20px;
    font-weight: bold;
}

.btn1 {
    margin-bottom: -1px;
    background-color: #007bff;
    border-radius: 5px;
    color: white;
    height: 50px;
    font-size: 16px;
    border: none;
    margin-top: 10px;
    cursor: pointer;
    padding: 10px 10px;
    font-weight: bold;
}

.btn1:hover {
    background-color: #0056b3;
    font-weight: bold;
}


/* prescription new section */
.textarea-container1 {
    display: flex;
    align-items: center;
}

.textarea-container1 label {
    margin-right: 10px;

}

.editable {
    flex: 1;
    /* This allows the input to take the remaining space */
}

.title {
    color: #000;
    font-size: 18px;
    background-color: inherit;
    font-weight: 600;
}

.searchbox {
    flex: 1;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 300px;
}

.searchbox:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}

.side-btn {
    font-weight: 600;
    font-size: 16px !important;
    margin-right: 10px;
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 50px;
    height: 40px;
    width: 150px;
    font-family: arial;
}

.side-btn:hover {
    background-color: #0056b3;
}

.radio-container {
    margin-top: 10px;
    display: flex;
    gap: 20px;
    /* Space between radio buttons */
}

.radio-container label {
    display: flex;
    align-items: center;
    gap: 5px;
    /* Space between radio button and text */
}

.remove-icon {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    /* Adjust the size as needed */
    color: red;
    /* Adjust the color as needed */
}

.patient_detail {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

th {
    background-color: #0056b3;
    color: white;
}


/* save button */
.submit_details {
    margin-top: 10px;
    text-align: center;
    padding: 30px;
}

.btn-submit-prescription {
    background-color: #007BFF;
    border: 1px solid #007bff;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    padding: 8px 15px;
    font-size: 16px;
    min-width: 150px;
}

.btn-submit-prescription1 {
    background-color: #007BFF;
    border: 1px solid #007bff;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    padding: 8px 15px;
    font-size: 16px;
    margin-left: 10px;
    width: 20px;
}

.btn-submit-prescription:hover {
    background-color: #1f84cb;
    /* Change color on hover */
}

.input-container {
    position: relative;
    margin-bottom: 1.5rem;
}

/* textbox for complaints */
.form-control {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    font-size: 16px;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}

.input-wrapper {
    display: flex;
    justify-content: center;
    /* Center the entire row */
    align-items: center;
    /* Center items vertically */
}

.input-row {
    display: flex;
    justify-content: space-between;
    /* Allocate space between items */
    align-items: center;
    /* Center items vertically */
    width: 100%;
    max-width: 800px;
    /* Max width to constrain the input row */
    margin-top: 25px;
}

.input-container {
    flex: 0 0 48%;
    /* Adjust width to reduce space between inputs */
    position: relative;
    margin-bottom: 20px;
}

.input-label {
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 1rem;
    color: black;
    background-color: #fff;
    padding: 0 0.2rem;
    margin-top: -15px;
    font-weight: 600;
}

/* Media Queries */

/* Small Devices*/

@media (min-width: 0px) {
    * {
        box-sizing: border-box;
    }

    .title {
        font-size: 30px;
        margin-bottom: 55px;
        text-align: center;
    }

    .audio-recording-container {
        width: 100%;
        height: 100vh;
        /* view port height*/
        /*targeting Chrome & Safari*/
        display: -webkit-flex;
        /*targeting IE10*/
        display: -ms-flex;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /*horizontal centering*/
        align-items: center;
    }

    .start-recording-button {
        font-size: 70px;
        color: #435f7a;
        cursor: pointer;
        opacity: .5;
        margin-bottom: 30px;
    }

    .start-recording-button:hover {
        opacity: 1;
    }

    .recording-contorl-buttons-container {
        /*targeting Chrome & Safari*/
        display: -webkit-flex;
        /*targeting IE10*/
        display: -ms-flex;
        display: flex;
        justify-content: space-evenly;
        /*horizontal centering*/
        align-items: center;
        width: 334px;
        margin-bottom: 30px;
    }

    .cancel-recording-button,
    .stop-recording-button {
        font-size: 70px;
        cursor: pointer;
    }

    .cancel-recording-button {
        color: red;
        opacity: 0.7;
    }

    .cancel-recording-button:hover {
        color: rgb(206, 4, 4);
    }

    .stop-recording-button {
        color: #33cc33;
        opacity: 0.7;
    }

    .stop-recording-button:hover {
        color: #27a527;
    }

    .recording-elapsed-time {
        /*targeting Chrome & Safari*/
        display: -webkit-flex;
        /*targeting IE10*/
        display: -ms-flex;
        display: flex;
        justify-content: center;
        /*horizontal centering*/
        align-items: center;
    }

    .red-recording-dot {
        font-size: 25px;
        color: red;
        margin-right: 12px;
        /*transitions with Firefox, IE and Opera Support browser support*/
        animation-name: flashing-recording-dot;
        -webkit-animation-name: flashing-recording-dot;
        -moz-animation-name: flashing-recording-dot;
        -o-animation-name: flashing-recording-dot;
        animation-duration: 2s;
        -webkit-animation-duration: 2s;
        -moz-animation-duration: 2s;
        -o-animation-duration: 2s;
        animation-iteration-count: infinite;
        -webkit-animation-iteration-count: infinite;
        -moz-animation-iteration-count: infinite;
        -o-animation-iteration-count: infinite;
    }

    /* The animation code */
    @keyframes flashing-recording-dot {
        0% {
            opacity: 1;
        }

        50% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @-webkit-keyframes flashing-recording-dot {
        0% {
            opacity: 1;
        }

        50% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @-moz-keyframes flashing-recording-dot {
        0% {
            opacity: 1;
        }

        50% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @-o-keyframes flashing-recording-dot {
        0% {
            opacity: 1;
        }

        50% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    .elapsed-time {
        font-size: 32px;
    }

    .recording-contorl-buttons-container.hide {
        display: none;
    }

    .overlay {
        position: absolute;
        top: 0;
        height: 100vh;
        width: 100%;
        background-color: rgba(82, 76, 76, 0.35);
        /*targeting Chrome & Safari*/
        display: -webkit-flex;
        /*targeting IE10*/
        display: -ms-flex;
        display: flex;
        justify-content: center;
        /*horizontal centering*/
        align-items: center;
    }

    .overlay.hide {
        display: none;
    }

    .browser-not-supporting-audio-recording-box {
        /*targeting Chrome & Safari*/
        display: -webkit-flex;
        /*targeting IE10*/
        display: -ms-flex;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        /*horizontal centering*/
        align-items: center;
        width: 317px;
        height: 119px;
        background-color: white;
        border-radius: 10px;
        padding: 15px;
        font-size: 16px;
    }

    .close-browser-not-supported-box {
        cursor: pointer;
        background-color: #abc1c05c;
        border-radius: 10px;
        font-size: 16px;
        border: none;
    }

    .close-browser-not-supported-box:hover {
        background-color: #92a5a45c;
    }

    .close-browser-not-supported-box:focus {
        outline: none;
        border: none;
    }

    .audio-element.hide {
        display: none;
    }

    .text-indication-of-audio-playing-container {
        height: 20px;
    }

    .text-indication-of-audio-playing {
        font-size: 20px;
    }

    .text-indication-of-audio-playing.hide {
        display: none;
    }

    /* 3 Dots animation*/
    .text-indication-of-audio-playing span {
        /*transitions with Firefox, IE and Opera Support browser support*/
        animation-name: blinking-dot;
        -webkit-animation-name: blinking-dot;
        -moz-animation-name: blinking-dot;
        -o-animation-name: blinking-dot;
        animation-duration: 2s;
        -webkit-animation-duration: 2s;
        -moz-animation-duration: 2s;
        -o-animation-duration: 2s;
        animation-iteration-count: infinite;
        -webkit-animation-iteration-count: infinite;
        -moz-animation-iteration-count: infinite;
        -o-animation-iteration-count: infinite;
    }

    .text-indication-of-audio-playing span:nth-child(2) {
        animation-delay: .4s;
        -webkit-animation-delay: .4s;
        -moz-animation-delay: .4s;
        -o-animation-delay: .4s;
    }

    .text-indication-of-audio-playing span:nth-child(3) {
        animation-delay: .8s;
        -webkit-animation-delay: .8s;
        -moz-animation-delay: .8s;
        -o-animation-delay: .8s;
    }

    /* The animation code */
    @keyframes blinking-dot {
        0% {
            opacity: 0;
        }

        50% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    /* The animation code */
    @-webkit-keyframes blinking-dot {
        0% {
            opacity: 0;
        }

        50% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    /* The animation code */
    @-moz-keyframes blinking-dot {
        0% {
            opacity: 0;
        }

        50% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    /* The animation code */
    @-o-keyframes blinking-dot {
        0% {
            opacity: 0;
        }

        50% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }
}

/* Medium devices */

@media (min-width: 768px) {}

/* Large devices */

@media (min-width: 992px) {}

/*Ipad pro view*/

/* 
  @media (min-width: 1024px) {
  
  } */

/* Extra Large devices */

@media (min-width: 1200px) {}

.mybody {
    font-family: "droid sans", sans-serif;
    margin: 0;
    padding: 20px;
}

.top-title {
    color: black;
    margin-bottom: 20px;
    text-align: center;
}

.inv-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    overflow-x: auto;
}

.inv-table th {
    border: 1px solid #ddd;
    text-align: center;
    font-size: 20px;
}

.inv-table td {
    border: 2px solid #33A8FF;
    padding: 12px;
    text-align: center;
    font-size: 18px;
}

.inv-table th {
    background-color: #33A8FF;
    color: white;
}

.inv-table td {
    background-color: #f1f1f1;
}

.inv-table td[contenteditable="true"] {
    background-color: #f1f1f1;
}

.inv-table button {
    background-color: #33A8FF;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

button.delete-row {
    background-color: transparent;
    color: #dc3545;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.addRowBtn {
    background-color: green;
    /* Green color */
    font-size: 16px;
    padding: 5px 20px;
    display: block;
    #margin: 20px auto;
    /* Centering the button */
    border-radius: 4px;
}

.card-header {
    padding: 10px;
    border: 2px solid #007BFF;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    background-color: white;
    color: #007BFF;
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    font-weight: bold;
    border-bottom: 2px solid #007bff !important;
}

.card-header .icon {
    font-size: 20px;
    font-weight: bold;
    color: #007bff;
}

.card-body {
    background-color: #f8f9fa;
    display: none;
}

.toggle-item {
    padding: 10px;
    margin: 5px 0;
    border: 2px solid #007BFF;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    background-color: white;
    color: #007BFF;
    text-align: left;
    font-size: 16px;
}

.toggle-item.active {
    background-color: #007BFF;
    color: white;
}

.select-all {
    font-size: 16px;
    font-weight: bold;
}

/* subgroup dropdown  */
.toggle-item-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    box-sizing: border-box;
}

.toggle-item {
    flex: 1;
}

.arrow-icon {
    font-size: 16px;
    color: #333;
    margin-left: 10px;
    line-height: 1;
    cursor: pointer;
}

.nested-group {
    margin-left: 20px;
    display: none;
    padding-left: 10px;
    border-left: 2px dashed #ccc;
}

/* search lab test */
#searchInput {
    width: 300px;
    padding: 10px;
    /* margin-bottom: 10px; */
}

#suggestions {
    border: 1px solid #ddd;
    max-height: 150px;
    overflow-y: auto;
    display: none;
}

#suggestions div {
    padding: 10px;
    cursor: pointer;
    background-color: white;
}

#suggestions div:hover {
    background-color: #f0f0f0;
}

/* Styling for selected items */
.selected-item {
    display: inline-block;
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    margin-right: 5px;
    /* margin-bottom: 5px; */
    font-size: 14px;
}

.selected-item button {
    background-color: transparent;
    border: none;
    color: red;
    font-size: 20px;
    font-weight: bold;
    margin-left: 5px;
    cursor: pointer;
    width: 20px;
}

.selected-items {
    margin-top: 10px;
    margin-left: 100px;
}

/* allergy drugs */
.suggestions-dropdown {
    border: 1px solid #ccc;
    background: #f9f9f9;
    max-height: 150px;
    overflow-y: auto;
    position: absolute;
    width: 300px;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-top: 40px !important;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
}

.suggestion-item:hover {
    background-color: #007bff;
    color: white;
}

.selected-items {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
}

.drug-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5px;
    padding: 5px 5px;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

.close-button {
    margin-left: 10px;
    border: none;
    background: none;
    color: red;
    font-size: 18px;
    cursor: pointer;
}

.close-button:hover {
    color: darkred;
}

/* search drodpdown key press selection  */
.suggestion-item {
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
}

.suggestion-item.highlight {
    background-color: #007bff;
    color: white;
}

.suggestion-item:hover {
    background-color: #007bff;
    color: white;
}

/* chaticon prescription new start*/
.chat-button-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.chat-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #25d366, #128c7e);
    border: none;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, #128c7e, #25d366);
}

.chat-btn:active {
    transform: scale(0.95);
}

/* Pulse animation for attention */
.chat-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Notification dot (optional) */
.chat-btn::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 12px;
    height: 12px;
    background: #ff4444;
    border-radius: 50%;
    border: 2px solid white;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .chat-button-container {
        bottom: 15px;
        right: 15px;
    }

    .chat-btn {
        width: 55px;
        height: 55px;
    }

    .chat-btn i {
        font-size: 18px !important;
    }
}

/* Notification with Arrow */
.chat-notification {
    position: fixed;
    bottom: 110px;
    right: 20px;
    background: linear-gradient(135deg, #38b000, #007f5f);
    /* Green gradient */
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    max-width: 280px;
    animation: slideInNotification 0.5s ease-out;
    transform-origin: bottom right;
}

.chat-notification::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid #007f5f;
    /* Match green bottom color */
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

.chat-notification.hidden {
    display: none;
}

.close-notify {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.close-notify:hover {
    opacity: 1;
}

.chat-notification p {
    margin: 0;
    padding-right: 20px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}

.chat-button-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.chat-btn {
    background-color: #007bff;
    border: none;
    padding: 12px 14px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.chat-modal {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9999;
    max-width: 350px;
    width: 100%;
    font-family: Arial, sans-serif;
}

.chat-modal-content {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 400px;
}

.chat-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #ddd;
    background: linear-gradient(135deg, #38b000, #007f5f);
    /* Added background color */
    color: #fff;
    /* Text color for contrast */
}

.chat-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    background: #f9f9f9;
}

.chat-modal-footer {
    display: flex;
    border-top: 1px solid #ddd;
    padding: 10px;
    background: #fff;
}

.chat-input {
    flex: 1;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.send-btn {
    margin-left: 8px;
    padding: 8px 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.chat-message {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    max-width: 80%;
    word-wrap: break-word;
}

.user-message {
    background-color: white;
    align-self: flex-end;
    text-align: right;
}

.bot-message {
    background-color: #ececec;
    align-self: flex-start;
}

/* dashoard start */
.dashboard-title {
    text-align: center;
    margin: 40px 0 0px;
    font-weight: 600;
    color: #333;
}

.card-custom {
    border: none;
    border-radius: 15px;
    color: #fff;
    padding: 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.label-title {
    font-size: 1rem;
    font-weight: 500;
}

.card-value {
    font-size: 2.2rem;
    font-weight: 600;
}

.card-icon-container {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.card-icon-container i {
    font-size: 1.5rem;
    color: #fff;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, #bdc3c7, #2c3e50);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #f7971e, #ffd200);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.bg-gradient-teal {
    background: linear-gradient(135deg, #1abc9c, #16a085);
}

.bg-gradient-pink {
    background: linear-gradient(135deg, #ff6a88, #ff99ac);
}

.bg-gradient-lab {
    background: linear-gradient(135deg, #00b4db, #0083b0);
}

.chart-container {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); */
    margin-top: 40px;
    width: 500px;
}

.chart-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.chart-btn {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
}

.chart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 17, 203, 0.4);
    color: white;
}

.chart-btn.active {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    box-shadow: 0 4px 15px rgba(17, 153, 142, 0.3);
}

.chart-btn.active:hover {
    box-shadow: 0 6px 20px rgba(17, 153, 142, 0.4);
}

.chart-btn i {
    margin-right: 8px;
}

.chart-canvas-container {
    position: relative;
    height: 400px;
}

.chart-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: none;
}

.chart-canvas.active {
    opacity: 1;
}

/* dashboard end */
.pr-main-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 1400px;
    margin: 0 auto;
}

.pr-main-title {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pr-filters-section {
    background: white;
    /* padding: 5px; */
    /* border-radius: 15px; */
    /* margin-bottom: 30px; */
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
    margin-left: 40px;
}

.pr-filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pr-filter-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.pr-filter-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.pr-filter-input,
.pr-filter-select {
    padding: 12px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.pr-filter-input:focus,
.pr-filter-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.pr-filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pr-filter-button {
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.pr-filter-apply {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

.pr-filter-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.pr-filter-clear {
    background: #e74c3c;
    color: white;
}

.pr-filter-clear:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.pr-download-overall {
    background: #27ae60;
    color: white;
}

.pr-download-overall:hover {
    background: #229954;
    transform: translateY(-2px);
}

.pr-table-wrapper {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-left: 40px;
}

.pr-data-table {
    width: 100%;
    border-collapse: collapse;
}

.pr-table-header {
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.pr-header-cell {
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pr-data-row {
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.pr-data-row:hover {
    background: #f8f9fa;
    transform: scale(1.01);
}

.pr-data-cell {
    padding: 15px;
    color: #2c3e50;
    font-size: 0.9rem;
}

.pr-action-button {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    margin-right: 5px;
}

.pr-action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.pr-button-active {
    background: linear-gradient(45deg, #e74c3c, #c0392b) !important;
}

.pr-download-button {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.pr-download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.pr-expandable-row {
    display: none;
    background: #f8f9fa;
}

.pr-row-visible {
    display: table-row;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pr-expanded-content {
    padding: 25px;
    background: white;
    border-radius: 10px;
    margin: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pr-details-container {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.pr-details-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.pr-details-header {
    background: linear-gradient(45deg, #34495e, #2c3e50);
    position: sticky;
    top: 0;
    background: #f8f9fa;
    z-index: 10;
}

.pr-details-header-cell {
    padding: 8px 12px;
    text-align: left;
    font-weight: bold;
    border-bottom: 2px solid #dee2e6;
    /* background: #f8f9fa; */
}

.pr-details-row:nth-child(even) {
    background-color: #f9f9f9;
}

.pr-details-row:hover {
    background-color: #e8f4fd;
}

.pr-details-data-cell {
    padding: 8px 12px;
    border-bottom: 1px solid #dee2e6;
}

.pr-show-more-info {
    margin-top: 10px;
    padding: 8px;
    background: #e9ecef;
    border-radius: 4px;
    text-align: center;
    font-size: 12px;
    color: #6c757d;
}

/* custom popup alert doctor save prescription */
/* Fullscreen overlay */
.custom-popup-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
}

.custom-popup-box {
    position: relative;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    background: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    padding-top: 50px;
    /* space for close button */
    box-sizing: border-box;
}

.custom-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: transparent;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
    z-index: 10;
}

.custom-popup-scroll {
    overflow-y: auto;
    max-height: calc(80vh - 120px);
    /* makes entire content scrollable */
}

.custom-popup-note {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: left;
}

.custom-popup-table-container {
    overflow-x: auto;
    margin-bottom: 10px;
}

.custom-popup-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-popup-table th,
.custom-popup-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.custom-popup-table th {
    position: sticky;
    top: 0;
    background-color: #007BFF;
    /* header bg color */
    color: #fff;
    /* header text color */
    z-index: 1;
}

.custom-popup-confirm {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.custom-popup-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.custom-popup-btn {
    width: 150px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    cursor: pointer;
}

.custom-popup-btn.ok {
    background: #4CAF50;
    color: #fff;
}

.custom-popup-btn.cancel {
    background: #f44336;
    color: #fff;
}

.imgViewCls {
    height: 50%;
    width: 50%;
}

/* krg css */
 .nat-wrapper {
            /* Colors matched from Image 1 */
            --nat-primary: #1a237e;       /* Deep Indigo Text/Borders */
            --nat-border-color: #1a237e;  /* Deep Indigo Borders */
            --nat-header-bg: #c5cae9;     /* The Periwinkle/Light Indigo background for headers */
            --nat-th-bg: #c5cae9;         /* Same color for Table Headers */
            --nat-risk-bg: #ffebee;
            --nat-risk-border: #c62828;
            --nat-input-border: #9fa8da;  /* Slightly darker input border for visibility */
            
            font-family: 'Segoe UI', 'Arial Narrow', Arial, sans-serif; 
            font-size: 11px; 
            background-color: #f4f6f9; 
            line-height: 1.2;
            color: #000;
        }

        .nat-sheet { 
            background: white; 
            width: 100%; 
            max-width: 1200px; 
            margin: 10px auto; 
            padding: 15px; 
            border: 1px solid #ccc; 
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
        }
        
        /* Borders */
        .nat-b-1 { border: 1px solid var(--nat-border-color) !important; }
        .nat-b-2 { border: 2px solid var(--nat-border-color) !important; }
        .nat-bt-1 { border-top: 1px solid var(--nat-border-color) !important; }
        .nat-br-1 { border-right: 1px solid var(--nat-border-color) !important; }
        .nat-bl-1 { border-left: 1px solid var(--nat-border-color) !important; }
        .nat-bb-1 { border-bottom: 1px solid var(--nat-border-color) !important; }

        /* Inputs */
        .nat-input { 
            border: 1px solid var(--nat-input-border); 
            border-radius: 2px; 
            width: 100%; 
            font-size: 11px; 
            padding: 2px 4px; 
            background: #fff; 
            height: 24px; 
            color: #000; 
        }
        .nat-input:focus { 
            outline: none; 
            border-color: #304ffe; 
            background-color: #f8f9fa; 
            box-shadow: 0 0 0 1px rgba(48, 79, 254, 0.2); 
        }
        
        .nat-textarea { 
            border: 1px solid var(--nat-input-border); 
            border-radius: 2px; 
            width: 100%; 
            font-size: 11px; 
            padding: 4px; 
            background: #fff; 
            color: #000; 
            resize: none; 
        }
        
        /* Radios */
        .nat-radio { width: 14px; height: 14px; margin-top: 0; border: 1px solid var(--nat-border-color); cursor: pointer; }
        .nat-radio:checked { background-color: var(--nat-primary); border-color: var(--nat-primary); }
        
        /* TABLE STYLES */
        .nat-table th, 
        .nat-table td { 
            padding: 4px 3px !important; 
            font-size: 11px !important; 
            vertical-align: middle; 
            border: 1px solid var(--nat-border-color); /* Explicit borders */
        }
        
        .nat-table th { 
            text-align: center; 
            background-color: var(--nat-th-bg) !important; 
            color: var(--nat-primary) !important; 
            font-weight: 700; 
            font-size: 12px !important; 
            text-transform: capitalize;
        }
        
        /* Headers */
        .nat-title { 
            color: var(--nat-primary); 
            font-size: 28px; 
            font-weight: 900; 
            text-transform: uppercase; 
            letter-spacing: 0.5px; 
        }
        .nat-main-heading { 
            background-color: var(--nat-primary); 
            color: white; 
            border: 1px solid var(--nat-border-color); 
            text-align: center; 
            font-weight: bold; 
            padding: 6px; 
            font-size: 15px; 
            margin-top: 10px; 
            border-radius: 2px; 
        }
        .nat-sect-header { 
            text-align: center; 
            font-weight: bold; 
            font-size: 13px; 
            background: var(--nat-header-bg); 
            color: var(--nat-primary); 
            border-bottom: 1px solid var(--nat-border-color); 
            padding: 4px; 
        }
        
        /* Checkbox Lists */
        .nat-cb-wrap { display: flex; flex-wrap: wrap; gap: 8px; font-size: 10px; padding: 2px; }
        .nat-cb-item { white-space: nowrap; display: flex; align-items: center; }
        .nat-cb-item input { margin-right: 3px; accent-color: var(--nat-primary); }
        .nat-lbl { font-weight: bold; white-space: nowrap; margin-right: 5px; color: var(--nat-primary); font-size: 11px; }
        
        /* High Risk & Highlights */
        .nat-hr-box { background-color: var(--nat-risk-bg); border: 1px solid var(--nat-risk-border) !important; }
        .nat-hr-lbl { color: #b71c1c; font-weight: bold; }
        
        .nat-highlight { 
            background-color: white !important; 
            border-left: 2px solid var(--nat-border-color) !important; 
            border-right: 2px solid var(--nat-border-color) !important; 
        }
        .nat-hl-radio { 
            border: 1px solid var(--nat-primary) !important; 
            width: 12px !important; 
            height: 12px !important; 
            cursor: pointer; 
        }
        .nat-hl-radio:checked { 
            background-color: var(--nat-primary); 
            border-color: var(--nat-primary) !important; 
        }
        
        /* Buttons */
        .nat-btn-save { 
            background-color: var(--nat-primary); 
            color: white; 
            padding: 10px 40px; 
            font-size: 14px; 
            font-weight: bold; 
            border: none; 
            border-radius: 4px; 
            cursor: pointer; 
            transition: background 0.3s; 
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .nat-btn-save:hover { background-color: #304ffe; }
        
        .nat-btn-photo { 
            font-size: 11px; 
            padding: 6px 12px; 
            border: 1px solid var(--nat-border-color); 
            background-color: #fff; 
            color: var(--nat-primary); 
            font-weight: bold; 
            border-radius: 4px; 
            cursor: pointer; 
            transition: all 0.2s; 
            display: inline-flex; 
            align-items: center; 
            gap: 5px; 
            height: 32px; 
        }
        .nat-btn-photo:hover { background-color: var(--nat-primary); color: white; }
        .nat-badge { background-color: #c62828; color: white; font-size: 10px; padding: 1px 6px; border-radius: 10px; display: none; }

        /* Gallery */
        .nat-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 15px; }
        .nat-gallery-item { position: relative; width: 100%; height: 120px; border: 1px solid #ddd; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); cursor: pointer; }
        .nat-gallery-item:hover { border-color: var(--nat-primary); box-shadow: 0 4px 8px rgba(26, 35, 126, 0.3); }
        .nat-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.2s; }
        .nat-gallery-item:hover img { transform: scale(1.05); }

        @media print { .no-print { display: none !important; } }