/* Float cancel and delete buttons and add an equal width */

.cancelbtn, .deletebtn {
    float: left;
    width: 50%;
}

/* Add a color to the cancel button */

.cancelbtn {
    background-color: #ccc;
    color: black;
}

/* Add a color to the delete button */

.deletebtn {
    background-color: #f44336;
}

/* Add padding and center-align text to the container */

.deleteModal .container {
    padding: 16px;
    text-align: center;
}

.deleteModal .deleteModal-content {
    max-width: 600px;
    padding: 25px;
}

/* The deleteModal (background) */

.deleteModal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 99;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(71 78 92 / 79%);
    padding-top: 50px;
}

/* deleteModal Content/Box */

.deleteModal-content {
    background-color: #fefefe;
    margin: 5% auto 15% auto;
    /* 5% from the top, 15% from the bottom and centered */
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
}

/* Style the horizontal ruler */

hr {
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;
}

/* The deleteModal Close Button (x) */

.close {
    position: absolute;
    right: 35px;
    top: 15px;
    font-size: 40px;
    font-weight: bold;
    color: #f1f1f1;
}

.close:hover, .close:focus {
    color: #f44336;
    cursor: pointer;
}

/* Clear floats */

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.cancelbtn, .deletebtn {
    border: none;
    display: inline-block;
    padding: 18px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: inherit;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    font-size: 1rem;
    opacity: .8;
}

.cancelbtn {
    color: #000 !important;
    background-color: #9e9e9e !important;
}

.cancelbtn:hover, .deletebtn:hover {
    opacity: 1;
}

.deletebtn {
    color: #fff !important;
    background-color: #f44336 !important;
}

/* Change styles for cancel button and delete button on extra small screens */

@media screen and (max-width: 520px) {
    .cancelbtn, .deletebtn {
        width: 100%;
        padding: 15px 16px;
    }
}

.addMore {
    white-space: nowrap;
}

.addMore input {
    display: inline-block;
}

/******************* Layout Approval Tabs *************************/

.LayoutApprovalTabs {
    margin-right: 15px;
    margin-left: 0px;
}

.LayoutApprovalTabs .layoutTabNav {
    padding-top: 25px;
}

.LayoutApprovalTabs .layoutTabNav::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #4874e4;
}

.LayoutApprovalTabs .layoutTabContent {
    background-color: #FFF;
    margin-top: 25px;
    margin-bottom: 16px;
    padding-left: 33px;
    margin-left: -16px;
}

.LayoutApprovalTabs .layoutTabNav .nav {
    -webkit-flex-direction: column;
    flex-direction: column;
}

.LayoutApprovalTabs .nav-tabs .nav-item {
    display: block;
}

.LayoutApprovalTabs .nav-tabs .nav-item .nav-link {
    display: block;
    position: relative;
    border: none;
    padding: 10px 9px;
    font-size: 1rem;
    color: rgba(255, 255, 255, .6);
}

.LayoutApprovalTabs .nav-tabs .nav-item .nav-link:hover, .LayoutApprovalTabs .nav-tabs .nav-item .nav-link.active {
    /* background: none; */
    color: rgba(255, 255, 255, 1) !important;
}

.LayoutApprovalTabs .nav-tabs .nav-item .nav-link.active {
    color: #4874e4 !important;
}

/* .LayoutApprovalTabs .nav-tabs .nav-item .nav-link::before {
    content: '';
    position: absolute;
    height: 25px;
    width: 25px;
    border-radius: 100%;
    background-color: #f1f1f1;
    top: 50%;
    right: -11px;
    z-index: 1;
    transform: translateY(-50%);
}

.LayoutApprovalTabs .nav-tabs .nav-item .nav-link::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 3px;
    z-index: 1;
    background-color: #f1f1f1;
    top: 0;
    right: 0;
}

.LayoutApprovalTabs .nav-tabs .nav-item .nav-link.active::after, .LayoutApprovalTabs .nav-tabs .nav-item .nav-link.active::before {
    background-color: indigo;
} */

.app-main__inner h2 {
    font-size: 1rem;
    color: #4874e4;
    font-weight: 600;
    padding: 15px 0 5px 0;
    margin-bottom: 0;
}

.architectPic {
    background-color: rgba(217, 221, 231, 1);
    text-align: center;
    padding: 15px;
    position: relative;
}

.architectName {
    font-size: 1.2rem;
    margin-bottom: .8rem;
}

.architectPic img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.textWithRadio>label {
    padding-right: 15px;
}

.documentInput {
    margin-top: 10px;
}

.textWithRadio [type="checkbox"]:checked, .textWithRadio [type="checkbox"]:not(:checked), .textWithRadio [type="radio"]:checked, .textWithRadio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
    width: 0;
    height: 0;
    visibility: hidden;
}

.textWithRadio .checkbox-tools:checked+label {
    background-color: transparent;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
    color: #FFF;
    background-color: #1fb267;
}

.textWithRadio .checkbox-tools+label {
    position: relative;
    display: inline-block;
    padding: 5px 13px;
    font-size: .7rem;
    letter-spacing: 1px;
    margin: 0 auto;
    margin-left: 1px;
    margin-right: 1px;
    margin-bottom: -10px;
    text-align: center;
    border-radius: 0px;
    overflow: hidden;
    cursor: pointer;
    text-transform: uppercase;
    color: #000;
    background-color: #e0e5e7;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

.documentList {
    max-height: 65vh;
    overflow-y: auto;
    padding-bottom: 25px;
}

.plinthDocumentList {
    max-height: auto;
    padding-bottom: 25px;
}

.siteInspection {
    padding-top: 15px;
    display: flex;
}

.siteInspection>div {
    display: block;
}

.siteInspection .insPlanDateInput label {
    margin-top: 8px;
}

.siteInspection .insPlanDateInput {
    padding-left: 15px;
    display: none;
}

.siteInspection .insPlanDateInput button {
    margin-left: 5px !important;
}

.siteInspection .insNewPlan {}

.insNewPlan span {
    font-size: 0.7rem;
    margin-left: 0px;
    margin-top: 0px;
    display: block;
    white-space: nowrap;
}

.insNewPlan:hover span {}

.insNewPlan button {
    font-size: 2rem;
    border-radius: 0;
}

.siteInsPlanListHead {
    cursor: pointer;
    margin-bottom: 0;
    width: 102%;
    padding: 17px;
    margin-left: -15px;
    margin-right: -15px;
}

/* .siteInsPlanListHead:hover {
    background-color: rgba(175, 173, 187, 0.2);
} */

.siteInsPlanListHead span {
    font-size: .8rem;
    text-transform: capitalize;
    font-weight: normal;
    float: right;
}

.paymentDetailsTableDiv {
    width: 100%;
    max-width: 65vw;
    max-height: 50vh;
    overflow: auto;
    position: relative;
    font-size: .75rem;
}

.multiaddDetailsTableDiv {
    width: 100%;
    max-width: 65vw;
    max-height: 50vh;
    overflow: auto;
    position: relative;
    font-size: .75rem;
}
.paymentDetailsTableDiv input {
    border-radius: 0;
    min-width: 100px;
    width: 100% !important;
    height: 100% !important;
    border: 0;
    padding: 0 10px;
    text-align: right;
    background: transparent;
    font-size: .8rem;
}

.paymentDetailsTableDiv p {
    min-width: 100px;
    width: 100% !important;
    height: 100% !important;
    border: 0;
    padding: 0 10px;
    margin: 0;
    text-align: right;
    background: transparent;
    font-size: .8rem;
}

.paymentDetailsTableDiv td.paymentStatic {
    background-color: #e0e5e7;
}

.paymentDetailsTableDiv input:focus {
    outline: none !important;
    box-shadow: none;
    background: transparent;
}

.paymentDetailsTableDiv table {
    position: relative;
    border-collapse: collapse;
}

.paymentDetailsTableDiv th {
    padding: 0.25rem;
    vertical-align: middle;
}

.paymentDetailsTableDiv td {
    padding: 0;
}

.paymentDetailsTableDiv thead th {
    position: -webkit-sticky;
    /* for Safari */
    position: sticky;
    top: 0;
    background: #4874e4;
    color: #FFF;
    line-height: 15px;
    text-align: center;
    padding: 7px 5px;
}

.paymentDetailsTableDiv thead th:first-child {
    left: 0;
    z-index: 1;
    border-right: 1px solid rgba(0, 0, 0, 0.4);
}

.paymentDetailsTableDiv tbody th {
    position: -webkit-sticky;
    /* for Safari */
    position: sticky;
    left: 0;
    background: #FFF;
    border-right: 1px solid rgba(0, 0, 0, 0.4);
}

.paymentDetailsTableDiv tbody th span {
    display: block;
    width: 150px;
    margin-bottom: 5px;
}

.toalEstimateAmount {
    font-size: 1.2rem;
    color: #4874e4;
    font-weight: bold;
    margin: 0;
}

.inputText {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #eaedf2;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

.estimationAmount {
    font-size: 1.1rem !important;
}

.OSRASurrender label {
    font-size: 1.2rem;
}

.OSRASurrender p {
    margin: 0;
    margin-top: 8px;
}

.OSRASurrender input {
    margin-left: 5px !important;
    margin-right: 15px !important;
}

.workCheckList span {
    padding-right: 15px;
}

.layoutTabContent>.tab-content>.tab-pane {
    padding-top: 15px;
}

.paymentCard {
    margin-bottom: 10px;
}

.emptyLabel {
    display: block;
}

.labelReadOnly label {
    font-weight: bold;
    margin-top: 0;
}

.labelReadOnly p {
    padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
    margin-top: 0;
}

.labelReadOnly .form-group {
    margin-bottom: 0;
}

.attachedFile {
    display: inline-block;
}

.attachedFile a {
    position: relative;
    display: inline-block;
    padding: 3px 12px 3px 6px;
    margin-bottom: 0;
    margin-right: 0;
    background: #f7f7f7;
    color: #4d4d4c;
    font-family: Calibri;
    font-size: 12px;
    transition: all .1s ease;
}

.attachedFile a:hover {
    background: rgb(226, 227, 230);
    color: #2c2e31;
}

.attachedFile .attachedFile-icon {
    font-size: 14px;
    color: #48A0DC;
    margin-right: 4px;
    margin-top: 2px;
}

.attachedFile .attachedFile-title {
    font-weight: bold;
    margin-top: 4px;
    color: #4d4d4c;
}

.attachedFile .pull-left {
    float: left;
}

.radioReadOnly {
    position: relative;
    display: inline-block;
    padding: 5px 13px;
    font-size: .7rem;
    letter-spacing: 1px;
    margin: 0 auto;
    margin-left: 1px;
    margin-right: 1px;
    margin-bottom: -10px;
    text-align: center;
    border-radius: 0px;
    overflow: hidden;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
}

.radioReadOnly.yes {
    color: #FFF;
    background-color: #1fb267;
}

.radioReadOnly.no {
    color: #FFF;
    background-color: #d83823;
}

.totalAmt {
    font-size: 1rem;
}

.totalAmt span {
    font-size: 2rem;
    font-weight: bold;
}

.totalAmt span i {
    font-size: 1.8rem;
}

.totalAmtbtn {
    margin-top: 14px !important;
}

.demandTable .form-control:disabled, .demandTable .form-control[readonly] {
    background: transparent;
    opacity: 1;
}

.multiaddTable .form-control:disabled, .multiaddTable .form-control[readonly] {
    background: transparent;
    opacity: 1;
}

.workflowTimeline {
    padding: 75px 25px 0 15px;
}

.smallMultiUploader .jFiler-theme-default .jFiler-input {
    width: 250px;
}

.tableDiv {
    width: 100%;
    max-width: 65vw;
    max-height: 50vh;
    overflow: auto;
    position: relative;
    font-size: .75rem;
}

.plinthTableDiv {
    width: 100%;
    max-width: 65vw;
    max-height: 100% !important;
    overflow-x: auto;
    overflow-y: visible;
    position: relative;
    font-size: .75rem;
}

.tableDiv input {
    min-width: 100px;
    width: 100% !important;
    height: 100% !important;
}

.tableDiv p {
    min-width: 100px;
    width: 100% !important;
    height: 100% !important;
    border: 0;
    padding: 0 10px;
    margin: 0;
    font-size: .8rem;
}

.tableDiv table {
    position: relative;
    border-collapse: collapse;
}

.tableDiv th {
    padding: 0.25rem;
    vertical-align: middle;
}

.tableDiv td {}

.tableDiv thead th {
    position: -webkit-sticky;
    /* for Safari */
    position: sticky;
    top: 0;
    background: #4874e4;
    color: #FFF;
    line-height: 15px;
    text-align: center;
    padding: 7px 5px;
}

.tableDiv thead th:first-child {
    left: 0;
    z-index: 1;
    border-right: 1px solid rgba(0, 0, 0, 0.4);
}

.tableDiv tbody th {
    position: -webkit-sticky;
    /* for Safari */
    position: sticky;
    left: 0;
    background: #FFF;
    border-right: 1px solid rgba(0, 0, 0, 0.4);
}

.stage {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem 0;
    margin: 0;
    overflow: hidden;
    width: 100%;
    top: 45%;
}

.loader {
    position: absolute;
    z-index: 9999;
    background-color: rgba(255, 255, 255, .8);
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.loader span {
    display: block;
    margin-top: 33px;
    margin-left: -38px;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
}

.loader .dot-stretching {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #9880ff;
    color: #9880ff;
    transform: scale(1.25, 1.25);
    -webkit-animation: dot-stretching 1s infinite ease-in;
    animation: dot-stretching 1s infinite ease-in;
}

.loader .dot-stretching::after {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #9880ff;
    color: #9880ff;
    -webkit-animation: dot-stretching-after 1s infinite ease-in;
    animation: dot-stretching-after 1s infinite ease-in;
}

.loader .dot-stretching::before {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #9880ff;
    color: #9880ff;
    -webkit-animation: dot-stretching-before 1s infinite ease-in;
    animation: dot-stretching-before 1s infinite ease-in;
}

.loader .dot-stretching::before, .dot-stretching::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
}

@-webkit-keyframes dot-stretching {
    0% {
        transform: scale(1.25, 1.25);
    }
    50%, 60% {
        transform: scale(0.8, 0.8);
    }
    100% {
        transform: scale(1.25, 1.25);
    }
}

@keyframes dot-stretching {
    0% {
        transform: scale(1.25, 1.25);
    }
    50%, 60% {
        transform: scale(0.8, 0.8);
    }
    100% {
        transform: scale(1.25, 1.25);
    }
}

@-webkit-keyframes dot-stretching-before {
    0% {
        transform: translate(0) scale(0.7, 0.7);
    }
    50%, 60% {
        transform: translate(-20px) scale(1, 1);
    }
    100% {
        transform: translate(0) scale(0.7, 0.7);
    }
}

@keyframes dot-stretching-before {
    0% {
        transform: translate(0) scale(0.7, 0.7);
    }
    50%, 60% {
        transform: translate(-20px) scale(1, 1);
    }
    100% {
        transform: translate(0) scale(0.7, 0.7);
    }
}

@-webkit-keyframes dot-stretching-after {
    0% {
        transform: translate(0) scale(0.7, 0.7);
    }
    50%, 60% {
        transform: translate(20px) scale(1, 1);
    }
    100% {
        transform: translate(0) scale(0.7, 0.7);
    }
}

@keyframes dot-stretching-after {
    0% {
        transform: translate(0) scale(0.7, 0.7);
    }
    50%, 60% {
        transform: translate(20px) scale(1, 1);
    }
    100% {
        transform: translate(0) scale(0.7, 0.7);
    }
}

/*************************** Building Block details table  **********************************/

.blockDetailsTable td {
    padding: 5px;
}

.blockDetailsTable .form-control {
    line-height: .7rem;
}

.input-group-prepend label {
    margin: 0;
}

.reasonInput {
    margin-top: 10px;
}
.dataTables_wrapper.form-inline{
	display: block !important;
}
.form-inline label{
	display: inline-block !important;
}
.dataTables_wrapper table{width:100% !important;}

.dataTable tbody td:NTH-LAST-CHILD(1) {
	white-space: nowrap;	
}

/*For Feedback*/

@font-face {
            font-family: FAIcons;
            src: url(../fonts/FontAwesome.otf);
        }

        .rate {
            display: inline-block;
            border: 0;
        }

        .rate>input {
            display: none;
        }

        .rate>label {
            float: right;
        }

        .rate>label:before {
            display: inline-block;
            font-size: 4rem;
            padding: .3rem .2rem;
            margin: 0;
            cursor: pointer;
            font-family: FAIcons;
            content: "\f005 ";
        }

        .rate .half:before {
            content: "\f089 ";
            position: absolute;
            padding-right: 0;
        }

        input:checked~label,
        label:hover,
        label:hover~label {
            color: #ce8401;
        }

        input:checked+label:hover,
        input:checked~label:hover,
        input:checked~label:hover~label,
        label:hover~input:checked~label
            {
            color: #ffb83b;
        }

        .feedBackModal {
            position: absolute;
            width: 500px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) !important;
        }

        .feedBackModal::before {
            content: "";
            position: absolute;
            width: 110%;
            height: 150px;
            top: -7%;
            left: -5%;
            background-color: #4874e4;
            opacity: .75;
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
        }

        .feedBackModal .close {
            color: #000;
        }
        .dataTables_wrapper .col-sm-12{
             overflow-x:auto; 
        }
        
        .dashboardBlock a:hover {
            text-decoration: none;
        }
        
        .dashboardBlock .widget-heading {
            font-size: 1.5rem;
        }
        
        .dashboardBlock .widget-subheading {
            opacity: 1 !important;
            font-size: 1rem !important;
        }
        
        .dashboardBlock {
            transition: all .2s ease;
        }
        
        .dashboardBlock:hover {
            transform: translateY(0px) scale(1.05);
        }
        
        .sidebarLogo{
        	display:none;
        }