﻿body {
    font-family: 'Poppins', sans-serif;
}

.align-left {
    text-align: left !important;
}

/*. {
    padding-top: 20px;
}*/
.m-t-10 {
    margin-top: 10px;
}
.m-r-10 {
    margin-right: 10px;
}
.m-l-10 {
    margin-left: 10px;
}
.m-b-10 {
    margin-bottom: 10px;
}
.p-l-0{
    padding-left: 0;
}
.p-l-4 {
    padding-left: 4px;
}
.p-r-0{
    padding-right: 0;
}
.d-flex{
    display: flex;
}
.d-block {
    display: block;
}
.align-center{
    align-items: center;
}
.justify-center {
    justify-content: center;
}
.fs-17{
    font-size: 17px;
}
.txt-danger {
    color: #d9534f;
    transition: .3s;
}


.table {
    word-break: break-all;
}

.active > a {
    background-color: #eee;
}

.pointer-none {
    pointer-events: none;
}

.display-none {
    display: none;
}

.display-inline-block {
    display: inline-block !important;
}

.avoid-clicks {
    pointer-events: none;
}

#loader-overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #fdfdfd6b;
    z-index: 3000;
    padding-top: 10px;
    text-align: center;
    display: none;
}

.vertical-text-devider {
    margin: 0px 12px;
    border: none;
    width: 1px;
    background-color: #c8bbbbc7;
    height: 18px;
    padding: 0px;
}

.as-required:after {
    content: " *";
    color: red;
}

.row-tr select, .row-tr input {
    width: 90px !important;
    padding: 0px 3px;
    height: 23px;
    margin: 2px 0px;
}

span.status {
    padding: 1px;
    display: block;
    text-align: center;
    padding: 1px 4px;
    border-radius: 7px;
}

.row-QAPending /*QA Pending*/ {
    background: #f7ffb5 !important;
}

.row-QADecline /*QA Decline*/ {
    background: #ff8585 !important;
    color: #fff;
}

.row-QACallback /*QA Callback*/ {
    background: #6666fb !important;
    color: #fff;
}

.row-QAApproved_ClientPending /*QA Approved / Client Pending*/ {
    background: #ddf5ce !important;
}

.row-ClientDecline /*Client Decline*/ {
    background: #ff8585 !important;
    color: #fff;
}

.row-ClientCallback /*Client Callback*/ {
    background: #6666fb !important;
    color: #fff;
}

.row-ClientApproved_QASecondPending /*Client Approved / QA2 Pending*/ {
    background: #8cbb6f !important;
}

.row-QA2Decline /*QA2 Decline From Stripe*/ {
    background: #ff8585 !important;
    color: #fff;
}

.row-QA2Charge /*QA2 Charge*/ {
    background-color: #5e8447 !important;
    color: #fff;
}

#side-menu {
    overflow-x: hidden;
    height: calc(100vh - 50px);
}

.pad-top-8 {
    padding-top: 8px;
}

.pad-top-20 {
    padding-top: 20px;
}

.pad-top-30 {
    padding-top: 30px;
}

.control-label {
    text-align: left !important;
}

.pad-zero {
    padding: 0px !important;
}

.margin-zero {
    margin: 0px !important;
}

.pad-zero-r {
    padding-right: 0px !important;
}

.filter-block {
    padding: 0px 5px;
}

.search-btn {
    background: #deecde;
    padding: 4px 0px;
    border-radius: 8px;
}

.v-align-center {
    vertical-align: middle !important;
}

.t-align-center {
    text-align: center !important;
}

.select2-container .select2-selection--single {
    height: 29px !important;
}



/*custom*/
.error-msg {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    float: right;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    margin-right: 15px;
}

    .error-msg strong {
        margin-right: 20px;
    }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.dataTables_filter .input-sm {
    margin-left: 7px;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-container--default .select2-selection--single .select2-selection__clear {
    height: 34px !important;
}

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 33px !important;
    }

    .select2-container--default .select2-selection--single:focus {
        outline: none;
    }


/*Loader Start*/
@-webkit-keyframes dyinglight {
    15% {
        -webkit-transform: scale(1.6);
        transform: scale(1.6);
    }

    50% {
        -webkit-transform: rotate(-89deg);
        transform: rotate(-89deg);
    }

    100% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
}

@keyframes dyinglight {
    15% {
        -webkit-transform: scale(1.6);
        transform: scale(1.6);
    }

    50% {
        -webkit-transform: rotate(-89deg);
        transform: rotate(-89deg);
    }

    100% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
}

.dl {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: inline-block;
}

.dl__square {
    display: block;
    width: 35px;
    height: 35px;
    background: var(--loader);
}

.dl__container {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    -webkit-transform-origin: 50% 50% 0;
    transform-origin: 50% 50% 0;
    -webkit-animation: dyinglight 1s ease infinite;
    animation: dyinglight 1s ease infinite;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.dl__corner--top:before,
.dl__corner--top:after,
.dl__corner--bottom:before,
.dl__corner--bottom:after {
    position: absolute;
    width: 13px;
    height: 13px;
    color: var(--loader);
    content: "";
}

.dl__corner--top:before {
    border-left: 1px solid;
    border-top: 1px solid;
    top: -6px;
    left: -6px;
}

.dl__corner--top:after {
    border-right: 1px solid;
    border-top: 1px solid;
    top: -6px;
    right: -6px;
}

.dl__corner--bottom:before {
    border-left: 1px solid;
    border-bottom: 1px solid;
    bottom: -6px;
    left: -6px;
}

.dl__corner--bottom:after {
    border-right: 1px solid;
    border-bottom: 1px solid;
    bottom: -6px;
    right: -6px;
}

.loader-overlay-new {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #fdfdfd8a;
    z-index: 3000;
    padding-top: 10px;
    text-align: center;
}
/*Loader End*/
.marg-l-5 {
    margin-left: 5px;
}

.pad-zero {
    padding: 0px;
}


/*Custom Fields Page*/
.field-drag-option {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

    .field-drag-option li {
        text-align: center;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 8px;
        font-weight: 700;
        padding: 5px;
        margin-bottom: 10px;
        cursor: pointer;
    }

.property-section {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

    .property-section li {
        margin-bottom: 10px;
    }

.field-drag-option li:last-child {
    margin-bottom: 0;
}

.field-drag-option li i {
    margin-bottom: 5px;
}

.field-drag-option li p {
    margin-bottom: 0;
}

.fields-header {
    margin-bottom: 20px;
}

    .fields-header h4 {
        border-bottom: 1px solid #ddd;
        color: #333;
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-align: center;
        padding-bottom: 10px;
    }

.v-flex-center {
    display: flex;
    align-items: center;
}

.anchor-disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.5;
}

.panel-toolbar > button {
    position: absolute;
    right: 20px;
    top: 5px;
}

.row.mb-20 > div {
    margin-bottom: 20px !important;
}

.ellipsis-td {
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100px;
    display: block;
}

table.dataTable thead .sorting:after {
    float: none !important;
}

.pointer-event {
    pointer-events: none;
}

.text-success {
    color: #5cb85c;
    font-weight: bold;
}

.mt-20 {
    margin-top: 20px !important;
}
.mb-5 {
    margin-bottom: 5px !important;
}


.position-relative {
    position: relative;
}

.select2-100 > .select2-container {
    width: 100% !important;
}

.status-columns {
    padding: 0;
    text-align: center;
    vertical-align: middle !important;
}

.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.mw-200 {
    max-width: 200px;
}

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}



/***/
/*toggle switch*/
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.custom-switch {
    display: flex;
    align-items: center;
    top: 51px;
    right: 280px;
    z-index: 9;
}

    .custom-switch .switch-label {
        margin-right: 10px;
        font-weight: 500;
        margin-bottom: 0;
    }

    .custom-switch.custom-switch-sm .switch {
        width: 50px;
        height: 24px;
        margin: 0;
    }

    .custom-switch.custom-switch-sm .slider:before {
        height: 18px;
        width: 17px;
        bottom: 3px;
    }

   .tl-fixed{
       table-layout: fixed;
   }
.table > thead:first-child > tr:first-child > th, .table > tbody > tr > td {
    white-space: nowrap;
}

.table tr th:last-child,
.table tr td:last-child {
    position: sticky;
    right: 0;
    z-index: 11;
    background: #fff;
    box-shadow: 0px 3px 1px #ddd;
}

    .table tr th:last-child:after {
        content: "" !important;
        display: none !important;
    }

.multi-select-scroll .select2-container > .selection > .select2-selection {
    height: 34px;
    overflow-x: hidden;
}