@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
@import url("font-face/stylesheet.css");
/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 */
*, ::after, ::before {
    box-sizing: border-box;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

img {
    border: 0;
    height: auto;
    max-width: 100%;
}
.display-none {
    display: none !important;
}

.modal.addcallnotes.modal--callNotes {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/**
 * Basic styles for links
 */
a {
    color: #0A7BF6;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

    a:hover {
        color: #0979f2;
        text-decoration: none;
        outline: 0;
    }

label {
    cursor: pointer;
}

strong, b {
    font-family: "aileronbold";
}

#firstPage, #lastPage {
    width: 24px;
    height: 24px;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

#firstPage {
    background-image: url('../images/first-page-2.svg');
}

#lastPage {
    background-image: url('../images/last-page-2.svg');
} 

img, svg {
    vertical-align: middle;
}

sub, sup {
    position: relative;
    font-size: 10px;
    line-height: 0;
    vertical-align: baseline;
}

sup {
    top: -5px;
}

sub {
    bottom: -5px;
}

[role=button] {
    cursor: pointer;
}

/**
 * Basic typography style for copy text
 */
body {
    font-family: "aileronregular";
    font-size: 16px;
    color: #000;
    line-height: 1.5;
    background-color: #f2f5fa;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: #000;
    font-family: "aileronbold";
    margin-top: 0;
    margin-bottom: 10px;
}

p {
    margin-top: 0;
    margin-bottom: 10px;
}

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 10px;
}

/**
 * Clear inner floats
 */
.clear::after {
    content: "";
    display: block;
    clear: both;
}

/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */
.container {
    max-width: 1170px;
}

.btn {
    font-family: inherit;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 13px 20px 11px 20px;
}

.btn-primary {
    color: #fff;
    border: 1px solid rgba(10, 123, 246, 0.99);
    background-color: #0a7bf6;
}

    .btn-primary:hover {
        color: #fff;
        background-color: black;
        background-color: #000;
        border-color: transparent;
        box-shadow: none;
    }

.btn-primary--black {
    border-color: black;
    background-color: black;
}

    .btn-primary--black:hover {
        border-color: #0a7bf6;
        background-color: #0a7bf6;
    }

.btn-primary--green {
    border-color: #08d26f;
    background-color: #08d26f;
}

    .btn-primary--green:hover {
        border-color: #0a7bf6;
        background-color: #0a7bf6;
        color: white;
    }

.btn-primary--orange {
    border-color: #ff7700;
    background-color: #ff7700;
}

.btn-primary--black {
    border-color: #363637;
    background-color: #363637;
}

.btn-primary--red {
    border-color: #ff0606;
    background-color: #ff0606;
}

.btn-primary--gray {
    color: #363637;
    border: 1px solid #363637;
    background: #E5E7EB;
}

.btn-primary.disabled {
    border-color: rgba(54, 54, 55, 0.1);
    background-color: rgba(54, 54, 55, 0.3);
    pointer-events: none;
}

.btn-outline-primary {
    color: #000;
    background-color: transparent;
    border: 1px solid #000;
}

    .btn-outline-primary:after {
        font-family: "Font Awesome 6 Pro";
        font-weight: 400;
        margin-left: 10px;
    }

    .btn-outline-primary:hover {    
        color: #fff;
        background-color: #000;
    }

.disable-upload-container {
    pointer-events: none;
    background-color: lightgray !important
}
.text-black {
    color: black !important;
}

.color-white {
    color: white
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

    input:focus, select:focus, textarea:focus {
        outline: none;
        box-shadow: none;
    }

.form-control {
    font-family: inherit;
    font-size: 16px;
    color: black;
    width: 100%;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    background-color: #F2F5FA;
    height: 50px;
    display: block;
    padding: 0 19px;
}

    .form-control::-webkit-input-placeholder {
        color: #999999;
    }

    .form-control:-moz-placeholder {
        color: #999999;
    }

    .form-control::-moz-placeholder {
        color: #999999;
    }

    .form-control:-ms-input-placeholder {
        color: #999999;
    }

    .form-control:focus {
        border: 1px solid #0A7BF6;
        outline: 0;
        box-shadow: none;
    }

.form-control--white {
    font-size: 16px;
    background-color: #fff;
    height: 42px;
}

.form-control--date {
    padding: 0 35px 0 19px;
}

.form-control--bold {
    color: #363637;
}

    .form-control--bold::-webkit-input-placeholder {
        color: #363637;
    }

    .form-control--bold:-moz-placeholder {
        color: #363637;
    }

    .form-control--bold::-moz-placeholder {
        color: #363637;
    }

    .form-control--bold:-ms-input-placeholder {
        color: #363637;
    }

.form-control--colorBlack {
    color: #363637;
}

    .form-control--colorBlack::-webkit-input-placeholder {
        color: #363637;
    }

    .form-control--colorBlack:-moz-placeholder {
        color: #363637;
    }

    .form-control--colorBlack::-moz-placeholder {
        color: #363637;
    }

    .form-control--colorBlack:-ms-input-placeholder {
        color: #363637;
    }

input[type=date i] {
    font-size: 15px;
    padding: 0 10px;
}

    input[type=date i]::-webkit-calendar-picker-indicator {
        width: 14px;
        height: 16px;
        background-image: url("../images/input-date-icn.svg");
    }

.custom-select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("../images/select-arrow.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 22px auto;
    padding: 0 22px 0 19px;
}

    .custom-select::-ms-expand {
        display: none;
    }

    .custom-select:focus {
        background-image: url("../images/select-arrow-down.png");
    }

.custom-select--white {
    background-color: #fff;
    height: 50px;
}

input[type=radio] {
    width: 20px;
    height: 20px;
    outline: 0;
    cursor: pointer;
    margin: -4px 0 0 0;
    appearance: none;
    vertical-align: middle;
    border: 2px solid #000000;
    border-radius: 100%;
    position: relative;
    display: inline-block;
    background-color: transparent;
}

    input[type=radio]::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        background-image: none;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #0A7BF6;
        transform: translate(-50%, -50%);
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        opacity: 0;
    }

    input[type=radio]:checked::before {
        opacity: 1;
    }

    input[type=radio]:disabled {
        cursor: not-allowed;
        background-color: grey;
    }

input[type=checkbox]:not(.fancyCheckbox) {
    width: 20px;
    height: 20px;
    outline: 0;
    cursor: pointer;
    margin: -4px 0 0 0;
    appearance: none;
    vertical-align: middle;
    border: 2px solid #363637;
    border-radius: 3px;
    position: relative;
    display: inline-block;
    background-color: transparent;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

    input[type=checkbox]:not(.fancyCheckbox)::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        background-image: none;
        width: 8px;
        height: 14px;
        margin-top: -9px;
        margin-left: -4px;
        -webkit-transition: all 0.1s ease-in-out;
        -moz-transition: all 0.1s ease-in-out;
        -ms-transition: all 0.1s ease-in-out;
        -o-transition: all 0.1s ease-in-out;
        transition: all 0.1s ease-in-out;
        border-style: solid;
        border-color: #fff;
        border-width: 0 2px 2px 0;
        opacity: 0;
        transform: rotate(45deg);
    }

    input[type=checkbox]:not(.fancyCheckbox):checked {
        border-color: #0A7BF6;
        background: #0A7BF6;
        color: #fff;
    }

        input[type=checkbox]:not(.fancyCheckbox):checked::before {
            opacity: 1;
        }

    input[type=checkbox]:not(.fancyCheckbox):disabled {
        background-color: grey;
        cursor: not-allowed;
    }

.checkbox-switch {
    width: 33px;
    height: 20px;
    position: relative;
}

    .checkbox-switch input[type=checkbox] {
        opacity: 0;
        width: 0;
        height: 0;
        visibility: hidden;
    }

    .checkbox-switch .checkbox-slide {
        position: absolute;
        border: 2px solid #E5E7EB;
        border-radius: 100px;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

        .checkbox-switch .checkbox-slide:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 0px;
            bottom: -1px;
            background-color: white;
            box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
            border-radius: 100px;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }

    .checkbox-switch input[type=checkbox]:checked + .checkbox-slide {
        background-color: #0A7BF6;
        border: 2px solid #0A7BF6;
    }

        .checkbox-switch input[type=checkbox]:checked + .checkbox-slide:before {
            -webkit-transform: translateX(12px);
            -ms-transform: translateX(12px);
            transform: translateX(12px);
        }

textarea.form-control {
    min-height: 150px;
    padding: 15px 19px 15px 19px;
    resize: none;
}

    textarea.form-control.h-120 {
        min-height: 120px;
    }

    textarea.form-control.h-50 {
        min-height: 50px;
    }

* {
    /*background-color: rgba(red, 0.10);*/
}

/* Body BG for Login Screens */
body.login-screen {
    height: 100vh;
    background: url("../images/login-screen-bg.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

    body.login-screen .wrapper {
        display: flex;
    }

/* wrapper */
#wrapper {
    position: relative;
    width: 100%;
    min-height: 100%;
    height: 100%;
}

.panel__left {
    z-index: 8;
}

.panel__top {
    z-index: 9;
}

/* Login */
.login {
    max-width: 524px;
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    margin: auto;
}

.login__wrap {
    border-radius: 16px;
    background-color: rgba(0, 0, 0, 0.75);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1607843137);
    padding: 20px 15px 20px 15px;
    margin: 20px 0;
}

@media (min-width: 375px) {
    .login__wrap {
        padding: 30px 30px 31px 30px;
    }
}

.login__logo {
    text-align: center;
    margin-bottom: 26px;
}

.login__form-group {
    margin-bottom: 15px;
}

.login__form-group--viewpass {
    position: relative;
}

.login__form-group-eye {
    position: absolute;
    top: 20px;
    right: 10px;
    width: 13px;
    height: 11px;
    background-image: url("../images/password-hide-icn.svg");
    cursor: pointer;
}

.login__form-group--full {
    width: 100%;
}

.login__form-group--no-gap {
    margin-bottom: 0;
}

.login .form-control {
    height: 50px;
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    background-color: #fff;
    color: #000;
}

    .login .form-control::-webkit-input-placeholder {
        color: black;
    }

    .login .form-control:-moz-placeholder {
        color: black;
    }

    .login .form-control::-moz-placeholder {
        color: black;
    }

    .login .form-control:-ms-input-placeholder {
        color: black;
    }

.login .form-control--select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("../images/select-arrow.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 22px 6px;
}

    .login .form-control--select:focus {
        background-image: url("../images/select-arrow-down.png");
    }

.login__forget-pass {
    font-size: 14px;
}

    .login__forget-pass a {
        color: #fff;
    }

.login__btns {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

@media (min-width: 375px) {
    .login__btns {
        display: flex;
        justify-content: space-between;
    }
}

.login__btns--center {
    justify-content: center;
}

.login__error-msg {
    font-family: "aileronbold";
    font-size: 14px;
    color: #FF0000;
    margin-top: 19px;
}

.login [class*=login__btn-] {
    font-family: "aileronbold";
    font-size: 16px;
    border-radius: 20px;
    text-transform: uppercase;
    display: inline-block;
    line-height: 1.5;
}

@media (max-width: 374px) {
    .login [class*=login__btn-] {
        text-align: center;
    }
}

.login__btn-primary {
    color: #000;
    background-color: #fff;
    padding: 9px 38px 7px 39px;
}

.login__btn-primary--sml-spc {
    padding: 11px 25px 9px 25px;
}

.login__btn-outline-primary {
    color: #fff;
    border: 1px solid #fff;
    padding: 8px 33px 6px 32px;
}

.login__btn-outline-primary--sml-spc {
    padding: 11px 25px 9px 25px;
}

.login__row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -7.5px;
    margin-left: -7.5px;
}

    .login__row > * {
        width: 100%;
        padding-right: 7.5px;
        padding-left: 7.5px;
    }

@media (min-width: 576px) {
    .login__row > * {
        width: 50%;
    }
}

.login__msg {
    font-family: "aileronbold";
    font-size: 18px;
    color: #fff;
    text-align: center;
    line-height: 1.3;
}

@media (min-width: 374px) {
    .login__msg {
        font-size: 21px;
    }
}

.login__msg > * {
    margin-bottom: 0;
}

.login__msg [class*=login__btn-] {
    padding: 11px 25px 9px 25px;
    margin-top: 17px;
}

.login--sign-up {
    max-width: 779px;
}

    .login--sign-up .login__form-group--full {
        width: 100%;
    }

.login--msg {
    max-width: 624px;
}

.login--atmpt {
    max-width: 464px;
}

.login__logmsg {
    text-align: center;
    margin-bottom: 15px;
}

.login__logmsg-ttl {
    font-family: "aileronbold";
    font-size: 18px;
    color: #fff;
}

@media (min-width: 374px) {
    .login__logmsg-ttl {
        font-size: 21px;
    }
}

.login__logmsg p {
    font-size: 14px;
    color: #fff;
}

.login__logmsg > * {
    margin-bottom: 0;
}

.login__knowpass {
    text-align: center;
    border-top: 1px solid #fff;
    font-size: 14px;
    color: #fff;
    padding-top: 19px;
    margin-top: 23px;
}

    .login__knowpass a {
        color: inherit;
        text-decoration: underline;
    }

.login--reset-pass {
    max-width: 664px;
}

/* Full Panel */
.panel {
    padding: 12px;
}

.panel__wrap {
    display: flex;
}

.panel__left {
    width: 250px;
    height: calc(100% - 24px);
    flex-shrink: 0;
    background-color: #000;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    position: fixed;
    padding: 20px 0px 10px 0px;
}

.panel__left-open {
    position: absolute;
    top: 20px;
    right: 0;
    width: 20px;
    height: 40px;
    background-image: url("../images/panel-left-close-icn.svg");
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
}

    .panel__left-open.close {
        background-image: url("../images/panel-left-open-icn.svg");
    }

.panel__left-logo {
    height: 50px;
    padding: 0 10px 10px 30px;
    margin-bottom: 8px;
}

.panel__left-menu {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-y: scroll;
}

    .panel__left-menu::-webkit-scrollbar {
        width: 0px;
        background: transparent; /* Disable scrollbar Chrome/Safari/Webkit */
    }

    .panel__left-menu > ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
    }

        .panel__left-menu > ul > li {
            border-bottom: 1px solid #404040;
        }

            .panel__left-menu > ul > li:first-child {
                border-top: 1px solid #404040;
            }

            .panel__left-menu > ul > li > a {
                color: #fff;
                border-left: 5px solid transparent;
                display: block;
                padding: 13px 25px 12px 25px;
            }

                .panel__left-menu > ul > li > a svg {
                    display: inline-block;
                    margin-top: -3px;
                    margin-right: 9px;
                }

                    .panel__left-menu > ul > li > a svg path {
                        fill: #fff;
                        -webkit-transition: all 0.3s ease-in-out;
                        -moz-transition: all 0.3s ease-in-out;
                        -ms-transition: all 0.3s ease-in-out;
                        -o-transition: all 0.3s ease-in-out;
                        transition: all 0.3s ease-in-out;
                    }

                .panel__left-menu > ul > li > a.accordion-toggle {
                    position: relative;
                }

                    .panel__left-menu > ul > li > a.accordion-toggle::after {
                        content: "";
                        width: 0;
                        height: 0;
                        border-style: solid;
                        border-width: 6px 6px 0 6px;
                        border-color: #fff transparent transparent transparent;
                        display: inline-block;
                        position: absolute;
                        top: 24px;
                        right: 29px;
                        -webkit-transition: all 0.3s ease-in-out;
                        -moz-transition: all 0.3s ease-in-out;
                        -ms-transition: all 0.3s ease-in-out;
                        -o-transition: all 0.3s ease-in-out;
                        transition: all 0.3s ease-in-out;
                        transform: rotate(-90deg);
                    }

                    .panel__left-menu > ul > li > a.accordion-toggle.accordion-open::after {
                        transform: rotate(0deg);
                    }

            .panel__left-menu > ul > li:hover a, .panel__left-menu > ul > li.accordion-open a {
                color: #0A7BF6;
                border-left: 5px solid #0A7BF6;
            }

                .panel__left-menu > ul > li:hover a svg path, .panel__left-menu > ul > li.accordion-open a svg path {
                    fill: #0A7BF6;
                }

                .panel__left-menu > ul > li:hover a.accordion-toggle::after, .panel__left-menu > ul > li.accordion-open a.accordion-toggle::after {
                    border-color: #0A7BF6 transparent transparent transparent;
                }

                .panel__left-menu > ul > li.accordion-open a.accordion-toggle::after {
                    transform: rotate(0deg);
                }

            .panel__left-menu > ul > li.active a {
                font-family: "aileronbold";
            }

            .panel__left-menu > ul > li > .links-inner {
                list-style: none;
                padding-left: 60px;
                margin-top: -1px;
                margin-bottom: 17px;
            }

                .panel__left-menu > ul > li > .links-inner li:not(:last-child) {
                    margin-bottom: 10px;
                }

                .panel__left-menu > ul > li > .links-inner li a {
                    display: block;
                    color: #fff;
                    border: 0;
                    font-weight: normal;
                }

                .panel__left-menu > ul > li > .links-inner li:hover a, .panel__left-menu > ul > li > .links-inner li.active a {
                    color: #0A7BF6;
                }

            .panel__left-menu > ul > li .admin-inner {
                list-style: none;
                padding: 0 19px 0 42px;
                margin-top: 1px;
                margin-bottom: 17px;
            }

                .panel__left-menu > ul > li .admin-inner > li:not(:last-child) {
                    margin-bottom: 10px;
                }

                .panel__left-menu > ul > li .admin-inner > li > .styled-handle {
                    font-family: "aileronbold";
                    background: rgba(64, 64, 64, 0.65);
                    border-radius: 8px;
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    padding: 10px 27px 7px 20px;
                }

                .panel__left-menu > ul > li .admin-inner > li > a {
                    color: #fff;
                    display: block;
                    white-space: nowrap;
                    overflow: hidden;
                    border: 0;
                    text-overflow: ellipsis;
                }

                    .panel__left-menu > ul > li .admin-inner > li > a.accordion-toggle {
                        position: relative;
                    }

                        .panel__left-menu > ul > li .admin-inner > li > a.accordion-toggle::after {
                            content: "";
                            width: 0;
                            height: 0;
                            border-style: solid;
                            border-width: 6px 6px 0 6px;
                            border-color: #fff transparent transparent transparent;
                            display: inline-block;
                            margin-left: 15px;
                            position: absolute;
                            top: 18px;
                            right: 10px;
                            -webkit-transition: all 0.3s ease-in-out;
                            -moz-transition: all 0.3s ease-in-out;
                            -ms-transition: all 0.3s ease-in-out;
                            -o-transition: all 0.3s ease-in-out;
                            transition: all 0.3s ease-in-out;
                            transform: rotate(-90deg);
                        }

                        .panel__left-menu > ul > li .admin-inner > li > a.accordion-toggle.accordion-open::after {
                            transform: rotate(0deg);
                        }

                .panel__left-menu > ul > li .admin-inner > li:hover > .styled-handle, .panel__left-menu > ul > li .admin-inner > li.accordion-open > .styled-handle {
                    background: #0A7BF6;
                }

                .panel__left-menu > ul > li .admin-inner > li.accordion-open > a.accordion-toggle::after {
                    transform: rotate(0deg);
                }

            .panel__left-menu > ul > li .admin-inner-sub {
                padding: 13px 0 0 19px;
            }

                .panel__left-menu > ul > li .admin-inner-sub li:not(:last-child) {
                    margin-bottom: 10px;
                }

                .panel__left-menu > ul > li .admin-inner-sub li a {
                    display: block;
                    color: #fff;
                    white-space: nowrap;
                    overflow: hidden;
                    border: 0;
                    text-overflow: ellipsis;
                }

                .panel__left-menu > ul > li .admin-inner-sub li:hover a, .panel__left-menu > ul > li .admin-inner-sub li.active a {
                    color: #0A7BF6;
                }

        .panel__left-menu > ul .inner {
            display: none;
        }

.panel__left-menu-scroll {
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    margin-bottom: auto;
}

.panel__left-btm {
    background-color: #292929;
    border-radius: 15px;
    padding: 3px 10px 0 9px;
    margin: 20px 10px 0 11px;
}

    .panel__left-btm ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
    }

        .panel__left-btm ul li {
            font-size: 14px;
            padding: 11px 0 10px 0;
        }

            .panel__left-btm ul li:last-child {
                padding-bottom: 8px;
            }

            .panel__left-btm ul li a {
                color: #fff;
                display: block;
            }

                .panel__left-btm ul li a svg {
                    display: inline-block;
                    margin-top: -3px;
                    margin-right: 8px;
                    width: 40px;
                }

            .panel__left-btm ul li.dropdown {
                position: relative;
            }

                .panel__left-btm ul li.dropdown .dropdown-menu {
                    position: absolute;
                    background-color: #fff;
                    bottom: -5px;
                    left: 250px;
                    min-width: 160px;
                    border-radius: 4px;
                    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1607843137);
                    opacity: 0;
                    visibility: hidden;
                    padding: 5px 0 12px 0;
                }

                    .panel__left-btm ul li.dropdown .dropdown-menu::before {
                        content: "";
                        width: 0;
                        height: 0;
                        border-style: solid;
                        border-width: 9px 10px 9px 0;
                        border-color: transparent #fff transparent transparent;
                        position: absolute;
                        right: 100%;
                        bottom: 20px;
                    }

                    .panel__left-btm ul li.dropdown .dropdown-menu li {
                        font-size: 16px;
                        padding: 0;
                    }

                        .panel__left-btm ul li.dropdown .dropdown-menu li a {
                            color: #000;
                            padding: 5px 19px;
                        }

                            .panel__left-btm ul li.dropdown .dropdown-menu li a:hover {
                                color: #fff;
                                background-color: #0A7BF6;
                            }

                    .panel__left-btm ul li.dropdown .dropdown-menu.show-dropdown {
                        opacity: 1;
                        visibility: visible;
                    }

                .panel__left-btm ul li.dropdown:hover .dropdown-menu {
                    display: block;
                }

            .panel__left-btm ul li.user-photo a {
                display: flex;
            }

            .panel__left-btm ul li.user-photo .photo {
                width: 40px;
                height: 40px;
                flex-shrink: 0;
                margin-right: 10px;
            }

            .panel__left-btm ul li.user-photo .name {
                flex-grow: 1;
                font-family: "aileronbold";
            }

                .panel__left-btm ul li.user-photo .name span {
                    display: block;
                    font-family: "aileronregular";
                }

.panel__left--close {
    width: 60px;
}

    .panel__left--close .panel__left-logo img {
        display: none;
    }

    .panel__left--close .panel__left-menu ul li a {
        padding: 13px 20px 12px 17px;
    }

        .panel__left--close .panel__left-menu ul li a span {
            display: none;
        }

        .panel__left--close .panel__left-menu ul li a::after {
            display: none;
        }

    .panel__left--close .panel__left-menu ul li .links-inner, .panel__left--close .panel__left-menu ul li .admin-inner {
        display: none !important;
    }

    .panel__left--close .panel__left-btm {
        padding: 3px 5px 0 5px;
        margin: auto 5px 0 5px;
    }

        .panel__left--close .panel__left-btm ul li span, .panel__left--close .panel__left-btm ul li.user-photo .name {
            display: none;
        }

        .panel__left--close .panel__left-btm ul li a svg {
            margin-right: 0;
        }

        .panel__left--close .panel__left-btm ul li.dropdown .dropdown-menu {
            left: 65px;
        }

        .panel__left--close .panel__left-btm ul li.user-photo .photo {
            margin-right: 0;
        }

        .panel__left--close .panel__left-btm ul li:last-child {
            padding-bottom: 10px;
        }

.panel__right {
    width: calc(100% - 250px);
    flex-grow: 1;
    padding-left: 262px;
}

.panel__right--expended {
    width: calc(100% - 60px);
    padding-left: 72px;
}

.panel__top {
    display: none;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    background-color: #000;
    padding: 10px;
    position: relative;
}

.panel__srch {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.panel__srch-wrap {
    height: 50px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

    .panel__srch-wrap form {
        height: 100%;
    }

.panel__srch-fld {
    font-size: 16px;
    color: #999999;
    width: 100%;
    height: 100%;
    padding: 0 45px 0 13px;
}

    .panel__srch-fld:focus {
        outline: 0;
    }

.panel__srch-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 39px;
    height: 100%;
    background-image: url("../images/search-icn.svg");
    background-position: center center;
    background-repeat: no-repeat;
    border: 0;
    background-color: transparent;
    padding: 0;
    cursor: pointer;
}

.panel__srch:hover .panel__srch-rslt {
    display: block;
}

.panel__srch-rslt {
    position: absolute;
    top: 80px;
    left: -10px;
    width: calc(100% + 10px);
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1607843137);
    z-index: 1;
    padding-bottom: 11px;
    opacity: 0;
    visibility: hidden;
}

    .panel__srch-rslt::before {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 9px 10px 9px;
        border-color: transparent transparent #fff transparent;
        position: absolute;
        left: 20px;
        bottom: 100%;
    }

    .panel__srch-rslt.show-search {
        opacity: 1;
        visibility: visible;
    }

.panel__srch .search-box__top {
    border-bottom: 2px solid #f2f4f3;
    padding: 19px 20px 16px 20px;
}

    .panel__srch .search-box__top::before {
        content: "";
        width: 20px;
        height: 20px;
        background-image: url("../images/search-icn.svg");
        display: inline-block;
        vertical-align: middle;
        margin: -3px 17px 0 0;
    }

.panel__srch .search-box__result {
    padding: 18px 0 12px 0;
}

    .panel__srch .search-box__result:not(:last-child) {
        border-bottom: 2px solid #f2f4f3;
    }

.panel__srch .search-box__odr, .panel__srch .search-box__link, .panel__srch .search-box__more {
    display: block;
}

.panel__srch .search-box__odr {
    font-family: "aileronbold";
    font-size: 12px;
    color: #999999;
    text-transform: uppercase;
    padding-left: 20px;
    margin-bottom: 6px;
}

.panel__srch .search-box__link {
    font-family: "aileronbold";
    font-size: 14px;
    color: #000;
    padding: 6px 20px 5px 20px;
}

    .panel__srch .search-box__link:hover, .panel__srch .search-box__link.active {
        background-color: #f2f5fa;
    }

.panel__srch .search-box__more {
    font-size: 12px;
    color: #0A7BF6;
    padding: 6px 20px 5px 20px;
    margin-top: 5px;
}

.panel__notf {
    position: relative;
    margin-right: 20px;
    margin-left: 20px;
    flex: 0 0 20px;
}

.panel__notf-bell {
    cursor: pointer;
}

.panel__notf-scroll {
    overflow-y: auto;
    min-height: 405px;
    max-height: 636px;
}

.panel__notf-result {
    position: absolute;
    top: 67px;
    right: -30px;
    width: 370px;
    background: #fff;
    filter: drop-shadow(0px 15px 30px rgba(0, 0, 0, 0.1607843137));
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    padding-top: 28px;
    padding-bottom: 4px;
}

@media (min-width: 576px) {
    .panel__notf-result {
        width: 470px;
    }
}

@media (min-width: 768px) {
    .panel__notf-result {
        width: 570px;
    }
}

.panel__notf-result.show-nofications {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 1;
    visibility: visible;
}

.panel__notf-result::after {
    content: "";
    position: absolute;
    bottom: 100%;
    right: 24px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #fff transparent;
}

.panel__notf-maintitle {
    padding: 0 100px 15px 30px;
}

    .panel__notf-maintitle h3 {
        font-size: 18px;
        text-transform: uppercase;
    }

.panel__notf-close {
    position: absolute;
    top: 30px;
    right: 27px;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background: url("../images/delete-user-btn-icn.svg") no-repeat center center;
}

    .panel__notf-close:hover {
        transform: rotate(90deg);
    }

.panel__notf-box {
    padding-bottom: 20px;
}

.panel__notf-box-title {
    font-size: 16px;
    display: flex;
    padding-left: 30px;
    margin-bottom: 7px;
}

    .panel__notf-box-title::after {
        content: "";
        flex-grow: 1;
        height: 1px;
        background-color: #F2F5FA;
        align-self: center;
        margin-left: 15px;
    }

.panel__notf-itm {
    cursor: pointer;
    display: flex;
    padding: 9px 27px 1px 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.panel__notf-itm-left {
    flex-grow: 1;
    padding-right: 15px;
}

    .panel__notf-itm-left h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .panel__notf-itm-left p {
        font-size: 12px;
        color: rgba(0, 0, 0, 0.7);
    }

.panel__notf-itm-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

    .panel__notf-itm-right span {
        font-family: "circular_stdbook";
        font-size: 12px;
        margin-top: -2px;
    }

.panel__notf-itm-btns {
    display: flex;
    margin-top: 8px;
}

    .panel__notf-itm-btns a {
        width: 40px;
        height: 40px;
        background-color: #fff;
        border: 1px solid rgba(0, 0, 0, 0.3);
        border-radius: 100px;
        text-indent: -9999px;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.35;
    }

        .panel__notf-itm-btns a + a {
            margin-left: 5px;
        }

    .panel__notf-itm-btns .mail {
        background-image: url("../images/mail-close-icn.svg");
    }

        .panel__notf-itm-btns .mail.open {
            background-image: url("../images/mail-open-icn.svg");
        }

    .panel__notf-itm-btns .close {
        background-image: url("../images/notification-close-icn.svg");
    }

.panel__notf-itm:hover, .panel__notf-itm.active {
    background-color: #F2F5FA;
}

    .panel__notf-itm:hover .panel__notf-itm-btns a, .panel__notf-itm.active .panel__notf-itm-btns a {
        border: 1px solid rgba(0, 0, 0, 0.1);
        opacity: 1;
    }

.panel__dash-ttl {
    font-family: "aileronbold";
    font-size: 16px;
    color: #404040;
    margin-bottom: 27px;
}

.panel__dash-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}

.panel__dash-itm {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    margin-bottom: 31px;
}

@media (min-width: 992px) {
    .panel__dash-itm {
        width: 50%;
    }
}

.panel__dash-itm-wrap {
    text-align: center;
    background-color: #DCD4F9;
    position: relative;
    border-radius: 8px;
    padding: 20px 15px 20px 15px;
}

@media (min-width: 576px) {
    .panel__dash-itm-wrap {
        padding: 20px 25px 20px 25px;
    }
}

@media (min-width: 768px) {
    .panel__dash-itm-wrap {
        padding: 20px 125px 20px 25px;
        text-align: left;
    }
}

@media (min-width: 1200px) {
    .panel__dash-itm-wrap {
        padding: 25px 190px 25px 30px;
    }
}

@media (min-width: 1400px) {
    .panel__dash-itm-wrap {
        padding: 37px 269px 36px 40px;
    }
}

.panel__dash-itm-wrap--contact {
    background-color: #DCD4F9;
}

.panel__dash-itm-wrap--quote {
    background-color: #93E1F2;
}

.panel__dash-itm-wrap--order {
    background-color: #ADC5FE;
}

.panel__dash-itm-wrap--admin {
    background-color: #B2D7FF;
}

.panel__dash-itm-wrap--report {
    background-color: #98E2D4;
}

.panel__dash-itm-wrap--schdle {
    background-color: #FDD3D8;
}

.panel__dash-itm-ttl {
    font-size: 24px;
}

.panel__dash-itm-des {
    font-size: 16px;
    color: #000;
}

.panel__dash-itm-action {
    font-size: 14px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    line-height: 1.5;
    color: #fff;
    background-color: #000;
    padding: 10px 24px 9px 24px;
    margin-top: 12px;
}

    .panel__dash-itm-action:hover {
        background-color: #fff;
        box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1607843137);
    }

.panel__dash-itm-img {
    width: 100px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .panel__dash-itm-img {
        position: absolute;
        top: 30px;
        right: 20px;
        margin-bottom: 0;
    }
}

@media (min-width: 1200px) {
    .panel__dash-itm-img {
        right: 30px;
        width: 150px;
    }
}

@media (min-width: 1400px) {
    .panel__dash-itm-img {
        right: 66px;
        width: auto;
    }
}

/* Alert Message */
.alert-message {
    border-radius: 20px;
    border: 1px solid #a3cfbb;
    background-color: #d1e7dd;
    padding: 16px;
    margin-bottom: 20px;
}

.alert-message--success {
    border: 1px solid #a3cfbb;
    background-color: #d1e7dd;
}

.alert-message--danger {
    color: #58151c;
    border: 1px solid #f1aeb5;
    background-color: #f8d7da;
}

/* Page Title */
.page-title {
    margin-bottom: 17px;
}

.page-title__top {
    position: relative;
    padding-right: 150px;
    margin-bottom: 29px;
}

.page-title__title {
    font-size: 21px;
    color: #404040;
    text-transform: uppercase;
    margin-bottom: 0;
}

.page-title__action {
    position: absolute;
    top: 0;
    right: 0;
}

/* Search Box */
.searchbox {
    margin-bottom: 30px;
}

.searchbox__heading {
    font-size: 21px;
    text-transform: uppercase;
}

.searchbox__search {
    max-width: 550px;
}

    .searchbox__search.w-265 {
        max-width: 265px;
    }

.searchbox__search-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

    .searchbox__search-row > * {
        width: 100%;
        padding-right: 10px;
        padding-left: 10px;
    }

@media (max-width: 767px) {
    .searchbox__search-row > *:not(:last-child) {
        margin-bottom: 10px;
    }
}

@media (min-width: 768px) {
    .searchbox__search-row > * {
        width: 50%;
    }
}

.searchbox__search label {
    font-size: 14px;
    display: inline-block;
    margin-bottom: 7px;
}

.searchbox__btns {
    display: grid;
    gap: 10px;
    margin-top: 15px;
}

@media (min-width: 576px) {
    .searchbox__btns {
        display: flex;
        justify-content: space-between;
    }
}

/* Global Table */
.global-table {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background: #FFFFFF;
    position: relative;
    overflow-x: auto;
    padding-bottom: 50px;
}

.global-table__btn {
    position: absolute;
    top: -75px;
    right: 0;
}

.global-table__wrap {
    min-width: 1608px;
    height: 676px;
    overflow: auto;
}

.global-table__wrap--userRole {
    min-width: 500px;
}

.global-table__wrap--emailTempTble {
    min-width: 700px;
}

.global-table__wrap--usrMngUsr {
    min-width: 1000px;
}

.global-table__head {
    text-align: center;
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1;
    padding: 17px 29px 14px 29px;
}

    .global-table__head::after {
        content: "";
        width: calc(100% - 58px);
        height: 1px;
        background-color: #E5E7EB;
        position: absolute;
        left: 29px;
        bottom: 0;
    }

.global-table__head-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-right: -15px;
    margin-left: -15px;
}

    .global-table__head-row > * {
        flex: 1;
        padding-right: 15px;
        padding-left: 15px;
        word-break: break-all;
    }

        .global-table__head-row > *:first-child {
            text-align: left;
        }

        .global-table__head-row > *:last-child {
            text-align: right;
        }

.global-table__itm {
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;   
    padding: 0 29px 0 28px;
}

    .global-table__itm::after {
        content: "";
        width: calc(100% - 58px);
        height: 1px;
        background-color: #E5E7EB;
        position: absolute;
        left: 29px;
        bottom: 0;
    }
.callInfoHover {
   color: rgba(64, 64, 64, 0.65);
}
    .callInfoHover :hover {
        color: #404040;
    }
.global-table__itm-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    padding: 16px 0 14px 0;
    margin-right: -15px;
    margin-left: -15px;
}

    .global-table__itm-wrap > * {
        flex: 1;
        color: rgba(64, 64, 64, 0.65);
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        word-break: break-all;
        padding: 0 15px;
    }

        .global-table__itm-wrap > *:first-child {
            text-align: left;
        }

        .global-table__itm-wrap > * .link {
            color: rgba(64, 64, 64, 0.65);
            display: inline-block;
        }

            .global-table__itm-wrap > * .link img {
                border-radius: 19px;
                width: 38px;
                height: 38px;
                margin-right: 8px;
            }

            .global-table__itm-wrap > * .link:hover {
                color: #0A7BF6;
                text-decoration: underline;
            }

.global-table__itm-name {
    color: rgba(64, 64, 64, 0.65);
}

.global-table__itm-action {
    display: flex;
    justify-content: flex-end;
    opacity: 0.3;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .global-table__itm-action a {
        display: block;
        width: 40px;
        height: 40px;
        border: 1px solid #000000;
        border-radius: 100px;
        text-indent: -9999px;
        background-color: #fff;
        background-position: center center;
        background-repeat: no-repeat;
        -webkit-transition: all 0s ease-in-out;
        -moz-transition: all 0s ease-in-out;
        -ms-transition: all 0s ease-in-out;
        -o-transition: all 0s ease-in-out;
        transition: all 0s ease-in-out;
    }

        .global-table__itm-action a + a {
            margin-left: 10px;
        }

        .global-table__itm-action a.edit {
            background-image: url("../images/edit-btn-icn.svg");
        }

        .global-table__itm-action a.delete {
            background-image: url("../images/delete-btn-icn.svg");
        }

.global-table__itm:hover {
    background-color: #F2F5FA;
}

    .global-table__itm:hover .global-table__itm-wrap > * {
        color: #404040;
    }

    .global-table__itm:hover .global-table__itm-action {
        opacity: 1;
    }

.global-table--modified .global-table__itm-wrap > * {
    color: black;
}

    .global-table--modified .global-table__itm-wrap > *:first-child {
        font-family: "aileronsemibold";
        color: #404040;
        text-align: left;
    }

/* Add Role module */
.add-module {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 26px 29px 39px 29px;
}

.add-module__top {
    position: relative;
    padding-right: 40px;
    margin-bottom: 13px;
}

.add-module__top-ttl {
    font-size: 22px;
    color: #363637;
    margin-bottom: 0;
}

.add-module__top-closeBtn {
    position: absolute;
    top: -9px;
    right: -10px;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background: url(../images/delete-user-btn-icn.svg) no-repeat center center;
}

    .add-module__top-closeBtn:hover {
        transform: rotate(90deg);
    }

.add-module__wrap {
    max-width: 760px;
}

    .add-module__wrap label {
        display: inline-block;
        margin-bottom: 5px;
    }

.add-module__row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

    .add-module__row > * {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-top: 12px;
    }

@media (max-width: 767px) {
    .add-module__row > *:not(:last-child) {
        margin-bottom: 15px;
    }
}

@media (min-width: 768px) {
    .add-module__row > * {
        width: 50%;
    }
}

.add-module__btns {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

@media (min-width: 576px) {
    .add-module__btns {
        display: flex;
    }
}

.add-module__btns .btn {
    min-width: 126px;
}
/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 20px;
}

@media (min-width: 992px) {
    .pagination {
        flex-direction: row;
    }
}

.pagination__res span {
    font-size: 14px;
    color: #404040;
    display: inline-block;
    margin-right: 7px;
}

.pagination__res select {
    font-size: 14px;
    width: 60px;
    height: 38px;
    border-radius: 4px;
    border: 1px solid #404040;
    padding: 0px 0 0 5px;
}

    .pagination__res select:focus {
        outline: none;
    }

.pagination__nav {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
}

@media (min-width: 992px) {
    .pagination__nav {
        flex-direction: row;
        margin-top: 0;
    }
}

.pagination__nav-totl {
    font-size: 14px;
    margin-bottom: 10px;
}

@media (min-width: 992px) {
    .pagination__nav-totl {
        margin-right: 30px;
        margin-bottom: 0;
    }
}

.pagination__nav-pagi {
    display: flex;
    align-items: center;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    margin-bottom: 0;
}

    .pagination__nav-pagi li {
        margin: 0 4px;
    }

        .pagination__nav-pagi li:first-child {
            margin-left: 0;
        }

        .pagination__nav-pagi li:last-child {
            margin-right: 0;
        }

    .pagination__nav-pagi .prev, .pagination__nav-pagi .next {
        width: 24px;
        height: 24px;
        display: block;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center;
    }

    .pagination__nav-pagi .prev {
        background-image: url("../images/pagination-arrow-left.svg");
    }

    .pagination__nav-pagi .next {
        background-image: url("../images/pagination-arrow-right.svg");
    }

    .pagination__nav-pagi .page-number {
        font-size: 14px;
        color: #030229;
        width: 38px;
        height: 38px;
        border-radius: 100px;
        background: #E5E7EB;
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* Users detail */
.users-dtl {
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    background-color: #fff;
    padding: 30px 29px;
}

@media (min-width: 992px) {
    .users-dtl {
        display: flex;
    }
}

.users-dtl__left {
    width: 100%;
}

@media (min-width: 992px) {
    .users-dtl__left {
        flex-shrink: 0;
        width: 220px;
    }
}

@media (min-width: 1200px) {
    .users-dtl__left {
        width: 250px;
    }
}

@media (min-width: 1400px) {
    .users-dtl__left {
        width: 280px;
    }
}

.users-dtl__backBtn {
    width: 28px;
    height: 18px;
    background-image: url("../images/user-back-btn-icn.svg");
    display: inline-block;
}

.users-dtl__photo {
    border-radius: 100%;
    background-color: #0A7BF6;
    display: inline-block;
    margin-top: 13px;
}

.users-dtl__right {
    width: 100%;
    padding: 35px 0px 10px 0px;
}

@media (min-width: 992px) {
    .users-dtl__right {
        width: auto;
        flex-grow: 1;
        padding: 35px 0px 10px 30px;
    }
}

@media (min-width: 1400px) {
    .users-dtl__right {
        padding: 35px 0px 10px 60px;
    }
}

.users-dtl__row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

    .users-dtl__row .col-3 {
        width: 100%;
    }

@media (min-width: 768px) {
    .users-dtl__row .col-3 {
        width: 50%;
    }
}

@media (min-width: 1200px) {
    .users-dtl__row .col-3 {
        width: 25%;
    }
}

.users-dtl__item {
    width: 100%;
    position: relative;
    padding: 0 15px 11px 15px;
    margin-bottom: 14px;
}

    .users-dtl__item::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 15px;
        width: calc(100% - 30px);
        height: 1px;
        border-bottom: 1px solid #E5E7EB;
    }

.users-dtl__item--override {
    padding: 0 15px 0 15px;
    margin-bottom: 0;
}

    .users-dtl__item--override::after {
        display: none;
    }

.users-dtl__item .small {
    font-size: 14px;
    color: rgba(64, 64, 64, 0.65);
    display: block;
    min-height: 21px;
    margin-bottom: 7px;
}

.users-dtl__item .small--high {
    font-size: 16px;
    margin-bottom: 0;
}

.users-dtl__item span {
    min-height: 18px;
    display: block;
}

@media (min-width: 576px) {
    .users-dtl__item--name {
        padding-right: 190px;
    }
}

.users-dtl__item--name h3 {
    font-size: 24px;
    color: #404040;
    margin-bottom: 1px;
}

@media (min-width: 576px) {
    .users-dtl__resetPass {
        position: absolute;
        top: 6px;
        right: 17px;
    }
}

/* Add User */
.ad-usr {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 28px 29px;
}

.ad-usr__top {
    position: relative;
    padding-right: 40px;
    margin-bottom: 20px;
}

.ad-usr__deleteUsrBtn {
    position: absolute;
    top: -9px;
    right: -10px;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background: url("../images/delete-user-btn-icn.svg") no-repeat center center;
}

    .ad-usr__deleteUsrBtn:hover {
        transform: rotate(90deg);
    }

.ad-usr__heading {
    color: #404040;
}

.ad-usr label {
    color: #363637;
    display: block;
    margin-bottom: 5px;
}

.ad-usr__row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

    .ad-usr__row > * {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-bottom: 24px;
    }

.ad-usr__item.col-3 {
    width: 100%;
}

@media (min-width: 768px) {
    .ad-usr__item.col-3 {
        width: 50%;
    }
}

@media (min-width: 1200px) {
    .ad-usr__item.col-3 {
        width: 25%;
    }
}

.ad-usr__item.col-6 {
    width: 100%;
}

@media (min-width: 768px) {
    .ad-usr__item.col-6 {
        width: 50%;
    }
}

.ad-usr__box {
    padding-top: 34px;
}

.ad-usr__styled-title {
    font-size: 18px;
    color: #0A7BF6;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

    .ad-usr__styled-title::after {
        content: "";
        height: 1px;
        background-color: #E5E7EB;
        flex-grow: 1;
        margin-left: 20px;
    }

.ad-usr #file-upload-field {
    display: none;
}

.ad-usr__uploadfile {
    font-family: "aileronbold";
    color: #0A7BF6;
    font-size: 14px;
    background: rgba(10, 123, 246, 0.1019607843);
    border: 1px solid #0A7BF6;
    border-radius: 4px;
    max-width: 212px;
    padding: 12px 10px 9px 18px;
    cursor: pointer;
}

    .ad-usr__uploadfile::before {
        content: "";
        width: 22px;
        height: 22px;
        background-image: url("../images/file-upload-icn.svg");
        display: inline-block;
        vertical-align: middle;
        margin-top: -3px;
        margin-right: 8px;
    }

.ad-usr__uploadfile-info {
    font-size: 12px;
    color: #999999;
    margin-top: 8px;
}

.ad-usr__btns a + a {
    margin-left: 10px;
}

.ad-usr__action {
    font-family: "aileronbold";
    padding: 13px 43px 11px 44px;
}

/* Add Product */
.add-prdct {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 26px 30px 30px 29px;
    margin-top: 20px;
}

.add-prdct__ttl {
    color: #363637;
}

.add-prdct__top {
    position: relative;
    padding-right: 40px;
    margin-bottom: 20px;
}

.add-prdct__deleteBtn {
    position: absolute;
    top: -9px;
    right: -10px;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background: url("../images/delete-user-btn-icn.svg") no-repeat center center;
}

    .add-prdct__deleteBtn:hover {
        transform: rotate(90deg);
    }

.add-prdct__row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

    .add-prdct__row > * {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-bottom: 24px;
    }

@media (min-width: 768px) {
    .add-prdct__row > * {
        width: 50%;
    }
}

@media (min-width: 1200px) {
    .add-prdct__row > * {
        width: 25%;
    }
}

.add-prdct__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

    .add-prdct__item.col-12 {
        width: 100%;
    }

    .add-prdct__item .col-6 {
        width: 50%;
    }

    .add-prdct__item .col-4 {
        width: 33.33%;
    }

    .add-prdct__item label {
        display: block;
        margin-bottom: 5px;
    }

    .add-prdct__item input[type=radio] {
        margin-top: 15px;
    }

.add-prdct__item-date {
    position: relative;
}

    .add-prdct__item-date .date-icn {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        width: 21px;
        height: 24px;
        background: url("../images/calender-icn.svg");
        cursor: pointer;
    }

.add-prdct__btns {
    display: grid;
    gap: 10px;
    margin-top: 6px;
}

@media (min-width: 750px) {
    .add-prdct__btns {
        display: flex;
    }
}

.add-prdct__btns .btn {
    min-width: 126px;
}
/* Fields Template */
.ftemp {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 26px 30px 30px 29px;
}

.ftemp__ttl {
    color: #363637;
}

.ftemp__top {
    position: relative;
    padding-right: 40px;
    margin-bottom: 20px;
}

.ftemp__deleteBtn {
    position: absolute;
    top: -9px;
    right: -10px;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background: url("../images/delete-user-btn-icn.svg") no-repeat center center;
}

    .ftemp__deleteBtn:hover {
        transform: rotate(90deg);
    }

.ftemp__box-ttl {
    color: #363637;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

    .ftemp__box-ttl::after {
        content: "";
        height: 1px;
        flex-grow: 1;
        background-color: #E5E7EB;
        margin-left: 25px;
    }

.ftemp__row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

    .ftemp__row > * {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-bottom: 24px;
    }

@media (min-width: 768px) {
    .ftemp__row > * {
        width: 50%;
    }
}

@media (min-width: 1200px) {
    .ftemp__row > * {
        width: 25%;
    }
}

.ftemp__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

    .ftemp__item.col-12 {
        width: 100%;
    }

    .ftemp__item .col-6 {
        width: 50%;
    }

    .ftemp__item .col-4 {
        width: 33.33%;
    }

    .ftemp__item label {
        display: block;
        margin-bottom: 5px;
    }

    .ftemp__item input[type=radio] {
        margin-top: 15px;
    }

.ftemp__item-date {
    position: relative;
}

    .ftemp__item-date .date-icn {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        width: 21px;
        height: 24px;
        background: url("../images/calender-icn.svg");
        cursor: pointer;
    }

.ftemp .checkbox-switch {
    margin-top: 15px;
}

.ftemp__btns {
    display: grid;
    gap: 10px;
    margin-top: 6px;
}

@media (min-width: 750px) {
    .ftemp__btns {
        display: flex;
    }
}

.ftemp__btns .btn {
    min-width: 126px;
}
/* Generic Template */
.generic-flds {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 26px 30px 30px 29px;
}

.generic-flds__ttl {
    color: #363637;
}

.generic-flds__top {
    position: relative;
    padding-right: 40px;
    margin-bottom: 32px;
}

.generic-flds__deleteBtn {
    position: absolute;
    top: -9px;
    right: -10px;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background: url("../images/delete-user-btn-icn.svg") no-repeat center center;
}

    .generic-flds__deleteBtn:hover {
        transform: rotate(90deg);
    }

.generic-flds__box-ttl {
    color: #363637;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

    .generic-flds__box-ttl::after {
        content: "";
        height: 1px;
        flex-grow: 1;
        background-color: #E5E7EB;
        margin-left: 25px;
    }

.generic-flds__row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

    .generic-flds__row > * {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-bottom: 24px;
    }

.generic-flds__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

@media (min-width: 992px) {
    .generic-flds__item .col-3 {
        width: 50%;
    }
}

@media (min-width: 1200px) {
    .generic-flds__item .col-3 {
        width: 25%;
    }
}

.generic-flds__item label {
    display: block;
    margin-bottom: 5px;
}

.generic-flds__item-date {
    position: relative;
}

    .generic-flds__item-date .date-icn {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        width: 21px;
        height: 24px;
        background: url("../images/calender-icn.svg");
        cursor: pointer;
    }

.generic-flds__btns {
    display: grid;
    gap: 10px;
    margin-top: 6px;
}

@media (min-width: 750px) {
    .generic-flds__btns {
        display: flex;
    }
}

.generic-flds__btns .btn {
    min-width: 126px;
}
/* Add Email Template */
.eTemp {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 29px 30px 30px 29px;
}

.eTemp__title {
    font-size: 21px;
    text-transform: uppercase;
}

.eTemp__top {
    margin-bottom: 17px;
}

.eTemp__backBtn {
    width: 28px;
    height: 18px;
    background-image: url(../images/user-back-btn-icn.svg);
    display: inline-block;
}

.eTemp__box-ttl {
    color: #363637;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

    .eTemp__box-ttl::after {
        content: "";
        height: 1px;
        flex-grow: 1;
        background-color: #E5E7EB;
        margin-left: 25px;
    }

.eTemp__rowWrap {
    max-width: 1280px;
}

.eTemp__row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

    .eTemp__row > * {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-bottom: 24px;
    }

.eTemp__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

@media (min-width: 992px) {
    .eTemp__item .col-3 {
        width: 50%;
    }
}

@media (min-width: 1200px) {
    .eTemp__item .col-3 {
        width: 25%;
    }
}

.eTemp__item-info {
    color: #999999;
}

    .eTemp__item-info .badge {
        background-color: #0A7BF6;
        color: #fff;
        display: inline-block;
        border-radius: 4px;
        padding: 1px 5px;
        margin-left: 2px;
    }

        .eTemp__item-info .badge:first-child {
            margin-left: 6px;
        }

.eTemp__item label {
    display: block;
    margin-bottom: 5px;
}

.eTemp__item-date {
    position: relative;
}

    .eTemp__item-date .date-icn {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        width: 21px;
        height: 24px;
        background: url("../images/calender-icn.svg");
        cursor: pointer;
    }

.eTemp__btns {
    display: grid;
    gap: 10px;
    margin-top: 6px;
}

@media (min-width: 750px) {
    .eTemp__btns {
        display: flex;
    }
}

.eTemp__btns .btn {
    min-width: 126px;
}
/* Confirm Modal */
.confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 15px 15px 15px;
    z-index: 99;
}

.confirm-modal__body {
    max-width: 400px;
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 24px 24px rgba(0, 0, 0, 0.1607843137);
    padding: 29px 23px 30px 23px;
    margin: auto;
}

    .confirm-modal__body h3 {
        font-size: 24px;
        line-height: 1.35;
    }

.confirm-modal__btns {
    margin-top: 17px;
}

@media (max-width: 329px) {
    .confirm-modal__btns {
        display: grid;
        gap: 10px;
    }
}

.confirm-modal__btns .btn {
    min-width: 102px;
    padding: 8px 20px 6px 20px;
}

@media (min-width: 330px) {
    .confirm-modal__btns .btn + .btn {
        margin-left: 7px;
    }
}

/* Contact Module */
.contact {
    padding-top: 3px;
}

    .contact .row {
        display: flex;
        flex-wrap: wrap;
        margin-right: -9px;
        margin-left: -9px;
    }

.contact__left {
    width: 100%;
    position: relative;
    z-index: 2;
    padding-right: 9px;
    padding-left: 9px;
    margin-bottom: 30px;
}

@media (min-width: 1200px) {
    .contact__left {
        width: 34.9%;
        margin-bottom: 0;
    }
}

.contact__left-bg {
    background-color: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 12px 26px 12px 19px;
    margin-top: 20px;
}

.contact__left-smallttl {
    color: #0A7BF6;
    font-size: 16px;
    padding-top: 4px;
    margin-bottom: 10px;
}

.contact__left-btns {
    display: flex;
    gap: 10px;
}

@media (min-width: 1200px) {
    .contact__left-btns {
        display: grid;
    }
}

@media (min-width: 1500px) {
    .contact__left-btns {
        display: flex;
        justify-content: space-between;
    }
}

@media (min-width: 1200px) {
    .contact__left-btns .btn {
        width: auto;
        max-width: none;
    }
}

@media (min-width: 1500px) {
    .contact__left-btns .btn {
        width: 100%;
        max-width: 238px;
    }
}

.contact__left-info {
    font-size: 12px;
    color: #999999;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 19px;
}

.contact__searchBtn {
    min-width: 126px;
    background-color: #0A7BF6;
    border-radius: 4px;
    color: #FFFFFF;
    border: 0;
    min-height: 50px;
}

    .contact__searchBtn::before {
        content: "";
        width: 20px;
        height: 20px;
        background: url("../images/customer-search-icn.png") no-repeat center center;
        display: inline-block;
        vertical-align: middle;
        margin-top: -3px;
        margin-right: 5px;
    }

.contact__dtls {
    display: flex;
    flex-wrap: wrap;
}

    .contact__dtls > * {
        width: 100%;
    }

.contact__cstItm {
    margin-bottom: 6px;
}

@media (min-width: 1500px) {
    .contact__cstItm {
        display: flex;
        align-items: center;
    }
}

.contact__cstItm--cstmr {
    position: relative;
    z-index: 1;
}

@media (min-width: 1500px) {
    .contact__cstItm label {
        width: 138px;
        flex: 0 0 138px;
    }
}

.contact__cstItm-fld {
    flex: 1;
    position: relative;
}

    .contact__cstItm-fld .form-control {
        height: 42px;
        font-family: "aileronregular";
        color: #363637;
        background-color: #F2F5FA;
    }

        .contact__cstItm-fld .form-control.active {
            border: 1px solid #0A7BF6;
        }

        .contact__cstItm-fld .form-control::-webkit-input-placeholder {
            color: #363637;
        }

        .contact__cstItm-fld .form-control:-moz-placeholder {
            color: #363637;
        }

        .contact__cstItm-fld .form-control::-moz-placeholder {
            color: #363637;
        }

        .contact__cstItm-fld .form-control:-ms-input-placeholder {
            color: #363637;
        }

.contact__cstItm-fld-errormsg {
    font-size: 14px;
    color: red;
    text-align: center;
    margin-top: 5px;
}

.contact__cstItm-fld .cstmr-drpdwn {
    position: absolute;
    top: 46px;
    width: 100%;
    height: 600px;
    border-radius: 8px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1607843137);
    border: 1px solid #E5E7EB;
    overflow: hidden;
    display: none;
    flex-direction: column;
}

    .contact__cstItm-fld .cstmr-drpdwn.show-dropdown {
        display: flex;
    }

@media (min-width: 1200px) {
    .contact__cstItm-fld .cstmr-drpdwn {
        min-width: 860px;
    }
}

.contact__cstItm-fld .cstmr-drpdwn::after {
    width: 1px;
    height: 100%;
    background-color: #363637;
    position: absolute;
    top: 0;
    left: 43.2%;
}

.contact__cstItm-fld .cstmr-drpdwn__scroll {
    overflow: auto;
    height: calc(100% - 42px);
}

.contact__cstItm-fld .cstmr-drpdwn__head {
    display: flex;
    background-color: #363637;
    padding: 9px 10px 9px 14px;
}

    .contact__cstItm-fld .cstmr-drpdwn__head > div {
        color: #fff;
    }

        .contact__cstItm-fld .cstmr-drpdwn__head > div:first-child {
            width: 43.2%;
        }

        .contact__cstItm-fld .cstmr-drpdwn__head > div:nth-child(2) {
            flex: 1;
        }

.contact__cstItm-fld .cstmr-drpdwn__itm {
    display: flex;
}

    .contact__cstItm-fld .cstmr-drpdwn__itm.active, .contact__cstItm-fld .cstmr-drpdwn__itm:hover {
        background-color: #f2f5fa;
    }

    .contact__cstItm-fld .cstmr-drpdwn__itm > div {
        padding: 3px 14px;
    }

        .contact__cstItm-fld .cstmr-drpdwn__itm > div:first-child {
            width: 43.2%;
        }

        .contact__cstItm-fld .cstmr-drpdwn__itm > div:nth-child(2) {
            flex: 1;
            border-left: 1px solid #363637;
            padding-left: 19px;
        }

.contact__cstItm-fld .cstmr-drpdwn__itm-btn {
    padding: 6px 20px 4px 20px;
}

@media (min-width: 1700px) {
    .contact__cstItm--suburb {
        width: 80%;
    }
}

@media (min-width: 1700px) {
    .contact__cstItm--postcode {
        width: 20%;
        padding-left: 10px;
    }

        .contact__cstItm--postcode label {
            width: 80px;
            flex: 0 0 80px;
        }
}

.contact__right {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-right: 9px;
    padding-left: 9px;
}

@media (min-width: 1200px) {
    .contact__right {
        width: 65.1%;
    }
}

.contact__right-top {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

@media (min-width: 1700px) {
    .contact__right-top {
        flex-direction: row;
    }
}

.contact__right-top-left {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    order: 2;
}

@media (min-width: 1700px) {
    .contact__right-top-left {
        width: auto;
        order: 1;
    }
}

.contact__right-top-left .btn {
    min-width: 154px;
}

.contact__right-top-rght {
    width: 100%;
    display: flex;
    gap: 10px;
    flex: 1;
    order: 1;
}

@media (min-width: 1700px) {
    .contact__right-top-rght {
        width: auto;
        flex-wrap: wrap;
        justify-content: flex-end;
        order: 2;
        margin-top: -31px;
    }
}

.contact__right-top-rght > * {
    max-width: 33.33%;
    width: 100%;
}

@media (min-width: 1700px) {
    .contact__right-top-rght > * {
        max-width: 160px;
    }
}

@media (min-width: 1800px) {
    .contact__right-top-rght > * {
        max-width: 190px;
    }
}

@media (min-width: 1920px) {
    .contact__right-top-rght > * {
        max-width: 200px;
    }
}

.contact__right-top-rght > * label {
    display: block;
    margin-bottom: 7px;
}

.contact__custom-tab {
    padding-top: 19px;
}

@media (min-width: 1400px) {
    .contact__custom-tab-top {
        display: flex;
        justify-content: space-between;
    }
}

.contact__custom-tab .tab-nav {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    background-color: #FFFFFF;
    display: inline-flex;
    border: 1px solid #E5E7EB;
    order: 1;
    border-radius: 8px 8px 0px 0px;
}

.contact__custom-tab .tab-nav__link {
    color: #363637;
    display: block;
    padding: 14px 12px 16px 13px;
}

    .contact__custom-tab .tab-nav__link.active {
        background-color: #0A7BF6;
        color: #fff;
        border-radius: 8px 8px 0px 0px;
        position: relative;
        z-index: 1;
    }

.contact__custom-tab-content {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    margin-top: -5px;
}

    .contact__custom-tab-content .tab-pane {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

.contact__custom-tab-btns {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    order: 2;
    margin-bottom: 10px;
}

@media (min-width: 1400px) {
    .contact__custom-tab-btns {
        margin-top: -9px;
        margin-bottom: 0;
    }
}

.contact__ordertable {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    min-width: 1016px;
    height: 100%;
}

.contact__ordertable-mobileScrollBar {
    flex-grow: 1;
    overflow-x: auto;
}

.contact__ordertable-head {
    color: #363637;
    font-family: "aileronbold";
    background-color: #E5E7EB;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    text-align: center;
    padding: 9px 27px 8px 18px;
}

    .contact__ordertable-head > * {
        flex: 1;
    }

    .contact__ordertable-head .checkbox {
        flex: 0 0 18px;
    }

        .contact__ordertable-head .checkbox input[type=checkbox] {
            width: 18px;
            height: 18px;
            margin-top: -2px;
        }

    .contact__ordertable-head .job-address {
        text-align: left;
        flex: 1 1 15%;
    }

.contact__ordertable-scroll {
    position: relative;
    height: 727px;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .contact__ordertable-scroll {
        height: calc(100% - 41px);
    }
}

.contact__ordertable-scroll-child {
    position: absolute;
    top: 0;
    right: -17px;
    bottom: 0;
    left: 0;
    overflow-y: scroll;
}

.contact__ordertable-itm {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
    padding: 7px 27px 7px 18px;
}

    .contact__ordertable-itm.bg {
        background-color: rgba(10, 123, 246, 0.1);
    }

    .contact__ordertable-itm > * {
        flex: 1;
    }

    .contact__ordertable-itm .checkbox {
        flex: 0 0 18px;
    }

        .contact__ordertable-itm .checkbox input[type=checkbox] {
            width: 18px;
            height: 18px;
            margin-top: -2px;
        }

    .contact__ordertable-itm .job-address {
        text-align: left;
        flex: 1 1 15%;
    }

    .contact__ordertable-itm a.qpnumber {
        color: #0A7BF6;
        background: #F2F5FA;
        border: 1px solid #E5E7EB;
        border-radius: 4px;
        display: inline-block;
        text-decoration: underline;
        padding: 3px 16px 1px 16px;
    }

.contact__subtable {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    min-width: 1016px;
    height: 100%;
}

.contact__subtable-mobileScrollBar {
    flex-grow: 1;
    overflow-x: auto;
}

.contact__subtable-head {
    color: #363637;
    font-family: "aileronbold";
    background-color: #E5E7EB;
    display: flex;
    gap: 10px;
    padding: 9px 27px 8px 22px;
}

    .contact__subtable-head .empty {
        flex: 0 0 141px;
    }

    .contact__subtable-head > * {
        width: 17.82%;
    }

.contact__subtable-scroll {
    position: relative;
    height: 727px;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .contact__subtable-scroll {
        height: calc(100% - 41px);
    }
}

.contact__subtable-scroll-child {
    position: absolute;
    top: 0;
    right: -17px;
    bottom: 0;
    left: 0;
    overflow-y: scroll;
}

.contact__subtable-itm {
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 27px 16px 22px;
}

.contact__subtable-itm-flds {
    display: flex;
    gap: 10px;
    margin-bottom: 9px;
}

    .contact__subtable-itm-flds .save {
        display: flex;
        gap: 7px;
        flex: 0 0 141px;
    }

        .contact__subtable-itm-flds .save .btn {
            padding: 6px 20px 4px 20px;
        }

        .contact__subtable-itm-flds .save .save-btn {
            min-width: 79px;
        }

        .contact__subtable-itm-flds .save .delete-btn::before {
            content: "";
            width: 13px;
            height: 14px;
            display: inline-block;
            vertical-align: middle;
            background-image: url("../images/delete-btn-white-icn.svg");
        }

    .contact__subtable-itm-flds > * {
        width: 17.82%;
    }

    .contact__subtable-itm-flds .form-control {
        height: 36px;
    }

.contact__subtable-itm .addMoreContact {
    font-family: "aileronbold";
    font-size: inherit;
    color: #0A7BF6;
    border: 0;
    background-color: transparent;
    text-decoration: underline;
    cursor: pointer;
}

    .contact__subtable-itm .addMoreContact:hover {
        color: #08d26f;
    }

/* Search Customer */
.srchCstmr {
    padding-top: 3px;
    padding-bottom: 16px;
}

.srchCstmr__top {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.srchCstmr__top-left {
    max-width: 734px;
    width: 100%;
}

.srchCstmr__top-search {
    display: flex;
    gap: 10px;
}

    .srchCstmr__top-search .form-control {
        background-color: #fff;
    }

    .srchCstmr__top-search .btn {
        padding: 13px 18px 11px 19px;
    }

.srchCstmr__top-optn {
    margin-top: 14px;
}

@media (min-width: 992px) {
    .srchCstmr__top-optn {
        display: flex;
    }
}

.srchCstmr__top-optn-by {
    font-family: "aileronbold";
    text-transform: uppercase;
    display: block;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .srchCstmr__top-optn-by {
        display: inline-block;
        margin-right: 10px;
    }
}

.srchCstmr__top-optn ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
}

    .srchCstmr__top-optn ul li:not(:last-child) {
        margin-right: 20px;
    }

    .srchCstmr__top-optn ul li label {
        white-space: nowrap;
    }

    .srchCstmr__top-optn ul li input[type=radio] {
        width: 12px;
        height: 12px;
        border-width: 1px;
        vertical-align: initial;
        margin: 0 2px 0 0;
    }

        .srchCstmr__top-optn ul li input[type=radio]::before {
            width: 6px;
            height: 6px;
        }

        .srchCstmr__top-optn ul li input[type=radio]:checked {
            border-color: #0A7BF6;
        }

            .srchCstmr__top-optn ul li input[type=radio]:checked::before {
                background-color: #0A7BF6;
            }

.srchCstmr__top-right {
    font-family: "aileronbold";
    font-size: 24px;
    color: #363637;
    text-align: right;
    padding-top: 8px;
}

/* Search Table */
.srchTbl {
    padding-top: 16px;
}

.srchTbl__mobileScrollBar {
    overflow-x: auto;
}

.srchTbl__table {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

@media (max-width: 1599px) {
    .srchTbl__table {
        min-width: 1250px;
    }
}

.srchTbl__table-head {
    color: #363637;
    font-family: "aileronbold";
    background-color: #E5E7EB;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 27px 8px 19px;
}

    .srchTbl__table-head > * {
        flex: 1;
        word-break: break-all;
    }

    .srchTbl__table-head .firstName {
        flex: 0 0 82px;
    }

    .srchTbl__table-head .lastName {
        flex: 0 0 81px;
    }

    .srchTbl__table-head .compName {
        flex: 0 0 175px;
    }

    .srchTbl__table-head .snNo {
        flex: 0 0 100px;
    }

    .srchTbl__table-head .address {
        flex: 0 0 160px;
    }

    .srchTbl__table-head .suburb {
        flex: 0 0 110px;
    }

    .srchTbl__table-head .hmPhoneNum {
        flex: 0 0 107px;
    }

    .srchTbl__table-head .wkPhoneNum {
        flex: 0 0 100px;
    }

    .srchTbl__table-head .email {
        flex: 0 0 200px;
    }

    .srchTbl__table-head .mobile {
        flex: 0 0 100px;
    }

.srchTbl__table-scroll {
    height: 600px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.srchTbl__table-scroll-child {
    position: absolute;
    top: 0;
    right: -17px;
    bottom: 0;
    left: 0;
    overflow-y: scroll;
    font-size: 14px;
}

.srchTbl__table-itm {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    padding: 11px 27px 9px 19px;
}

    .srchTbl__table-itm > * {
        flex: 1;
        word-break: break-all;
    }

        .srchTbl__table-itm > *[class*=active] {
            color: #0A7BF6;
        }

    .srchTbl__table-itm .firstName {
        flex: 0 0 82px;
    }

    .srchTbl__table-itm .lastName {
        flex: 0 0 81px;
    }

    .srchTbl__table-itm .compName {
        flex: 0 0 175px;
    }

    .srchTbl__table-itm .snNo {
        flex: 0 0 100px;
    }

    .srchTbl__table-itm .address {
        flex: 0 0 160px;
    }

    .srchTbl__table-itm .suburb {
        flex: 0 0 110px;
    }

    .srchTbl__table-itm .hmPhoneNum {
        flex: 0 0 107px;
    }

    .srchTbl__table-itm .wkPhoneNum {
        flex: 0 0 100px;
    }

    .srchTbl__table-itm .email {
        flex: 0 0 201px;
    }

    .srchTbl__table-itm .mobile {
        flex: 0 0 100px;
    }

/* Quote Table */
.quote {
    padding-top: 3px;
}

    .quote .row {
        display: flex;
        margin-right: -10px;
        margin-left: -10px;
    }

@media (max-width: 1199px) {
    .quote .row {
        flex-wrap: wrap;
    }
}

.quote__left {
    width: 100%;
    position: relative;
    z-index: 2;
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 30px;
}

@media (min-width: 1200px) {
    .quote__left {
        max-width: 570px;
        margin-bottom: 0;
    }
}

.quote__left-bg {
    background-color: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 12px 26px 12px 19px;
    padding: 14px 26px 20px 19px;
    margin-top: 20px;
}

.quote__left-smallttl {
    color: #0A7BF6;
    font-size: 16px;
    padding-top: 4px;
    margin-bottom: 6px;
}

.quote__left-btns {
    display: flex;
    gap: 10px;
}

@media (min-width: 1200px) {
    .quote__left-btns {
        display: grid;
    }
}

@media (min-width: 1500px) {
    .quote__left-btns {
        display: flex;
        justify-content: space-between;
    }
}

@media (min-width: 1200px) {
    .quote__left-btns .btn {
        width: auto;
        max-width: none;
    }
}

@media (min-width: 1500px) {
    .quote__left-btns .btn {
        width: 100%;
        max-width: 238px;
    }
}

.quote__left-info {
    font-size: 16px;
    color: #999999;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 19px;
}

.quote__left-srch {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 15px;
    margin-bottom: 23px;
}

.quote__left-srch-wrap {
    position: relative;
    border-radius: 3px;
    flex-grow: 1;
}

.quote__left-srch-fld {
    width: 100%;
    background-color: #fff;
    padding-right: 60px;
}

    .quote__left-srch-fld::-webkit-input-placeholder {
        color: #363637;
    }

    .quote__left-srch-fld:-moz-placeholder {
        color: #363637;
    }

    .quote__left-srch-fld::-moz-placeholder {
        color: #363637;
    }

    .quote__left-srch-fld:-ms-input-placeholder {
        color: #363637;
    }

.quote__left-srch-btn {
    border-radius: 3px;
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 100%;
    background-color: #0A7BF6;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    padding: 0;
}

    .quote__left-srch-btn::after {
        content: "";
        width: 20px;
        height: 20px;
        background: url("../images/customer-search-icn.png") no-repeat center center;
        display: inline-block;
        vertical-align: middle;
    }

.quote__left-srch-drpdwn {
    position: absolute;
    width: 100%;
    top: 100%;
    background-color: #fff;
    border-radius: 4px;
    overflow-y: scroll;
    height: 448px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    display: none;
}

    .quote__left-srch-drpdwn.show-dropdown {
        display: block;
    }

.quote__left-srch-drpdwn-head {
    display: flex;
    gap: 10px;
    background-color: #E5E7EB;
    position: sticky;
    top: 0;
    justify-content: space-between;
    padding: 8px 20px 7px 20px;
}

    .quote__left-srch-drpdwn-head .odrID {
        flex: 0 1 70px;
    }

    .quote__left-srch-drpdwn-head .cmpnyName {
        flex: 0 1 90px;
    }

    .quote__left-srch-drpdwn-head .jobadrs {
        flex: 0 1 110px;
    }

    .quote__left-srch-drpdwn-head .stNumbr {
        flex: 0 1 90px;
    }

    .quote__left-srch-drpdwn-head .odrdate {
        flex: 0 1 90px;
    }

.quote__left-srch-drpdwn-itm {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 20px 7px 20px;
}

    .quote__left-srch-drpdwn-itm:hover, .quote__left-srch-drpdwn-itm.active {
        color: #fff;
        background-color: #0A7BF6;
    }

    .quote__left-srch-drpdwn-itm .odrID {
        flex: 0 1 70px;
    }

    .quote__left-srch-drpdwn-itm .cmpnyName {
        flex: 0 1 90px;
    }

    .quote__left-srch-drpdwn-itm .jobadrs {
        flex: 0 1 110px;
    }

    .quote__left-srch-drpdwn-itm .stNumbr {
        flex: 0 1 90px;
    }

    .quote__left-srch-drpdwn-itm .odrdate {
        flex: 0 1 90px;
    }

.quote__searchBtn {
    min-width: 126px;
    background-color: #0A7BF6;
    border-radius: 4px;
    color: #FFFFFF;
    border: 0;
    min-height: 50px;
}

    .quote__searchBtn::before {
        content: "";
        width: 20px;
        height: 20px;
        background: url("../images/customer-search-icn.png") no-repeat center center;
        display: inline-block;
        vertical-align: middle;
        margin-top: -3px;
        margin-right: 10px;
    }

.quote__dtls {
    display: flex;
    flex-wrap: wrap;
}

    .quote__dtls > * {
        width: 100%;
    }

.quote__cstItm {
    margin-bottom: 6px;
}

@media (min-width: 1700px) {
    .quote__cstItm {
        display: flex;
        align-items: center;
    }
}

.quote__cstItm--deliver {
    margin-bottom: 6px;
}

.quote__cstItm--tenancy {
    margin-bottom: 6px;
}

.quote__cstItm--cstmr {
    position: relative;
    z-index: 1;
}

@media (min-width: 1700px) {
    .quote__cstItm-label {
        width: 138px;
        flex: 0 0 138px;
    }
}

.quote__cstItm--nogap {
    margin-bottom: 0px;
}

.quote__cstItm--seprator {
    border-top: 1px dashed #E5E7EB;
    margin: 12px 0;
}

.quote__cstItm-fld {
    display: flex;
    flex: 1;
    position: relative;
}

.quote__cstItm-fld--emsg {
    display: block;
}

    .quote__cstItm-fld--emsg [hidden] {
        display: none;
    }

.quote__cstItm-fld .form-control {
    height: 42px;
    color: #363637;
    background-color: #F2F5FA;
}

    .quote__cstItm-fld .form-control.active {
        border: 1px solid #0A7BF6;
    }

    .quote__cstItm-fld .form-control::-webkit-input-placeholder {
        color: #363637;
    }

    .quote__cstItm-fld .form-control:-moz-placeholder {
        color: #363637;
    }

    .quote__cstItm-fld .form-control::-moz-placeholder {
        color: #363637;
    }

    .quote__cstItm-fld .form-control:-ms-input-placeholder {
        color: #363637;
    }

    .quote__cstItm-fld .form-control.date {
        font-size: 15px !important;
        padding: 0 11px !important;
    }

.quote__cstItm-fld input[type=date].form-control {
    font-size: 13px;
    padding: 0 3px;
    position: relative;
}

    .quote__cstItm-fld input[type=date].form-control::-webkit-datetime-edit {
        position: absolute;
    }

    .quote__cstItm-fld input[type=date].form-control::-webkit-calendar-picker-indicator {
        position: absolute;
        right: 3px;
    }

.quote__cstItm-fld-errormsg {
    font-size: 14px;
    color: red;
    text-align: center;
    margin-top: 5px;
}

.quote__cstItm-fld-secondContactBtn {
    color: #0A7BF6;
    text-decoration: underline;
    cursor: pointer;
}

.quote__cstItm-fld--cols {
    gap: 10px;
}

.quote__cstItm-fld-c33 {
    width: 33.33%;
}

.quote__cstItm-fld-c40 {
    width: 33.33%;
}

.quote__cstItm-fld-c60 {
    width: 66.67%;
}

.quote__cstItm-radio {
    width: 50%;
}

@media (min-width: 1700px) {
    .quote__cstItm--suburb {
        width: 80%;
    }
}

@media (min-width: 1700px) {
    .quote__cstItm--postcode {
        width: 20%;
        padding-left: 10px;
    }

        .quote__cstItm--postcode .quote__cstItm-label {
            width: 80px;
            flex: 0 0 80px;
        }
}

.quote__right {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 27px;
    padding-right: 10px;
    padding-left: 10px;
}

@media (min-width: 1200px) {
    .quote__right {
        width: 65.1%;
        flex: 1 1 65.1%;
    }
}

.quote__right-top {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

@media (min-width: 1700px) {
    .quote__right-top {
        flex-direction: row;
    }
}

@media (min-width: 1700px) {
    .quote__right-top-left {
        order: 1;
    }
}

.quote__right-top-left h5 {
    font-size: 21px;
    line-height: 1.15;
    text-transform: uppercase;
}

    .quote__right-top-left h5 span {
        display: block;
    }

    .quote__right-top-left h5.orange {
        color: #FF7700;
    }

        .quote__right-top-left h5.orange span {
            color: #363637;
        }

.quote__right-top-left address {
    line-height: 1.25;
    font-style: normal;
    margin-bottom: 20px;
}

.quote__right-top-left .btn {
    font-size: 14px;
    padding: 4px 20px 4px 20px;
}

.quote__right-top-rght {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
    order: 1;
}

@media (min-width: 1700px) {
    .quote__right-top-rght {
        width: auto;
        flex-wrap: wrap;
        justify-content: flex-end;
        order: 2;
    }
}

.quote__right-top-rght > * .btn {
    min-width: 154px;
}

.quote__right-prodtn {
    margin-top: 15px;
}

@media (min-width: 1700px) {
    .quote__right-prodtn {
        text-align: right;
        min-height: 103px;
        margin-top: -26px;
        margin-bottom: -78px;
    }
}

.quote__right-prodtn .statusColor {
    color: #08D26F;
    font-size: 21px;
    margin-bottom: -1px;
}

.quote__right-prodtn .batchColor {
    color: #FF7700;
    font-size: 21px;
    margin-bottom: -1px;
}

.quote__right-prodtn h5 span {
    color: #363637;
}

.quote__right-prodtn ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.quote__right-rep {
    font-family: "aileronbold";
    color: #363637;
    margin-top: 15px;
}

.quote__custom-tab {
    padding-top: 25px;
}

@media (min-width: 1700px) {
    .quote__custom-tab {
        padding-top: 85px;
    }
}

@media (min-width: 1400px) {
    .quote__custom-tab-top {
        display: flex;
        justify-content: space-between;
    }
}

.quote__custom-tab .tab-nav {
    text-align: center;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    background-color: #E5E7EB;
    display: inline-flex;
    flex-wrap: wrap;
    border: 1px solid #E5E7EB;
    order: 1;
    border-radius: 4px 4px 0px 4px;
}

.quote__custom-tab .tab-nav__item:not(:last-child) .tab-nav__link {
    position: relative;
}

    .quote__custom-tab .tab-nav__item:not(:last-child) .tab-nav__link::after {
        width: 1px;
        height: 36px;
        background-color: #363637;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

.quote__custom-tab .tab-nav__link {
    color: #363637;
    display: block;
    min-width: 154px;
    padding: 14px 12px 12px 13px;
}

    .quote__custom-tab .tab-nav__link.active {
        background-color: #0A7BF6;
        color: #fff;
        border-radius: 4px;
        position: relative;
        z-index: 1;
    }

        .quote__custom-tab .tab-nav__link.active::after {
            display: none;
        }

.quote__custom-tab-content {
    position: relative;
    z-index: 1;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
}

    .quote__custom-tab-content .tab-pane {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

.quote__custom-tab-btns {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    order: 2;
    margin-bottom: 10px;
}

@media (min-width: 1400px) {
    .quote__custom-tab-btns {
        margin-top: -9px;
        margin-bottom: 0;
    }
}

.quote__calNts {
    background-color: #fff;
    height: 100%;
    overflow: auto;
}

    .quote__calNts input[type=checkbox] {
        width: 18px;
        height: 18px;
        margin-right: 3.5px;
    }

.quote__calNts-vscrl {
    min-width: 1209px;
    height: 668px;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-y: scroll;
}

    .quote__calNts-vscrl::-webkit-scrollbar {
        width: 0px;
        background: transparent; /* Disable scrollbar Chrome/Safari/Webkit */
    }

.quote__calNts-actns {
    display: flex;
    align-items: center;
    padding: 13px 10px 15px 9px;
}

.quote__calNts-actns-sall {
    position: relative;
    flex: 0 0 132px;
    width: 132px;
}

    .quote__calNts-actns-sall label {
        white-space: nowrap;
    }

    .quote__calNts-actns-sall::after {
        content: "";
        width: 1px;
        height: 36px;
        background-color: #363637;
        position: absolute;
        top: -6px;
        right: 20px;
    }

    .quote__calNts-actns-sall input[type=checkbox] {
        width: 18px;
        height: 18px;
    }

.quote__calNts-actns-btns {
    display: flex;
    gap: 10px;
}

    .quote__calNts-actns-btns a {
        display: inline-block;
        background-color: rgba(10, 123, 246, 0.1607843137);
        border: 1px solid #0A7BF6;
        border-radius: 4px;
        padding: 8px 9px 6px 9px;
    }

        .quote__calNts-actns-btns a.orange {
            color: #FF7700;
            background: rgba(255, 119, 0, 0.1607843137);
            border: 1px solid #FF7700;
        }

.quote__calNts-itm-head {
    background-color: #E5E7EB;
    display: flex;
}

    .quote__calNts-itm-head > * {
        padding: 10px 9px 8px 9px;
    }

        .quote__calNts-itm-head > *:not(:last-child) {
            border-right: 1px solid #363637;
        }

    .quote__calNts-itm-head .date {
        white-space: nowrap;
        flex: 1 0 164px;
    }

        .quote__calNts-itm-head .date span {
            padding-left: 15px;
        }

    .quote__calNts-itm-head .time {
        text-align: center;
        flex: 1 0 102px;
    }

    .quote__calNts-itm-head .sender {
        flex: 1 0 359px;
        padding-left: 30px;
    }

    .quote__calNts-itm-head .sendTo {
        flex: 1 0 336px;
        padding-left: 30px;
    }

    .quote__calNts-itm-head .reason {
        flex: 1 0 190px;
        padding-left: 30px;
        border-right: 0;
    }

    .quote__calNts-itm-head .delete {
        cursor: pointer;
        flex: 0 0 50px;
        width: 32px;
        height: 32px;
        background-image: url("../images/delete-icn.svg");
        background-repeat: no-repeat;
        background-size: contain;
        align-self: center;
    }

.quote__calNts-itm-colpnot {
    padding: 19px 26px 7px 19px;
}

.quote__calNts-itm-colpnot-h {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

    .quote__calNts-itm-colpnot-h span {
        cursor: pointer;
        color: #0A7BF6;
    }

        .quote__calNts-itm-colpnot-h span::after {
            content: "";
            width: 12px;
            height: 6px;
            display: inline-block;
            vertical-align: middle;
            background-image: url("../images/quote-colp-up-icn.svg");
            background-size: contain;
            background-repeat: no-repeat;
            margin-top: -4px;
            margin-left: 5px;
        }

    .quote__calNts-itm-colpnot-h:not(.active) span::after {
        background-image: url("../images/quote-colp-dwn-icn.svg");
    }

.quote__calNts-itm-colpnot-bdy > div:first-child {
    line-height: 1.4;
    padding: 16px 0 10px 0;
}

    .quote__calNts-itm-colpnot-bdy > div:first-child > *:last-child {
        margin-bottom: 0;
    }

.quote__calNts-itm-colpnot-bdy:not(.active) {
    display: none;
}

.quote__calNts-itm-dwnlod-divstyle {
    display: flex;
    gap: 10px
}

.quote__calNts-itm-dwnlod {
    display: flex;
    background: #F2F5FA;
    border: 1px solid #E5E7EB;
    border-radius: 5px;
    max-width: 200px;
    padding: 9px 10px 7px 10px;
    margin-top: 7px;
    margin-bottom: 23px;
}

.quote__calNts-itm-dwnlod-icn {
    flex-shrink: 0;
    margin-right: 10px;
}

.quote__calNts-itm-dwnlod-rgt {
    line-height: 1.7;
    flex-grow: 1;
    margin-top: -2px;
}

.quote__calNts-itm-dwnlod-fileName {
    font-family: "aileronbold";
    font-size: 13px;
}

.quote__calNts-itm-dwnlod-link {
    font-size: 12px;
}

    .quote__calNts-itm-dwnlod-link a {
        color: #0A7BF6;
    }

.quote__odrNts {
    background-color: #fff;
    height: 100%;
    overflow: auto;
    padding: 28px 28px 28px 29px;
}

.quote__odrNts-vscrl {
    min-width: 1154px;
}

.quote__odrNts-itm {
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    .quote__odrNts-itm {
        display: flex;
    }
}

.quote__odrNts-itm .label {
    flex: 0 0 196px;
}

.quote__odrNts-itm textarea.form-control {
    background-color: #fff;
    min-height: 120px;
}

    .quote__odrNts-itm textarea.form-control.active {
        background: #F2F5FA;
        border: 1px solid #0A7BF6;
    }

.quote__odrNts-itm > div {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

    .quote__odrNts-itm > div .btn {
        min-width: 166px;
    }

.quote__schdl {
    background-color: #fff;
    height: 100%;
    overflow: auto;
    padding: 28px 28px 28px 29px;
}

.quote__schdl-vscrl {
    min-width: 1154px;
}

.quote__rprt {
    background-color: #fff;
    height: 100%;
    overflow: auto;
    padding: 28px 28px 28px 29px;
}

.quote__rprt-vscrl {
    min-width: 1154px;
}

.quote__rprt-itm {
    margin-bottom: 10px;
}

.quote__rprt-itm--gap {
    margin-bottom: 30px;
}

.quote__rprt-itm .form-control {
    height: 40px;
    max-width: 400px;
}

.quote__rprt-itm-btn {
    color: #0A7BF6;
    text-align: center;
    background-color: rgba(10, 123, 246, 0.08);
    display: inline-block;
    max-width: 400px;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #0A7BF6;
    padding: 8px 10px 6px 10px;
}

    .quote__rprt-itm-btn.active, .quote__rprt-itm-btn:hover {
        color: #FF7700;
        border: 1px solid #FF7700;
        background-color: rgba(255, 119, 0, 0.08);
    }
/* Order Table */
.order {
    overflow-x: auto;
    display: flex;
    height: calc(100vh - 24px);
}

.order__mod {
    grid-template-columns: 550px auto;
}

.order .row {
    display: flex;
    margin-right: -10.5px;
    margin-left: -10.5px;
}

@media (max-width: 1199px) {
    .order .row {
        flex-wrap: wrap;
    }
}

.order__left {
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin-bottom: 30px;
}

@media (min-width: 1200px) {
    .order__left {
        margin-bottom: 0;
    }
}

.order__left-wrap {
    position: relative;
    width: 550px;
}

.order__left-vtxt {
    font-family: "aileronbold";
    color: #0A7BF6;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

    .order__left-vtxt.hide {
        display: none;
    }

.order__left-closebtn {
    cursor: pointer;
    width: 20px;
    height: 40px;
    border: 0;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url("../images/order-left-openbtn.svg");
    z-index: 3;
    padding: 0;
}

    .order__left-closebtn.open {
        background-image: url("../images/order-left-closebtn.svg");
    }

.order__left-closebtn--top {
    top: 150px;
    display: none;
}

    .order__left-closebtn--top:not(.open) {
        display: block;
    }

.order__left-bg {
    background-color: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    position: relative;
    padding: 14px 26px 20px 19px;
    margin-top: 20px;
}

.order__left-smallttl {
    color: #0A7BF6;
    font-size: 16px;
    padding-top: 4px;
    margin-bottom: 25px;
}

.order__left-btns {
    display: flex;
    gap: 10px;
}

@media (min-width: 1200px) {
    .order__left-btns {
        display: grid;
    }
}

@media (min-width: 1500px) {
    .order__left-btns {
        display: flex;
        justify-content: space-between;
    }
}

@media (min-width: 1200px) {
    .order__left-btns .btn {
        width: auto;
        max-width: none;
    }
}

@media (min-width: 1500px) {
    .order__left-btns .btn {
        width: 100%;
        max-width: 238px;
    }
}

.order__left-info {
    font-size: 12px;
    color: #999999;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 19px;
}

.order__left-srch {
    position: relative;
    z-index: 1;
    margin-bottom: 23px;
}

.order__left-srch-wrap {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}

.order__left-srch-fld {
    width: 100%;
    background-color: #fff;
}

    .order__left-srch-fld::-webkit-input-placeholder {
        color: #363637;
    }

    .order__left-srch-fld:-moz-placeholder {
        color: #363637;
    }

    .order__left-srch-fld::-moz-placeholder {
        color: #363637;
    }

    .order__left-srch-fld:-ms-input-placeholder {
        color: #363637;
    }

.order__left-srch-btn {
    border-radius: 3px;
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 100%;
    background-color: #0A7BF6;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    padding: 0;
}

    .order__left-srch-btn::after {
        content: "";
        width: 20px;
        height: 20px;
        background: url("../images/customer-search-icn.png") no-repeat center center;
        display: inline-block;
        vertical-align: middle;
    }

.order__left-srch-drpdwn {
    position: absolute;
    width: 100%;
    top: 100%;
    background-color: #fff;
    border-radius: 4px;
    overflow-y: scroll;
    height: 448px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    display: none;
}

    .order__left-srch-drpdwn.show-dropdown {
        display: block;
    }

.order__left-srch-drpdwn-head {
    display: flex;
    gap: 10px;
    background-color: #E5E7EB;
    position: sticky;
    top: 0;
    padding: 8px 20px 7px 20px;
}

    .order__left-srch-drpdwn-head > div:first-child {
        flex: 0 1 245px;
    }

    .order__left-srch-drpdwn-head > div:nth-child(2) {
        flex: 0 1 132px;
    }

    .order__left-srch-drpdwn-head > div:last-child {
        flex: 0 1 95px;
    }

.order__left-srch-drpdwn-itm {
    display: flex;
    gap: 10px;
    padding: 9px 20px 7px 20px;
}

    .order__left-srch-drpdwn-itm:hover, .order__left-srch-drpdwn-itm.active {
        color: #fff;
        background-color: #0A7BF6;
    }

    .order__left-srch-drpdwn-itm > div:first-child {
        flex: 0 1 245px;
    }

    .order__left-srch-drpdwn-itm > div:nth-child(2) {
        flex: 0 1 132px;
    }

    .order__left-srch-drpdwn-itm > div:last-child {
        flex: 0 1 95px;
    }

.order__searchBtn {
    min-width: 126px;
    background-color: #0A7BF6;
    border-radius: 4px;
    color: #FFFFFF;
    border: 0;
    min-height: 50px;
}

    .order__searchBtn::before {
        content: "";
        width: 20px;
        height: 20px;
        background: url("../images/customer-search-icn.png") no-repeat center center;
        display: inline-block;
        vertical-align: middle;
        margin-top: -3px;
        margin-right: 10px;
    }

.order__dtls {
    display: flex;
    flex-wrap: wrap;
}

    .order__dtls > * {
        width: 100%;
    }

.order__cstItm {
    margin-bottom: 6px;
}

@media (min-width: 1700px) {
    .order__cstItm {
        display: flex;
        align-items: center;
    }
}

.order__cstItm--deliver {
    margin-bottom: 6px;
}

.order__cstItm--tenancy {
    margin-bottom: 6px;
}

.order__cstItm--cstmr {
    position: relative;
    z-index: 1;
}

@media (min-width: 1700px) {
    .order__cstItm-label {
        width: 138px;
        flex-shrink: 0;
    }
}

.order__cstItm--nogap {
    margin-bottom: 0px;
}

.order__cstItm--seprator {
    border-top: 1px dashed #E5E7EB;
    margin: 12px 0;
}

.order__cstItm-fld {
    display: flex;
    flex-grow: 1;
    position: relative;
}

.order__cstItm-fld--emsg {
    display: block;
}

    .order__cstItm-fld--emsg [hidden] {
        display: none;
    }

.order__cstItm-fld .form-control {
    height: 42px;
    color: #363637;
    background-color: #F2F5FA;
}

    .order__cstItm-fld .form-control.active {
        border: 1px solid #0A7BF6;
    }

    .order__cstItm-fld .form-control::-webkit-input-placeholder {
        color: #363637;
    }

    .order__cstItm-fld .form-control:-moz-placeholder {
        color: #363637;
    }

    .order__cstItm-fld .form-control::-moz-placeholder {
        color: #363637;
    }

    .order__cstItm-fld .form-control:-ms-input-placeholder {
        color: #363637;
    }

.order__cstItm-fld-errormsg {
    font-size: 14px;
    color: red;
    text-align: center;
    margin-top: 5px;
}

.order__cstItm-fld input[type=date].form-control {
    font-size: 13px;
    padding: 0 3px;
    position: relative;
}

    .order__cstItm-fld input[type=date].form-control::-webkit-datetime-edit {
        position: absolute;
    }

    .order__cstItm-fld input[type=date].form-control::-webkit-calendar-picker-indicator {
        position: absolute;
        right: 0px;
        width: 20px;
        height: 20px;
    }

.order__cstItm-fld-secondContactBtn {
    color: #0A7BF6;
    text-decoration: underline;
    cursor: pointer;
}

.order__cstItm-fld--cols {
    gap: 10px;
}

.order__cstItm-fld-c33 {
    width: 33.33%;
}

.order__cstItm-fld-c40 {
    width: 33.33%;
}

.order__cstItm-fld-c60 {
    width: 66.67%;
}

.order__cstItm-radio {
    width: 50%;
}

@media (min-width: 1700px) {
    .order__cstItm--suburb {
        width: 59%;
    }
}

@media (min-width: 1700px) {
    .order__cstItm--postcode {
        width: 41%;
        padding-left: 24px;
    }

        .order__cstItm--postcode .order__cstItm-label {
            width: 80px;
            flex: 0 0 80px;
        }
}

.order__right {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 1739px;
    flex-grow: 1;
}

.order__right--chase {
    min-width: 1739px;
}

.order__right-top {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.order__right-top-left {
    flex-grow: 1;
    padding-left: 1px;
    margin-top: -2px;
}

.order__right-top-breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

    .order__right-top-breadcrumb ul li {
        color: #0A7BF6;
        font-family: "aileronbold";
    }

        .order__right-top-breadcrumb ul li + li::before {
            content: ">";
            color: #404040;
            margin: 0 3.2px;
        }

        .order__right-top-breadcrumb ul li a {
            color: #404040;
        }

.order__right-top-option {
    display: flex;
    justify-content: space-between;
    gap: 64px;
    margin-top: 23px;
}

.order__right-top-numbers {
    color: #404040;
    display: flex;
    align-items: flex-start;
    width: 889px;
}

    .order__right-top-numbers > div:first-child {
        font-family: "aileronbold";
        font-size: 21px;
        background: #F8EBC1;
        border: 1px solid #FF7700;
        border-radius: 4px;
        padding: 4px 19px 4px 20px;
    }

    .order__right-top-numbers > div:nth-child(2) {
        font-family: "aileronbold";
        font-size: 21px;
        display: flex;
        flex-grow: 1;
        align-items: center;
        white-space: nowrap;
        padding-left: 40px;
    }

        .order__right-top-numbers > div:nth-child(2) input[type=text] {
            font-family: "aileronregular";
            font-size: 21px;
            color: #404040;
            background: #F8EBC1;
            border-radius: 4px;
            width: 100%;
            height: 42px;
            padding: 4px 14px;
            margin-left: 10px;
        }

.order__right-top-email {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

    .order__right-top-email .btn {
        font-size: 16px;
        padding: 13px 19px 11px 18px;
    }

    .order__right-top-email div {
        font-family: "aileronbold";
        color: #363637;
        border: 1px solid #E5E7EB;
        border-radius: 4px;
        background-color: #fff;
        padding: 12px 49px;
    }

.order__right-top-rght {
    width: 432px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
    position: relative;
}

.order__right-top-close {
    padding: 3px 45px 1px 46px;
    margin-bottom: 15px;
}

    .order__right-top-close::after {
        content: "";
        width: 13px;
        height: 13px;
        display: inline-block;
        vertical-align: middle;
        background-image: url("../images/order-close-icn.svg");
        background-position: center;
        background-repeat: no-repeat;
        margin-top: -3px;
        margin-left: 7px;
    }

.order__right-top-textarea {
    width: 100%;
    height: 162px;
    border: 1px solid #363637;
    border-radius: 8px;
    overflow: hidden;
    position: absolute;
    top: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .order__right-top-textarea.expand {
        height: 551px;
    }

    .order__right-top-textarea textarea {
        font-family: inherit;
        font-size: inherit;
        width: 100%;
        height: 100%;
        resize: none;
        border: 0;
        background-color: #fff;
        padding: 16px 14px;
    }

        .order__right-top-textarea textarea:disabled {
            background-color: #fff;
        }

.order__right-top-textarea-arrow {
    width: 100%;
    height: 15px;
    background-color: #E5E7EB;
    position: absolute;
    bottom: 0;
    left: 0;
    cursor: pointer;
    border-radius: 0px 0px 8px 8px;
    background-image: url("../images/expand-arrow.svg");
    background-position: center center;
    background-repeat: no-repeat;
}

    .order__right-top-textarea-arrow.open {
        background-image: url("../images/collapse-arrow.svg");
    }

.order__right-top-name {
    font-family: "aileronbold";
    font-size: 21px;
    color: #404040;
    margin-top: 5px;
}

.order__right-top-btns {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 25px;
}

    .order__right-top-btns .btn {
        min-width: 155px;
    }

.order__right-top-btmbtns {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 20px;
}

    .order__right-top-btmbtns > div {
        display: flex;
        gap: 10px;
    }

    .order__right-top-btmbtns .btn {
        width: 100%;
        min-width: 142px;
    }

        .order__right-top-btmbtns .btn.sendList {
            padding: 2px 20px 2px 20px;
        }

.order__tbl {
    background-color: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-top: 30px;
}

.order__tbl-heading {
    font-family: "aileronbold";
    font-size: 21px;
    color: #363637;
    text-transform: uppercase;
    text-align: center;
    background: #E5E7EB;
    border-radius: 8px 8px 0px 0px;
    padding: 12px 10px;
}

.order__tbl-top {
    flex-grow: 1;
    height: 250px;
    overflow-x: auto;
}

.order__tbl-btm {
    margin-top: 50px;
}

.order__tbl select {
    width: 160px;
    height: 42px;
    background-color: #F2F5FA;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    padding-left: 10px;
}

.order__tbl input[type=checkbox].checkbox-all,
.order__tbl input[type=checkbox].checkbox-indvl {
    width: 18px;
    height: 18px;
    margin: 0;
    vertical-align: top;
}

    .order__tbl input[type=checkbox].checkbox-all:checked,
    .order__tbl input[type=checkbox].checkbox-indvl:checked {
        border-color: #000;
        background-color: #000;
    }

.order__tbl-head {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #363637;
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 1;
}

    .order__tbl-head > div {
        flex: 1 0 126px;
        padding-top: 9px;
        padding-right: 9px;
        padding-bottom: 9px;
        padding-left: 11px;
    }

        .order__tbl-head > div .add {
            font-family: "aileronbold";
            color: #fff;
            background-color: #363637;
            display: inline-block;
            border-radius: 4px;
            padding: 4px 10px 2px 9px;
        }

    .order__tbl-head .option {
        flex: 1 0 135px;
        padding-left: 20px;
    }

    .order__tbl-head .quote {
        flex: 1 0 179px;
    }

    .order__tbl-head .rrp {
        flex: 1 0 152px;
    }

    .order__tbl-head .measure {
        flex: 1 0 337px;
    }

    .order__tbl-head .submit {
        flex: 1 0 496px;
    }

    .order__tbl-head .select {
        flex: 1 0 212px;
    }

    .order__tbl-head .actions {
        flex: 1 0 226px;
    }

.order__tbl-head--expand .option {
    flex: 1 0 156px;
}

.order__tbl-head--expand .quote {
    flex: 1 0 245px;
}

.order__tbl-head--expand .rrp {
    flex: 1 0 183px;
}

.order__tbl-head--expand .measure {
    flex: 1 0 342px;
}

.order__tbl-head--expand .submit {
    flex: 1 0 396px;
}

.order__tbl-head--expand .select {
    flex: 1 0 180px;
}

.order__tbl-head--expand .actions {
    flex: 1 0 109px;
}

.order__tbl-head--expand .expand {
    flex: 1 0 106px;
}

.order__tbl-head--email > div {
    flex: 1 0 auto;
}

.order__tbl-head--email .option {
    flex: 1 0 155px;
}

.order__tbl-head--email .quote {
    flex: 1 0 160px;
}

.order__tbl-head--email .rrp {
    flex: 1 0 137px;
}

.order__tbl-head--email .measure {
    flex: 1 0 260px;
}

.order__tbl-head--email .submit {
    flex: 1 0 259px;
}

.order__tbl-head--email .email {
    flex: 1 0 352px;
}

.order__tbl-head--email .select {
    flex: 1 0 auto;
}

.order__tbl-head--email .actions {
    flex: 1 0 109px;
}

.order__tbl-head--email .expand {
    flex: 1 0 106px;
}

.order__tbl-head--file > div {
    flex: 1 0 auto;
}

.order__tbl-head--file .option {
    flex: 1 0 153px;
}

.order__tbl-head--file .quote {
    flex: 1 0 243px;
}

.order__tbl-head--file .rrp {
    flex: 1 0 170px;
}

.order__tbl-head--file .measure {
    flex: 1 0 351px;
}

.order__tbl-head--file .submit {
    flex: 1 0 311px;
}

.order__tbl-head--file .file {
    flex: 1 0 114px;
}

.order__tbl-head--file .select {
    flex: 1 0 auto;
}

.order__tbl-head--file .actions {
    flex: 1 0 108px;
}

.order__tbl-head--file .expand {
    flex: 1 0 106px;
}

.order__tbl-itm {
    border-bottom: 1px solid #363637;
}

    .order__tbl-itm[draggable=true] {
        cursor: grab;
    }

.order__tbl-itm-wrap {
    display: flex;
}

    .order__tbl-itm-wrap > div {
        flex: 1 0 126px;
        padding-top: 11px;
        padding-right: 9px;
        padding-bottom: 9px;
        padding-left: 11px;
        line-height: 1.5;
        display: flex;
        align-items: center;
        position: relative;
    }

    .order__tbl-itm-wrap .option {
        background-color: #fff;
        flex: 1 0 135px;
        padding-left: 29px;
        /*width: 165px;*/
    }

        .order__tbl-itm-wrap .option.drager {
            color: #fff;
            background-color: #0A7BF6;
            padding-left: 11px;
            overflow: hidden;
        }

            .order__tbl-itm-wrap .option.drager .manual {
                display: flex;
            }

                .order__tbl-itm-wrap .option.drager .manual a.current-inactive {
                    color: #000;
                    text-decoration: underline;
                }

                .order__tbl-itm-wrap .option.drager .manual a {
                    color: #fff;
                    text-decoration: underline;
                    /*display: block;*/ /* Makes the anchor act like a block element */
                    overflow: hidden; /* Hides overflow content */
                    text-overflow: ellipsis; /* Adds ellipsis for overflowing text */
                    white-space: nowrap; /* Prevents text from wrapping */
                    max-width: 100%;
                }

                .order__tbl-itm-wrap .option.drager .manual::before {
                    content: "";
                    width: 9px;
                    height: 25px;
                    display: inline-block;
                    vertical-align: middle;
                    background-image: url("../images/drager-icn.svg");
                    background-position: center center;
                    background-repeat: no-repeat;
                    cursor: move;
                    cursor: grab;
                    margin-top: -2px;
                    margin-right: 10px;
                }

    .order__tbl-itm-wrap .quote {
        flex: 1 0 179px;
    }

    .order__tbl-itm-wrap .rrp {
        flex: 1 0 152px;
    }

    .order__tbl-itm-wrap .measure {
        width: 337px;
        flex: 1 0 337px;
    }

    .order__tbl-itm-wrap .submit {
        flex: 1 0 496px;
    }

    .order__tbl-itm-wrap .select {
        flex: 1 0 212px;
    }

    .order__tbl-itm-wrap .actions {
        flex: 1 0 226px;
    }

        .order__tbl-itm-wrap .actions > * + * {
            margin-left: 18px;
        }

        .order__tbl-itm-wrap .actions .achive-btn {
            display: inline-block;
            border: 0;
            width: 16.53px;
            height: 18px;
            background-color: transparent;
            background-image: url("../images/archive-icn.svg");
        }

        .order__tbl-itm-wrap .actions .delete-btn {
            display: inline-block;
            border: 0;
            width: 14.62px;
            height: 18px;
            background-color: transparent;
            background-image: url("../images/delete-icn1.svg");
        }

    .order__tbl-itm-wrap .expand::after {
        content: "";
        width: 12px;
        height: 6px;
        display: inline-block;
        background-image: url("../images/expand-arrow.svg");
        transform: rotate(-180deg);
        position: absolute;
        right: 10px;
        margin-left: 10px;
    }

    .order__tbl-itm-wrap .expand:not(.active)::after {
        transform: rotate(0deg);
    }

.order__tbl-itm-wrap--expand .option {
    flex: 1 0 156px;
}

.order__tbl-itm-wrap--expand .quote {
    flex: 1 0 245px;
}

.order__tbl-itm-wrap--expand .rrp {
    flex: 1 0 183px;
}

.order__tbl-itm-wrap--expand .measure {
    flex: 1 0 342px;
}

.order__tbl-itm-wrap--expand .submit {
    flex: 1 0 396px;
}

.order__tbl-itm-wrap--expand .select {
    flex: 1 0 180px;
}

.order__tbl-itm-wrap--expand .actions {
    flex: 1 0 109px;
}

.order__tbl-itm-wrap--expand .expand {
    flex: 1 0 106px;
}

.order__tbl-itm-wrap--email > div {
    width: auto;
    flex: 1 0 auto;
}

.order__tbl-itm-wrap--email .option {
    background-color: #fff;
    flex: 1 0 155px;
}

.order__tbl-itm-wrap--email .quote {
    flex: 1 0 160px;
}

.order__tbl-itm-wrap--email .rrp {
    flex: 1 0 137px;
}

.order__tbl-itm-wrap--email .measure {
    flex: 1 0 260px;
}

.order__tbl-itm-wrap--email .submit {
    flex: 1 0 259px;
}

.order__tbl-itm-wrap--email .email {
    flex: 1 0 352px;
}

.order__tbl-itm-wrap--email .select {
    flex: 1 0 auto;
}

.order__tbl-itm-wrap--email .actions {
    flex: 1 0 109px;
}

.order__tbl-itm-wrap--email .expand {
    flex: 1 0 106px;
}

.order__tbl-itm-wrap--file > div {
    flex: 1 0 auto;
}

.order__tbl-itm-wrap--file .option {
    background-color: #fff;
    flex: 1 0 153px;
}

.order__tbl-itm-wrap--file .quote {
    flex: 1 0 243px;
}

.order__tbl-itm-wrap--file .rrp {
    flex: 1 0 170px;
}

.order__tbl-itm-wrap--file .measure {
    flex: 1 0 351px;
}

.order__tbl-itm-wrap--file .submit {
    flex: 1 0 311px;
}

.order__tbl-itm-wrap--file .file {
    flex: 1 0 114px;
}

.order__tbl-itm-wrap--file .select {
    flex: 1 0 auto;
}

.order__tbl-itm-wrap--file .actions {
    flex: 1 0 108px;
}

.order__tbl-itm-wrap--file .expand {
    flex: 1 0 104px;
}

.order__tbl-itm-wrap--white {
    color: rgba(54, 54, 55, 0.6);
    background-color: rgba(255, 255, 255, 0.25);
}

    .order__tbl-itm-wrap--white .option {
        background-color: #fff;
        width: 155px;
    }

        .order__tbl-itm-wrap--white .option.drager {
            color: rgba(54, 54, 55, 0.6);
            background-color: #fff;
        }

            .order__tbl-itm-wrap--white .option.drager .manual a {
                color: rgba(54, 54, 55, 0.6);
            }

            .order__tbl-itm-wrap--white .option.drager .manual::before {
                background-image: url("../images/drager-dark-icn.svg");
            }

.order__tbl-itm-wrap--green {
    background-color: rgba(8, 210, 111, 0.25);
}

    .order__tbl-itm-wrap--green .option {
        background-color: #c2defd;
    }

.order__tbl-itm-wrap--red {
    background-color: rgba(255, 6, 6, 0.25);
}

.order__tbl-itm-optn {
    display: flex;
    gap: 36px;
    padding: 20px 20px 10px 20px;
}

    .order__tbl-itm-optn .label {
        font-family: "aileronbold";
        color: #404040;
        display: block;
        margin-bottom: 13px;
    }

        .order__tbl-itm-optn .label a {
            text-decoration: underline;
            white-space: nowrap;
        }

    .order__tbl-itm-optn .left {
        width: 39.5%;
    }

        .order__tbl-itm-optn .left .optnFld {
            display: flex;
            align-items: flex-end;
            gap: 10px;
        }

            .order__tbl-itm-optn .left .optnFld > div:first-child {
                flex-shrink: 0;
                width: 140px;
            }

            .order__tbl-itm-optn .left .optnFld > div:nth-child(2) {
                flex-grow: 1;
            }

            .order__tbl-itm-optn .left .optnFld input {
                border-radius: 4px;
                width: 100%;
                height: 42px;
            }

            .order__tbl-itm-optn .left .optnFld .field {
                text-align: center;
                color: #404040;
                background: rgba(255, 119, 0, 0.2);
                border: 1px solid #FF7700;
                padding: 0 10px;
            }

                .order__tbl-itm-optn .left .optnFld .field::-webkit-input-placeholder {
                    color: black;
                }

                .order__tbl-itm-optn .left .optnFld .field:-moz-placeholder {
                    color: black;
                }

                .order__tbl-itm-optn .left .optnFld .field::-moz-placeholder {
                    color: black;
                }

                .order__tbl-itm-optn .left .optnFld .field:-ms-input-placeholder {
                    color: black;
                }

            .order__tbl-itm-optn .left .optnFld .field2 {
                background: #F2F5FA;
                border: 1px solid #E5E7EB;
                padding: 0 10px;
            }

        .order__tbl-itm-optn .left .reqBtn {
            display: flex;
            gap: 10px;
            margin-top: 19px;
        }

            .order__tbl-itm-optn .left .reqBtn .fancyCheckbox {
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                width: 140px;
                height: 42px;
                position: relative;
                border: 1px solid #E5E7EB;
                border-radius: 4px;
                background: #F2F5FA;
                display: flex;
                cursor: pointer;
                margin: 0;
            }

                .order__tbl-itm-optn .left .reqBtn .fancyCheckbox::before, .order__tbl-itm-optn .left .reqBtn .fancyCheckbox::after {
                    width: 50%;
                    text-align: center;
                    line-height: 42px;
                    -webkit-transition: all 0.3s ease-in-out;
                    -moz-transition: all 0.3s ease-in-out;
                    -ms-transition: all 0.3s ease-in-out;
                    -o-transition: all 0.3s ease-in-out;
                    transition: all 0.3s ease-in-out;
                    border-radius: 4px;
                }

                .order__tbl-itm-optn .left .reqBtn .fancyCheckbox::before {
                    content: "No";
                    background-color: #363637;
                    color: #fff;
                }

                .order__tbl-itm-optn .left .reqBtn .fancyCheckbox::after {
                    color: #404040;
                    content: "Yes";
                }

                .order__tbl-itm-optn .left .reqBtn .fancyCheckbox:checked::before {
                    color: #404040;
                    background-color: transparent;
                }

                .order__tbl-itm-optn .left .reqBtn .fancyCheckbox:checked::after {
                    color: #fff;
                    background-color: #08D26F;
                }

    .order__tbl-itm-optn .right {
        width: calc(60.7% - 39px);
    }

        .order__tbl-itm-optn .right .fld {
            height: 42px;
            background-color: #F2F5FA;
            border: 1px solid #E5E7EB;
            border-radius: 4px;
            width: 100%;
            padding: 0 10px;
        }

            .order__tbl-itm-optn .right .fld::-webkit-input-placeholder {
                color: #363637;
            }

            .order__tbl-itm-optn .right .fld:-moz-placeholder {
                color: #363637;
            }

            .order__tbl-itm-optn .right .fld::-moz-placeholder {
                color: #363637;
            }

            .order__tbl-itm-optn .right .fld:-ms-input-placeholder {
                color: #363637;
            }

            .order__tbl-itm-optn .right .fld.green {
                background: rgba(8, 210, 111, 0.2);
                border: 1px solid #08D26F;
            }

            .order__tbl-itm-optn .right .fld.slct {
                padding-right: 22px;
            }

        .order__tbl-itm-optn .right .top {
            display: flex;
            gap: 16px;
        }

            .order__tbl-itm-optn .right .top .itm {
                width: 14.2%;
            }

        .order__tbl-itm-optn .right .btm {
            display: flex;
            gap: 16px;
            margin-top: 19px;
        }

            .order__tbl-itm-optn .right .btm .itm {
                width: 14.2%;
            }

                .order__tbl-itm-optn .right .btm .itm.last {
                    width: auto;
                }

                .order__tbl-itm-optn .right .btm .itm .fld {
                    height: 42px;
                    background-color: #F2F5FA;
                    border: 1px solid #E5E7EB;
                    border-radius: 4px;
                }

                    .order__tbl-itm-optn .right .btm .itm .fld.green {
                        background: rgba(8, 210, 111, 0.2);
                        border: 1px solid #08D26F;
                    }

                .order__tbl-itm-optn .right .btm .itm .rs {
                    font-family: "aileronbold";
                    text-decoration: underline;
                }

.order__tbl-itm-note {
    padding: 9px 20px 10px 20px;
}

    .order__tbl-itm-note .show-note {
        font-family: "aileronbold";
        color: #0A7BF6;
    }

        .order__tbl-itm-note .show-note::after {
            content: "";
            width: 12px;
            height: 6px;
            display: inline-block;
            vertical-align: middle;
            background-image: url("../images/show-notes-down-arrow.svg");
            background-repeat: no-repeat;
            background-size: contain;
            transform: rotate(-180deg);
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
            margin-left: 10px;
        }

        .order__tbl-itm-note .show-note:not(.open)::after {
            transform: rotate(0deg);
        }

    .order__tbl-itm-note .show-note-wrap {
        padding: 20px 0 10px 0;
    }

    .order__tbl-itm-note .label {
        font-family: "aileronbold";
        color: #404040;
        display: block;
        margin-bottom: 8px;
    }

    .order__tbl-itm-note .row {
        margin-right: -20px;
        margin-left: -20px;
    }

    .order__tbl-itm-note .itm {
        width: 25%;
        padding-right: 20px;
        padding-left: 20px;
    }

        .order__tbl-itm-note .itm textarea {
            background: #F2F5FA;
            border: 1px solid #363637;
            border-radius: 8px;
            width: 100%;
            height: 100px;
            resize: none;
            padding: 15px;
        }

    .order__tbl-itm-note .last-edit {
        text-align: right;
        font-family: "aileronbold";
        color: #404040;
    }

.order__tbl-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-right: 21px;
    padding-left: 21px;
}

    .order__tbl-btns .btn {
        min-width: 140px;
    }

.order__tbl-dwnlod {
    border-top: 1px solid rgba(54, 54, 55, 0.45);
    padding: 20px 21px 0 21px;
    margin-top: 20px;
}

.order__tbl-dwnlod-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .order__tbl-dwnlod-btn .btn {
        min-width: 140px;
    }

.order__tbl-dwnlod-select {
    font-family: "aileronbold";
    color: #363637;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(10, 123, 246, 0.0784313725);
    border: 1px dashed #0A7BF6;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 24px 20px 24px 20px;
    margin-top: 20px;
}

    .order__tbl-dwnlod-select::after {
        content: "";
        width: 100%;
        height: 100%;
        border: 3px dashed #0A7BF6;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        border-radius: 4px;
        opacity: 0;
        visibility: hidden;
    }

    .order__tbl-dwnlod-select:hover, .order__tbl-dwnlod-select.active {
        background-color: rgba(10, 123, 246, 0.2);
        border: 0;
    }

        .order__tbl-dwnlod-select:hover::after, .order__tbl-dwnlod-select.active::after {
            opacity: 1;
            visibility: visible;
        }

    .order__tbl-dwnlod-select span {
        display: inline-flex;
        align-items: center;
        width: 97px;
        margin-left: 15px;
    }

        .order__tbl-dwnlod-select span::before, .order__tbl-dwnlod-select span::after {
            content: "";
            flex: 1;
            height: 1px;
            display: inline-block;
            background-color: rgba(54, 54, 55, 0.45);
        }

        .order__tbl-dwnlod-select span::before {
            margin-right: 10px;
        }

        .order__tbl-dwnlod-select span::after {
            margin-left: 10px;
        }

    .order__tbl-dwnlod-select input[type=file] {
        display: none;
    }

    .order__tbl-dwnlod-select .select-file {
        font-family: "aileronbold";
        color: #0A7BF6;
        background: #FFFFFF;
        border: 1px solid #0A7BF6;
        border-radius: 4px;
        padding: 13px 12px 11px 14px;
        margin-left: 16px;
    }

        .order__tbl-dwnlod-select .select-file::before {
            content: "";
            width: 30px;
            height: 20px;
            display: inline-block;
            vertical-align: middle;
            background-image: url("../images/select-files.svg");
            background-repeat: no-repeat;
            background-size: contain;
            margin-top: -2px;
            margin-right: 10px;
        }
        .disable-upload-container .select-file::before {
            filter: grayscale(100%) brightness(0);
        }

        .disable-upload-container .select-file {
            border: 1px solid black;
        }

    .order__tbl-dwnlod-select .max {
        font-family: "aileronregular";
        font-size: 12px;
        margin-left: 16px;
    }

.order__tbl-dwnlod-files {
    margin-top: 29px;
}

    .order__tbl-dwnlod-files h5 {
        font-family: "aileronregular";
        font-size: 16px;
        font-weight: normal;
        display: flex;
        align-items: center;
    }

        .order__tbl-dwnlod-files h5::after {
            content: "";
            flex: 1;
            height: 1px;
            background-color: #E5E7EB;
        }

    .order__tbl-dwnlod-files .row {
        margin-right: -5px;
        margin-left: -5px;
    }

    .order__tbl-dwnlod-files .itm {
        padding-left: 5px;
        padding-right: 5px;
        width: 340px;
    }

    .order__tbl-dwnlod-files .itm__bg {
        display: flex;
        background-color: #F2F5FA;
        border: 1px solid #E5E7EB;
        border-radius: 5px;
        padding: 9px 9px 5px 10px;
    }

    .order__tbl-dwnlod-files .itm__icn {
        flex-shrink: 0;
    }

    .order__tbl-dwnlod-files .itm__rgt {
        flex-grow: 1;
        padding-left: 11px;
    }

    .order__tbl-dwnlod-files .itm__rgt-filename {
        font-family: "aileronbold";
        font-size: 13px;
        color: #363637;
        line-height: 1.35;
        display: block;
    }

    .order__tbl-dwnlod-files .itm__rgt-fileinfo {
        font-size: 12px;
    }

    .order__tbl-dwnlod-files .itm__rgt-btns {
        margin-top: 4px;
    }

        .order__tbl-dwnlod-files .itm__rgt-btns a {
            font-size: 12px;
            display: inline-block;
        }

            .order__tbl-dwnlod-files .itm__rgt-btns a + a {
                border-left: 1px solid #000000;
                padding-left: 5px;
            }

            .order__tbl-dwnlod-files .itm__rgt-btns a.download {
                color: #0A7BF6;
            }

            .order__tbl-dwnlod-files .itm__rgt-btns a.remove {
                color: #FF0606;
            }

.order__tbl-tabBtns {
    border-top: 1px solid rgba(54, 54, 55, 0.45);
    padding: 9px 0 0 30px;
    margin-top: 20px;
}

    .order__tbl-tabBtns ul {
        display: flex;
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
    }

        .order__tbl-tabBtns ul li {
            font-family: "aileronbold";
            color: rgba(54, 54, 55, 0.45);
        }

            .order__tbl-tabBtns ul li:not(:last-child) {
                margin-right: 23px;
            }

            .order__tbl-tabBtns ul li a {
                display: block;
                color: inherit;
                border-bottom: 3px solid transparent;
                padding: 0px 7px 5px 7px;
            }

            .order__tbl-tabBtns ul li.active, .order__tbl-tabBtns ul li:hover {
                color: #363637;
            }

                .order__tbl-tabBtns ul li.active a, .order__tbl-tabBtns ul li:hover a {
                    border-bottom: 3px solid #363637;
                }

.order__chase {
    display: flex;
    position: relative;
    z-index: 1;
    margin-top: 17px;
}

.order__chase-left {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #E5E7EB;
}

.order__chase-head {
    display: flex;
    gap: 12px;
    color: #363637;
    border-bottom: 1px solid #363637;
    padding: 13px 19px 13px 19px;
}

    .order__chase-head .date {
        flex: 0 1 121px;
    }

    .order__chase-head .time {
        flex: 0 1 102px;
    }

    .order__chase-head .subject {
        flex: 0 1 185px;
    }

    .order__chase-head .sender {
        flex: 0 1 150px;
    }

    .order__chase-head .sendto {
        flex: 0 1 149px;
    }

    .order__chase-head .reason {
        flex: 0 1 95px;
    }

    .order__chase-head .expandAll {
        flex: 1;
        text-align: right;
        cursor: pointer;
    }

.order__chase-vscroll {
    flex-grow: 1;
    max-height: 910px;
    overflow-y: auto;
}

.order__chase-itm {
    border-bottom: 1px solid #363637;
    background-color: white;
    padding: 14px 19px 13px 19px;
}

    .order__chase-itm.active {
        background-color: rgba(10, 123, 246, 0.25);
    }

.order__chase-info {
    display: flex;
    gap: 12px;
    color: #363637;
}

    .order__chase-info .date {
        flex: 0 1 121px;
    }

    .order__chase-info .time {
        flex: 0 1 102px;
    }

    .order__chase-info .subject {
        flex: 0 1 185px;
    }

    .order__chase-info .sender {
        flex: 0 1 150px;
    }

    .order__chase-info .sendto {
        flex: 0 1 149px;
    }

    .order__chase-info .reason {
        flex: 0 1 95px;
    }

    .order__chase-info .expand {
        text-align: right;
        flex: 1;
        white-space: nowrap;
        position: relative;
        cursor: pointer;
    }

        .order__chase-info .expand::after {
            content: "";
            width: 12px;
            height: 6px;
            display: inline-block;
            background-image: url("../images/expand-arrow.svg");
            vertical-align: middle;
            margin-top: -2px;
            margin-left: 10px;
        }

        .order__chase-info .expand.active::after {
            transform: rotate(-180deg);
        }

.order__chase-des {
    padding: 23px 0 0 0;
}

    .order__chase-des > *:last-child {
        margin-bottom: 0;
    }

.order__chase-right {
    width: 42.5%;
    padding-left: 30px;
    margin-top: -38px;
}

.order__chase-right-top {
    text-align: right;
    margin-bottom: 25px;
}

.order__chase-right-top-close {
    padding: 3px 45px 1px 46px;
    margin-bottom: 15px;
}

    .order__chase-right-top-close::after {
        content: "";
        width: 13px;
        height: 13px;
        display: inline-block;
        vertical-align: middle;
        background-image: url(../images/order-close-icn.svg);
        background-position: center;
        background-repeat: no-repeat;
        margin-top: -3px;
        margin-left: 7px;
    }

.order__chase-right-quote {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

    .order__chase-right-quote .fld {
        font-size: 16px;
        color: #404040;
        text-align: center;
        background: #F8EBC1;
        border: 1px solid #FF7700;
        border-radius: 4px;
        max-width: 160px;
        height: 50px;
        padding: 4px 14px;
    }

    .order__chase-right-quote .btn {
        padding: 13px 32px 11px 32px;
    }

.order__chase-form {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10.5px;
    margin-left: -10.5px;
    margin-bottom: 30px;
}

    .order__chase-form > * {
        width: 100%;
        padding-right: 10.5px;
        padding-left: 10.5px;
    }

    .order__chase-form .form-group {
        margin-bottom: 24px;
    }

        .order__chase-form .form-group.half {
            width: 50%;
        }

        .order__chase-form .form-group.back-date {
            width: 223px;
        }

            .order__chase-form .form-group.back-date input[type=date i]:disabled {
                background-color: #E5E7EB;
            }

                .order__chase-form .form-group.back-date input[type=date i]:disabled::-webkit-datetime-edit {
                    display: none;
                }

        .order__chase-form .form-group.submit {
            flex: 1;
            text-align: right;
        }

            .order__chase-form .form-group.submit .form-submit-btn {
                padding: 13px 52px 11px 51px;
                margin-top: 23px;
            }

    .order__chase-form .form-control {
        font-family: "aileronsemibold";
    }

    .order__chase-form .form-label {
        font-family: "aileronbold";
        color: #404040;
        display: block;
        margin-bottom: 7px;
    }

    .order__chase-form textarea.form-control {
        min-height: 100px;
    }

.order__chase-dtl {
    display: flex;
    margin-right: -11px;
    margin-left: -11px;
}

    .order__chase-dtl > div {
        width: 50%;
        padding-left: 11px;
        padding-right: 11px;
    }

    .order__chase-dtl ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
    }

        .order__chase-dtl ul li {
            font-family: "aileronbold";
            color: #404040;
        }

            .order__chase-dtl ul li span {
                font-family: "aileronregular";
                display: inline-block;
                max-width: 117px;
                width: 100%;
            }

            .order__chase-dtl ul li:not(:last-child) {
                margin-bottom: 6px;
            }

/* Order List */

.row-link {
    /* display: block;*/
    color: inherit; /* Make sure the text color is inherited */
    text-decoration: none; /* Remove the underline from the link */
}

.odrlst {
    padding-top: 3px;
}

.odrlst__top {
    justify-content: space-between;
    margin-right: -12px;
    margin-left: -12px;
}

@media (min-width: 1900px) {
    .odrlst__top {
        display: flex;
        align-items: flex-start;
    }
}

.odrlst__left {
    align-items: center;
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
}

@media (min-width: 992px) {
    .odrlst__left {
        display: flex;
    }
}

@media (min-width: 1900px) {
    .odrlst__left {
        width: 41%;
    }
}

@media (max-width: 1899px) {
    .odrlst__left {
        margin-bottom: 12px;
    }
}

.odrlst__left-srchFor {
    font-family: "aileronbold";
    color: #363637;
    display: flex;
    white-space: nowrap;
    margin-right: 10px;
}

    .odrlst__left-srchFor::before {
        content: "";
        width: 20px;
        height: 20px;
        display: inline-block;
        vertical-align: middle;
        background-image: url("../images/search-icn.svg");
        background-repeat: no-repeat;
        background-size: contain;
        margin-right: 10px;
    }

.odrlst__left-srch {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.odrlst__left-srch-fld {
    background-color: #fff;
}

.odrlst__left-srch .btn {
    min-width: 91px;
}

.odrlst__left-srch-rstBtn {
    color: #FF0606;
    border-color: #ff0606;
    background-color: rgba(255, 6, 6, 0.29);
}

.odrlst__right {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-right: 12px;
    padding-left: 12px;
}

    .odrlst__right .btn-primary {
        min-width: 140px;
    }

        .odrlst__right .btn-primary:not(.odrlst__right .btn-primary--red) {
            color: #0A7BF6;
            border-color: #0a7bf6;
            background-color: white;
        }
        .odrlst__right .btn-primary:not(.btn-primary--red):hover {
            background-color: #0A7BF6;
            color: white;
            border-color: #0A7BF6;
            transition: none;
        }
.btn-primary.active-hover {
    background-color: #0A7BF6 !important;
    color: white !important;
    border-color: #0A7BF6 !important;
    transition: none;
}

.odrlst__table {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background-color: #fff;
    overflow-x: auto;
    margin-top: 20px;
}

.odrlst__table-hscrl {
    min-width: 1800px;
    overflow: auto;
    max-height: 700px;
}

.odrlst__table-head {
    font-family: "aileronsemibold";
    border-bottom: 1px solid #E5E7EB;
    display: flex;
}

    .odrlst__table-head > * {
        padding: 18px 18px 15px 14px;
    }

        .odrlst__table-head > *:not(:last-child) {
            border-right: 1px solid #E5E7EB;
        }

    .odrlst__table-head .orderno {
        flex: 1 0 157px;
    }

    .odrlst__table-head .first {
        flex: 1 0 157px;
    }

    .odrlst__table-head .last {
        flex: 1 0 157px;
    }

    .odrlst__table-head .company {
        flex: 1 0 256px;
    }

    .odrlst__table-head .jobSt {
        flex: 1 0 157px;
    }

    .odrlst__table-head .jobAdd {
        flex: 1 0 206px;
    }

    .odrlst__table-head .jobPhn {
        flex: 1 0 176px;
    }

    .odrlst__table-head .jobPhn1 {
        flex: 1 0 157px;
    }

    .odrlst__table-head .jobPhn2 {
        flex: 1 0 157px;
    }

    .odrlst__table-head .email {
        flex: 1 0 196px;
    }

    .odrlst__table-head .custOdr {
        flex: 1 0 179px;
    }

.odrlst__table-vscrl {
    overflow-y: scroll;
    min-height: fit-content;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-y: scroll;
}

    .odrlst__table-vscrl::-webkit-scrollbar {
        width: 0px;
        background: transparent; /* Disable scrollbar Chrome/Safari/Webkit */
    }

.odrlst__table-itm {
    display: flex;
}

    .odrlst__table-itm:hover {
        background-color: #F2F5FA;
    }

    .odrlst__table-itm > * {
        word-break: break-all;
        padding: 10px 18px 10px 14px;
    }

        .odrlst__table-itm > *:not(:last-child) {
            border-right: 1px solid #E5E7EB;
        }

    .odrlst__table-itm .orderno a.ordercss {
        color: #0A7BF6;
        background: #F2F5FA;
        border: 1px solid #E5E7EB;
        border-radius: 4px;
        display: inline-block;
        text-decoration: underline;
        padding: 3px 16px 1px 16px;
    }

    .odrlst__table-itm .orderno {
        flex: 1 0 157px;
    }

    .odrlst__table-itm .first {
        flex: 1 0 157px;
    }

    .odrlst__table-itm .last {
        flex: 1 0 157px;
    }

    .odrlst__table-itm .company {
        flex: 1 0 256px;
    }

    .odrlst__table-itm .jobSt {
        flex: 1 0 157px;
    }

    .odrlst__table-itm .jobAdd {
        flex: 1 0 206px;
    }

    .odrlst__table-itm .jobPhn {
        flex: 1 0 176px;
    }

    .odrlst__table-itm .jobPhn1 {
        flex: 1 0 157px;
    }

    .odrlst__table-itm .jobPhn2 {
        flex: 1 0 157px;
    }

    .odrlst__table-itm .email {
        flex: 1 0 196px;
    }

    .odrlst__table-itm .custOdr {
        flex: 1 0 179px;
    }

.odrlst__table-itm {
    height: 80px; /* Set your desired row height */
}
/* PDF Preview */
/* Schedule */
.schedule__top {
    display: flex;
    align-items: flex-start;
}

    .schedule__top .left {
        flex-grow: 1;
        padding-right: 12px;
    }

    .schedule__top .right {
        flex-shrink: 0;
        width: 319px;
        display: grid;
        grid-template-columns: auto auto;
        column-gap: 11px;
        row-gap: 10px;
        padding-top: 11px;
    }

        .schedule__top .right .btn {
            padding: 13px 15px 11px;
        }

.schedule__title {
    font-size: 21px;
    margin-bottom: 19px;
}

.schedule__fltr {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.schedule__fltr-itm {
    width: 200px;
}

    .schedule__fltr-itm .label {
        font-size: 14px;
        display: block;
        margin-bottom: 7px;
    }

    .schedule__fltr-itm .label--green {
        color: #08D26F;
    }

    .schedule__fltr-itm .label--red {
        color: #FF0606;
    }

.schedule__fltr-itm--order {
    width: 140px;
}

.schedule__fltr-itm--type {
    width: 155px;
}

.schedule__fltr-itm--status {
    width: 180px;
}

.schedule__fltr-itm .form-control {
    font-size: 14px;
    height: 42px;
    padding-left: 12px;
}

.schedule__fltr-itm-odrsrch {
    position: relative;
    z-index: 1;
}

    .schedule__fltr-itm-odrsrch .form-control {
        padding-right: 30px;
    }

    .schedule__fltr-itm-odrsrch button {
        position: absolute;
        top: 0;
        right: 0;
        width: 39px;
        height: 100%;
        background-image: url("../images/search-icn.svg");
        background-position: center center;
        background-repeat: no-repeat;
        border: 0;
        background-color: transparent;
        padding: 0;
        cursor: pointer;
    }

.schedule__fltr-itm-odrsrch-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 200px;
    background: #F2F5FA;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    border: 1px solid #363637;
    border-radius: 4px;
    overflow-y: auto;
    display: none;
}

    .schedule__fltr-itm-odrsrch-dropdown > div {
        padding: 5px 10px 5px 10px;
    }

        .schedule__fltr-itm-odrsrch-dropdown > div:hover {
            color: #fff;
            background-color: #0A7BF6;
        }

    .schedule__fltr-itm-odrsrch-dropdown.show {
        display: block;
    }

.schedule__tbl {
    margin-top: 21px;
}

.schedule__tbl-fltr {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 14px;
}

    .schedule__tbl-fltr ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
        display: flex;
    }

        .schedule__tbl-fltr ul li {
            font-size: 14px;
        }

            .schedule__tbl-fltr ul li:not(:last-child) {
                margin-right: 30px;
            }

            .schedule__tbl-fltr ul li span {
                width: 20px;
                height: 20px;
                display: inline-block;
                border: 1px solid #E5E7EB;
                position: relative;
                background-color: #fff;
                border-radius: 50px;
                vertical-align: middle;
                margin-top: -5px;
                margin-right: 4px;
            }

                .schedule__tbl-fltr ul li span::before {
                    content: "";
                    width: 12px;
                    height: 12px;
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    border-radius: 50px;
                }

            .schedule__tbl-fltr ul li.purple span::before {
                background-color: #AB20FD;
            }

            .schedule__tbl-fltr ul li.green span::before {
                background-color: #08D26F;
            }

            .schedule__tbl-fltr ul li.blue span::before {
                background-color: #0A7BF6;
            }

.schedule__tbl-itm {
    font-size: 14px;
    border-radius: 28px;
    border-left: 10px solid #282A35;
    position: relative;
    /*.table {
      // border-left: 1px solid #282A35;
      border-collapse: collapse;
      border-spacing: 0;
      font-size: 14px;
      background-color: $color-white;
      width: 100%;
      border-radius: 23px;
      td {
          border: 1px solid #282A35;
          &:not(:last-child) {
          }
          padding: 11px 24px 10.5px 24px;
      }
      tr {
          td {
              &:first-child {
                  border-left: 0;
              }
              &:last-child {
                  border-right: 0;
              }
          }
          &:first-child td {
              border-top: 0;
          }
          &:last-child td {
              border-bottom: 0;
          }
      }
  }*/
}

    .schedule__tbl-itm:not(:last-child) {
        margin-bottom: 20px;
    }

    .schedule__tbl-itm .table-actnBtns {
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .schedule__tbl-itm .table-editBtn {
        color: #fff;
        background-color: #0A7BF6;
        border: 0;
        width: 43px;
        height: 43px;
        border-radius: 100px 100px 0px 100px;
    }

    .schedule__tbl-itm .table-deleteBtn {
        width: 43px;
        height: 43px;
        border-radius: 100px 100px 0px 100px;
        background-image: url("../images/table-delete-icn.svg");
        background-position: center center;
        background-repeat: no-repeat;
        background-color: #FF0606;
        border: 0;
        padding: 0;
        cursor: pointer;
    }

    .schedule__tbl-itm .table {
        border-collapse: collapse;
        border-spacing: 0;
        border-style: hidden;
        font-size: 14px;
        background-color: #fff;
        border-radius: 23px;
        width: 100%;
        box-shadow: 0 0 0 1px #666; /* this draws the table border  */
    }

        .schedule__tbl-itm .table td {
            border: 1px solid #282A35;
            padding: 11px 24px 10.5px 24px;
        }

    .schedule__tbl-itm .column {
        display: flex;
        gap: 12px;
    }

        .schedule__tbl-itm .column .left {
            font-family: "aileronsemibold";
            flex-shrink: 0;
        }

        .schedule__tbl-itm .column .orderNum {
            color: #0A7BF6;
            text-decoration: underline;
        }

    .schedule__tbl-itm .column--first .left {
        width: 168px;
    }

    .schedule__tbl-itm .column--second .left {
        width: 75px;
    }

    .schedule__tbl-itm .column--third .left {
        width: 92px;
    }

    .schedule__tbl-itm .time {
        display: flex;
    }

        .schedule__tbl-itm .time .left {
            display: flex;
            flex-shrink: 0;
            width: 211px;
        }

            .schedule__tbl-itm .time .left span:first-child {
                color: #08D26F;
            }

        .schedule__tbl-itm .time .right {
            display: flex;
        }

            .schedule__tbl-itm .time .right span:first-child {
                color: #FF0606;
            }

        .schedule__tbl-itm .time span:first-child {
            font-family: "aileronbold";
            width: 87px;
            flex-shrink: 0;
        }

.schedule__tbl-itm--black {
    border-color: #282A35;
}

    .schedule__tbl-itm--black .table {
        background-color: #fff;
    }

        .schedule__tbl-itm--black .table th, .schedule__tbl-itm--black .table td {
            border: 1px solid #282A35;
        }

    .schedule__tbl-itm--black .table-deleteBtn {
        background-color: #FF0606;
    }

.schedule__tbl-itm--purple {
    border-color: #AB20FD;
}

    .schedule__tbl-itm--purple .table {
        background-color: #F7E8FF;
        box-shadow: 0 0 0 1px #AB20FD;
    }

        .schedule__tbl-itm--purple .table th, .schedule__tbl-itm--purple .table td {
            border-color: #AB20FD;
        }

    .schedule__tbl-itm--purple .table-deleteBtn {
        background-color: #AB20FD;
    }

.schedule__tbl-itm--green {
    border-color: #08D26F;
}

    .schedule__tbl-itm--green .table {
        background-color: #E5FBF0;
        box-shadow: 0 0 0 1px #08D26F;
    }

        .schedule__tbl-itm--green .table th, .schedule__tbl-itm--green .table td {
            border-color: #08D26F;
        }

    .schedule__tbl-itm--green .table-deleteBtn {
        background-color: #08D26F;
    }

.schedule__tbl-itm--blue {
    border-color: #0A7BF6;
}

    .schedule__tbl-itm--blue .table {
        background-color: #E6F1FE;
        box-shadow: 0 0 0 1px #0A7BF6;
    }

        .schedule__tbl-itm--blue .table th, .schedule__tbl-itm--blue .table td {
            border-color: #0A7BF6;
        }

    .schedule__tbl-itm--blue .table-deleteBtn {
        background-color: #0A7BF6;
    }

/* Add Schedule sidebar */
.addschdle {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    
    display: flex;
    justify-content: flex-end;
}

.addschdle__wrap {
    width: 410px;
    height: 100%;
    background-color: #fff;
    border-radius: 20px 0px 0px 20px;
    box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.1607843137);
    display: flex;
    flex-direction: column;
    padding: 28px 30px 28px 30px;
    transform: translateX(410px);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.addschdle.open {
    opacity: 1;
    visibility: visible;
}

    .addschdle.open .addschdle__wrap {
        transform: translateX(0);
    }

.addschdle-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border: 0;
    background-image: url("../images/modal-close-icn.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    cursor: pointer;
    padding: 0;
}

.addschdle__vscroll {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    scrollbar-width: thin;
}

.addschdle__ttl {
    font-size: 21px;
    margin-bottom: 10px;
}

.addschdle__row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

    .addschdle__row > * {
        width: 100%;
    }

.addschdle__itm {
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 5px;
}

.addschdle__itm-fltr {
    position: relative;
    z-index: 2;
}

.addschdle__itm-fltr-drpdwn {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 200px;
    overflow-y: auto;
    background-color: #F2F5FA;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    border: 1px solid #363637;
    border-radius: 4px;
    display: none;
    padding: 9px 10px 10px 9px;
}

    .addschdle__itm-fltr-drpdwn label {
        display: block;
        line-height: 1.45;
    }

    .addschdle__itm-fltr-drpdwn input[type=checkbox] {
        width: 16px;
        height: 16px;
        margin: -2px 10px 0 0;
    }

    .addschdle__itm-fltr-drpdwn.show {
        display: block;
    }

.addschdle__itm-tag {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

    .addschdle__itm-tag .name {
        font-size: 12px;
        border: 1px solid #E5E7EB;
        border-radius: 4px;
        display: flex;
        align-items: center;
        padding-right: 3px;
        margin-right: 9px;
        margin-bottom: 5px;
    }

        .addschdle__itm-tag .name .close {
            width: 25px;
            height: 25px;
            background-color: #FF0606;
            border-radius: 4px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            margin-right: 6px;
        }

            .addschdle__itm-tag .name .close::before {
                content: "";
                display: block;
                width: 12px;
                height: 12px;
                background-image: url("../images/close-icn.svg");
                background-position: center center;
            }

.addschdle__itm-lbl {
    font-size: 14px;
    display: block;
    margin-bottom: 7px;
}

.addschdle__itm-lbl--green {
    color: #08D26F;
}

.addschdle__itm-lbl--red {
    color: #FF0606;
}

.addschdle__itm-odr {
    position: relative;
    z-index: 1;
}

.addschdle__itm-odr-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 200px;
    background: #F2F5FA;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    border: 1px solid #363637;
    border-radius: 4px;
    overflow-y: auto;
    display: none;
}

    .addschdle__itm-odr-dropdown.show {
        display: block;
    }

    .addschdle__itm-odr-dropdown > div {
        padding: 5px 10px 5px 10px;
    }

        .addschdle__itm-odr-dropdown > div:hover {
            color: #fff;
            background-color: #0A7BF6;
        }

.addschdle__itm-odr button {
    position: absolute;
    top: 0;
    right: 0;
    width: 39px;
    height: 100%;
    background-image: url(../images/search-icn.svg);
    background-position: center center;
    background-repeat: no-repeat;
    border: 0;
    background-color: transparent;
    padding: 0;
    cursor: pointer;
}

.addschdle__itm-half {
    width: 50%;
}

.addschdle__itm .form-control {
    height: 42px;
}

    .addschdle__itm .form-control.textarea {
        min-height: 120px;
    }

.addschdle__itm-link {
    font-size: 14px;
    color: #0A7BF6;
    display: inline-block;
    margin-top: 9px;
}

    .addschdle__itm-link:hover {
        text-decoration: underline;
    }

.addschdle__itm .btn {
    min-width: 154px;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
}

    .modal:not(.modal-show) {
        pointer-events: none;
        background-color: transparent;
    }

.modal-show {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(6px);
}

.modal-dialog {
    padding: 20px;
    max-width: 970px;
    width: 100%;
    margin: auto;
}

.modal-content {
    background-color: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1607843137);
}

.modal-header {
    background: #E5E7EB;
    border: 1px solid #E5E7EB;
    border-radius: 8px 8px 0px 0px;
    display: flex;
    justify-content: space-between;
    padding: 8px 8px 7px 18px;
}

.modal-header-close {
    cursor: pointer;
    width: 24px;
    height: 24px;
    background-image: url("../images/modal-close-icn.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-color: transparent;
    border: 0;
    background-color: transparent;
    padding: 0;
}

.modal-title {
    font-size: 16px;
    color: #363637;
    margin-bottom: 0;
}

.modal-body {
    padding: 30px 30px 20px 30px;
    padding: 20px 30px 20px 30px;
}

.modal--callNotes .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

    .modal--callNotes .row [class*=col-] {
        padding-right: 15px;
        padding-left: 15px;
    }

.modal--callNotes .col-6 {
    width: 50%;
}

.modal--callNotes .col-12 {
    width: 100%;
}

.modal--callNotes .label {
    flex: 0 0 137px;
    width: 137px;
}

.modal--callNotes .label--space {
    display: inline-block;
    margin-bottom: 10px;
}

.modal--callNotes .field-holder {
    display: flex;
    align-items: center;
}

    .modal--callNotes .field-holder > div {
        flex: 1;
        position: relative;
    }

    .modal--callNotes .field-holder .email-listdrpdwn {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
        position: absolute;
        top: 100%;
        width: 100%;
        background-color: #F2F5FA;
        border: 1px solid #E5E7EB;
        border-top: 0;
        border-radius: 0 0 4px 4px;
        padding: 5px 0;
        z-index: 1;
        display: none;
    }

        .modal--callNotes .field-holder .email-listdrpdwn.show-drpdwn {
            display: block;
        }

    .modal--callNotes .field-holder .email-listdrpdwn__itm {
        font-size: 14px;
        cursor: pointer;
        word-break: break-all;
        padding: 5px 10px;
    }

        .modal--callNotes .field-holder .email-listdrpdwn__itm:hover {
            background-color: #fff;
        }

    .modal--callNotes .field-holder .btn {
        display: block;
        width: 100%;
        padding: 9px 20px 7px 20px;
    }

        .modal--callNotes .field-holder .btn.autoEmailEnable.disable {
            border-color: rgba(54, 54, 55, 0.1);
            background-color: rgba(54, 54, 55, 0.3);
        }

.modal--callNotes .form-group {
    margin-bottom: 6px;
}

.modal--callNotes .form-control {
    color: #363637;
    height: 42px;
}

    .modal--callNotes .form-control.custom-select option {
        font-family: "aileronregular";
    }

.modal--callNotes .emailsEditor__list {
    min-height: 42px;
    width: 100%;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    background-color: #F2F5FA;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.modal--callNotes .emailsEditor__input {
    color: #363637;
    font-size: 16px;
    border: none;
    outline: none;
    max-height: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    align-self: stretch;
    flex-grow: 1;
    font-size: 14px;
    background-color: transparent;
}

    .modal--callNotes .emailsEditor__input::-webkit-input-placeholder {
        color: #363637;
    }

    .modal--callNotes .emailsEditor__input:-moz-placeholder {
        color: #363637;
    }

    .modal--callNotes .emailsEditor__input::-moz-placeholder {
        color: #363637;
    }

    .modal--callNotes .emailsEditor__input:-ms-input-placeholder {
        color: #363637;
    }

.modal--callNotes .emailsEditor.disabled .emailsEditor__input, .modal--callNotes .emailsEditor.disabled .emailsEditor__email {
    pointer-events: none;
}

.modal--callNotes .emailsEditor__email {
    color: #363637;
    color: #050038;
    margin: 0 8px 2px 0;
    padding: 0 10px;
    cursor: pointer;
    display: flex;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    word-break: break-all;
}

.modal--callNotes .emailsEditor__delete-button {
    padding-left: 10px;
}

.modal--callNotes .dropFiles {
    text-align: center;
    background-color: rgba(10, 123, 246, 0.08);
    border: 1px dashed #0A7BF6;
    border-radius: 4px;
    max-width: 460px;
    position: relative;
    cursor: pointer;
    padding: 10px 15px 10px 15px;
    margin: auto;
}

    .modal--callNotes .dropFiles::after {
        content: "";
        width: 100%;
        height: 100%;
        border: 3px dashed #0A7BF6;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 0.3s ease-in-out;
        border-radius: 4px;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        opacity: 0;
        visibility: hidden;
    }

.modal--callNotes .dropFiles__drop {
    font-family: "aileronbold";
    color: #363637;
}

.modal--callNotes .dropFiles__or {
    font-family: "aileronbold";
    position: relative;
    color: #363637;
}

    .modal--callNotes .dropFiles__or span {
        display: inline-block;
        background-color: #ebf5ff;
        position: relative;
        padding: 0 10px;
    }

    .modal--callNotes .dropFiles__or::before {
        content: "";
        width: 98px;
        height: 1px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%);
        background-color: #a0a9b0;
    }

.modal--callNotes .dropFiles input[type=file] {
    display: none;
}

.modal--callNotes .dropFiles__select {
    font-family: "aileronbold";
    color: #0A7BF6;
    background: #fff;
    border: 1px solid #0A7BF6;
    border-radius: 4px;
    display: inline-block;
    cursor: pointer;
    min-width: 154px;
    padding: 13px 14px 11px;
    margin-top: 7px;
}

    .modal--callNotes .dropFiles__select::before {
        content: "";
        width: 30px;
        height: 20px;
        display: inline-block;
        vertical-align: middle;
        background-image: url("../images/select-files.svg");
        background-position: center center;
        background-size: contain;
        background-repeat: no-repeat;
        margin-top: -4px;
        margin-right: 8px;
    }

.modal--callNotes .dropFiles__limit {
    margin-top: 9px;
    display: block;
}

.modal--callNotes .dropFiles:hover, .modal--callNotes .dropFiles.active {
    background-color: rgba(10, 123, 246, 0.2);
    border: 1px solid transparent;
}

    .modal--callNotes .dropFiles:hover .dropFiles__or span, .modal--callNotes .dropFiles.active .dropFiles__or span {
        background: #cee5fd;
    }

    .modal--callNotes .dropFiles:hover::after, .modal--callNotes .dropFiles.active::after {
        opacity: 1;
        visibility: visible;
    }

.modal-footer {
    text-align: center;
    padding: 10px 30px 20px 30px;
}

    .modal-footer .btn {
        min-width: 154px;
    }

        .modal-footer .btn.send::before {
            content: "";
            width: 27px;
            height: 27px;
            display: inline-block;
            vertical-align: middle;
            background-image: url("../images/send-icn.svg");
            margin-right: 10px;
        }

.modal--archive .modal-dialog {
    max-width: 532px;
}

.modal--archive .modal-body {
    text-align: center;
    padding: 52px 30px 7px 30px;
}

    .modal--archive .modal-body h3 {
        font-size: 27px;
        color: #363637;
        line-height: 1.2;
    }

.modal--archive .modal-footer {
    padding-top: 0;
    padding-bottom: 49px;
}

    .modal--archive .modal-footer .btn + .btn {
        margin-left: 12px;
    }

.modal--warning .modal-dialog {
    max-width: 532px;
}

.modal--warning .modal-header {
    background: rgba(255, 6, 6, 0.25);
    border: 0;
}

.modal--warning .modal-body {
    text-align: center;
    padding: 52px 30px 39px 30px;
}

    .modal--warning .modal-body h3 {
        font-size: 27px;
        color: #363637;
        line-height: 1.2;
    }

.modal--order .modal-dialog {
    max-width: 846px;
}

.modal--order .modal-content {
    overflow: hidden;
}

.modal--order .modal-body {
    padding: 20px 0 0px 0;
}

    .modal--order .modal-body h3 {
        font-size: 27px;
        color: #363637;
        line-height: 1.2;
    }

    .modal--order .modal-body .form .select-option {
        margin-bottom: 20px;
    }

    .modal--order .modal-body .form .form-control {
        height: 42px;
    }

        .modal--order .modal-body .form .form-control::-webkit-input-placeholder {
            color: black;
        }

        .modal--order .modal-body .form .form-control:-moz-placeholder {
            color: black;
        }

        .modal--order .modal-body .form .form-control::-moz-placeholder {
            color: black;
        }

        .modal--order .modal-body .form .form-control:-ms-input-placeholder {
            color: black;
        }

    .modal--order .modal-body .form__copy {
        display: grid;
        gap: 10px;
        grid-template-columns: 1fr 1fr;
        border-bottom: 1px solid #E5E7EB;
        padding: 0 18px 20px 21px;
    }

        .modal--order .modal-body .form__copy .col-6 {
            display: flex;
            align-items: center;
        }

            .modal--order .modal-body .form__copy .col-6.last {
                justify-content: flex-end;
            }

    .modal--order .modal-body .form__copy-label {
        font-family: "aileronbold";
        font-size: 21px;
        white-space: nowrap;
        margin-right: 20px;
    }

    .modal--order .modal-body .form__copy-fld {
        font-family: "aileronbold";
        font-size: 21px;
        width: 100%;
        background: #F2F5FA;
        border: 1px solid #E5E7EB;
        border-radius: 4px;
        max-width: 150px;
        height: 42px;
        padding-left: 13px;
    }

        .modal--order .modal-body .form__copy-fld::-webkit-input-placeholder {
            color: rgba(64, 64, 64, 0.7);
        }

        .modal--order .modal-body .form__copy-fld:-moz-placeholder {
            color: rgba(64, 64, 64, 0.7);
        }

        .modal--order .modal-body .form__copy-fld::-moz-placeholder {
            color: rgba(64, 64, 64, 0.7);
        }

        .modal--order .modal-body .form__copy-fld:-ms-input-placeholder {
            color: rgba(64, 64, 64, 0.7);
        }

        .modal--order .modal-body .form__copy-fld.diff {
            background: #F8EBC1;
            border: 1px solid #FF7700;
        }

            .modal--order .modal-body .form__copy-fld.diff::-webkit-input-placeholder {
                color: #404040;
            }

            .modal--order .modal-body .form__copy-fld.diff:-moz-placeholder {
                color: #404040;
            }

            .modal--order .modal-body .form__copy-fld.diff::-moz-placeholder {
                color: #404040;
            }

            .modal--order .modal-body .form__copy-fld.diff:-ms-input-placeholder {
                color: #404040;
            }

        .modal--order .modal-body .form__copy-fld + button {
            font-family: "aileronsemibold";
            color: #fff;
            font-size: 16px;
            background: #08D26F;
            border: 1px solid #08D26F;
            border-radius: 4px;
            height: 42px;
            padding: 0 8px;
            margin-left: 10px;
        }

    .modal--order .modal-body .form__optn {
        display: flex;
        padding: 20px 19px 10px 19px;
    }

        .modal--order .modal-body .form__optn label {
            padding: 11px 0 0 1px;
        }

    .modal--order .modal-body .form__optn-lft {
        width: 163px;
        flex-shrink: 0;
    }

    .modal--order .modal-body .form__optn-rgt {
        flex-grow: 1;
    }

    .modal--order .modal-body .form__roll {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #E5E7EB;
        padding: 19px 19px 18px 21px;
    }

    .modal--order .modal-body .form__roll-lft {
        width: 200px;
        flex-shrink: 0;
    }

    .modal--order .modal-body .form__roll-rgt {
        flex-grow: 1;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

        .modal--order .modal-body .form__roll-rgt input[type=text] {
            max-width: 345px;
            margin-right: 20px;
        }

            .modal--order .modal-body .form__roll-rgt input[type=text]::-webkit-input-placeholder {
                color: rgba(54, 54, 55, 0.7);
            }

            .modal--order .modal-body .form__roll-rgt input[type=text]:-moz-placeholder {
                color: rgba(54, 54, 55, 0.7);
            }

            .modal--order .modal-body .form__roll-rgt input[type=text]::-moz-placeholder {
                color: rgba(54, 54, 55, 0.7);
            }

            .modal--order .modal-body .form__roll-rgt input[type=text]:-ms-input-placeholder {
                color: rgba(54, 54, 55, 0.7);
            }

        .modal--order .modal-body .form__roll-rgt input[type=checkbox] {
            width: 18px;
            height: 18px;
            margin: 0;
        }

            .modal--order .modal-body .form__roll-rgt input[type=checkbox]:checked {
                border-color: #000;
                background-color: #000;
            }

    .modal--order .modal-body .form__sbmt {
        text-align: center;
        padding-top: 13px;
        padding-bottom: 30px;
    }

        .modal--order .modal-body .form__sbmt p {
            margin-bottom: 27px;
        }

        .modal--order .modal-body .form__sbmt .btn {
            padding: 13px 34px 11px;
        }

    .modal--order .modal-body .form__chkbx {
        background-color: #F2F3F5;
        padding: 20px 19px 19px 20px;
    }

        .modal--order .modal-body .form__chkbx > div {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .modal--order .modal-body .form__chkbx > div:not(:last-child) {
                margin-bottom: 10px;
            }

        .modal--order .modal-body .form__chkbx .fancyCheckbox {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            width: 101px;
            height: 31px;
            position: relative;
            display: flex;
            cursor: pointer;
            margin: 0;
            background: #F2F5FA;
            border: 1px solid #E5E7EB;
            border-radius: 15px;
        }

            .modal--order .modal-body .form__chkbx .fancyCheckbox::before, .modal--order .modal-body .form__chkbx .fancyCheckbox::after {
                font-size: 12px;
                color: #404040;
                width: 50%;
                text-align: center;
                line-height: 31px;
                -webkit-transition: all 0.3s ease-in-out;
                -moz-transition: all 0.3s ease-in-out;
                -ms-transition: all 0.3s ease-in-out;
                -o-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
                border-radius: 4px;
            }

            .modal--order .modal-body .form__chkbx .fancyCheckbox::before {
                content: "No";
                border-radius: 14px 0px 0px 14px;
                box-shadow: inset 1px 1px 5px rgba(0, 0, 0, 0.2509803922);
                background-color: #E5E7EB;
            }

            .modal--order .modal-body .form__chkbx .fancyCheckbox::after {
                content: "Yes";
                color: #404040;
                border-radius: 0 14px 14px 0;
                background-color: #F2F5FA;
            }

            .modal--order .modal-body .form__chkbx .fancyCheckbox:checked::before {
                color: #404040;
                box-shadow: none;
                background-color: transparent;
            }

            .modal--order .modal-body .form__chkbx .fancyCheckbox:checked::after {
                background-color: #E5E7EB;
                box-shadow: inset 1px 1px 5px rgba(0, 0, 0, 0.2509803922);
            }

.modal--print .modal-dialog {
    max-width: 532px;
}

.modal--print .modal-body {
    text-align: center;
    padding: 32px 19px 28px 19px;
}

    .modal--print .modal-body h3 {
        font-size: 27px;
        color: #363637;
        line-height: 1.2;
        margin-bottom: 23px;
    }

    .modal--print .modal-body select.form-control {
        height: 42px;
    }

    .modal--print .modal-body .print-btn {
        padding: 13px 60px 11px;
        margin-top: 30px;
    }

.modal--quote .modal-body {
    padding: 30px 30px 28px 30px;
}

.modal--quote .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

    .modal--quote .row [class*=col-] {
        padding-right: 15px;
        padding-left: 15px;
    }

.modal--quote .col-6 {
    width: 50%;
}

.modal--quote .col-12 {
    width: 100%;
}

.modal--quote .field-holder {
    display: flex;
    align-items: center;
}

.modal--quote .label {
    flex-shrink: 0;
    width: 137px;
}

.modal--quote .label--space {
    display: inline-block;
    margin-bottom: 10px;
}

.modal--quote .form-group {
    margin-bottom: 15px;
}

.modal--quote .form-group--subject {
    padding-top: 14px;
}

.modal--quote .form-control {
    font-family: "aileronbold";
    color: #363637;
    height: 42px;
}

    .modal--quote .form-control.custom-select option {
        font-family: "aileronregular";
    }

.modal--quote .attachment {
    margin-top: 7px;
    margin-bottom: 23px;
}

.modal--quote .attachment__title {
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .modal--quote .attachment__title::after {
        content: "";
        height: 2px;
        flex-grow: 1;
        background-color: #E5E7EB;
        margin-left: 10px;
    }

.modal--quote .attachment ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

@media (min-width: 576px) {
    .modal--quote .attachment ul {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .modal--quote .attachment ul {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.modal--quote .attachment ul li {
    font-size: 13px;
}

    .modal--quote .attachment ul li label {
        font-family: "aileronbold";
        display: flex;
    }

        .modal--quote .attachment ul li label input[type=checkbox] {
            flex-shrink: 0;
            width: 18px;
            height: 18px;
            margin: 0 10px 0 0;
        }

            .modal--quote .attachment ul li label input[type=checkbox]:checked {
                border-color: #000;
                background-color: #000;
            }

.modal--quote .brochure {
    margin-bottom: 30px;
}

.modal--quote .brochure__title {
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .modal--quote .brochure__title::after {
        content: "";
        height: 2px;
        flex-grow: 1;
        background-color: #E5E7EB;
        margin-left: 10px;
    }

.modal--quote .brochure ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 17px;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

@media (min-width: 576px) {
    .modal--quote .brochure ul {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .modal--quote .brochure ul {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.modal--quote .brochure ul li {
    display: flex;
}

    .modal--quote .brochure ul li label {
        font-family: "aileronbold";
        flex-shrink: 0;
    }

        .modal--quote .brochure ul li label input[type=checkbox] {
            flex-shrink: 0;
            width: 18px;
            height: 18px;
            margin: 0 10px 0 0;
        }

            .modal--quote .brochure ul li label input[type=checkbox]:checked {
                border-color: #000;
                background-color: #000;
            }

    .modal--quote .brochure ul li .dwn-brchre {
        display: flex;
        flex-grow: 1;
        background-color: #F2F5FA;
        border: 1px solid #E5E7EB;
        border-radius: 8px;
        padding: 9px 10px 4px 10px;
    }

        .modal--quote .brochure ul li .dwn-brchre .file-icn {
            flex-shrink: 0;
        }

        .modal--quote .brochure ul li .dwn-brchre .file-dtl {
            padding-left: 10px;
        }

        .modal--quote .brochure ul li .dwn-brchre .file-name {
            font-family: "aileronbold";
            font-size: 13px;
            display: block;
        }

        .modal--quote .brochure ul li .dwn-brchre .file-download {
            font-size: 12px;
        }

            .modal--quote .brochure ul li .dwn-brchre .file-download a {
                color: #0A7BF6;
            }

.modal--quote .sendBtn {
    text-align: center;
}

    .modal--quote .sendBtn .btn {
        padding: 11px 36px 11px;
    }

        .modal--quote .sendBtn .btn::before {
            content: "";
            width: 27px;
            height: 27px;
            display: inline-block;
            vertical-align: middle;
            background-image: url("../images/email-quote-send-btn.svg");
            background-size: contain;
            background-repeat: no-repeat;
            margin-right: 10px;
        }

.modal--production .modal-dialog {
    max-width: 772px;
}

.modal--production .modal-body {
    padding: 27px 18px 20px 21px;
}

.modal--production .prod-blinds-title {
    font-size: 24px;
    color: #363637;
    margin-bottom: 31px;
}

.modal--production .prod-blinds-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}

.modal--production .prod-blinds-left {
    width: 100%;
    flex: 0 0 auto;
    padding: 0 12px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .modal--production .prod-blinds-left {
        width: 65.9%;
        flex: 0 0 auto;
        margin-bottom: 0;
    }
}

.modal--production .prod-blinds-left-itm {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

    .modal--production .prod-blinds-left-itm:not(:last-child) {
        margin-bottom: 24.5px;
    }

.modal--production .prod-blinds-optn {
    font-family: "aileronbold";
    padding-top: 5px;
    margin-right: 10px;
}

.modal--production .prod-blinds-field {
    color: #363637;
    text-align: center;
    width: 80px;
    height: 32px;
    background: #F2F3F5;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    margin-right: 14px;
    padding: 3px 10px;
}

.modal--production .prod-blinds-test {
    flex: 1;
}

    .modal--production .prod-blinds-test ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
    }

        .modal--production .prod-blinds-test ul li {
            line-height: 2.02;
        }

            .modal--production .prod-blinds-test ul li strong {
                text-decoration: underline;
            }

            .modal--production .prod-blinds-test ul li span {
                display: inline-block;
                margin-right: 14px;
            }

.modal--production .prod-blinds-right {
    width: 100%;
    flex: 0 0 auto;
    padding: 0 12px;
}

@media (min-width: 768px) {
    .modal--production .prod-blinds-right {
        width: 34.1%;
    }
}

.modal--production .prod-blinds-send {
    background: #F2F3F5;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 4px 10px 10px 9px;
    height: 100%;
}

.modal--production .prod-blinds-text {
    margin-bottom: 1px;
}

.modal--production .prod-blinds-number {
    font-family: "aileronbold";
    text-align: center;
    color: #363637;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 3px;
}

.modal--production .prod-blinds-number--green {
    border-color: #08D26F;
    background-color: #C1F4DB;
}

.modal--production .prod-blinds-number:not(:last-child) {
    margin-bottom: 10px;
}

.modal--production .modal-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.modal--send-production .modal-dialog {
    max-width: 540px;
}

.modal--send-production .modal-body {
    padding: 40px 19px 20px 19px;
}

.modal--send-production .send-prod .itm {
    display: flex;
    align-items: center;
}

    .modal--send-production .send-prod .itm:not(:last-child) {
        margin-bottom: 15px;
    }

    .modal--send-production .send-prod .itm .txt {
        flex-grow: 1;
        padding-right: 10px;
    }

    .modal--send-production .send-prod .itm .fld {
        width: 150px;
        flex-shrink: 0;
    }

        .modal--send-production .send-prod .itm .fld input[type=date] {
            font-family: "aileronbold";
            padding: 0 10px;
        }

    .modal--send-production .send-prod .itm .form-control {
        height: 42px;
    }

.modal--table-delete .modal-dialog {
    max-width: 460px;
}

.modal--table-delete .modal-body {
    padding: 29px 19px 8px 19px;
}

    .modal--table-delete .modal-body .confirm-txt {
        font-size: 24px;
        font-family: "aileronbold";
        text-align: center;
        line-height: 1.3;
    }

.modal--table-delete .modal-footer {
    display: flex;
    gap: 10px;
    justify-content: center;
}

    .modal--table-delete .modal-footer .btn {
        min-width: 105px;
        padding: 8px 20px 7px 20px;
    }

.modal--all-comments .modal-dialog {
    max-width: 640px;
}

.modal--all-comments .modal-body {
    padding: 0 19px 8px 19px;
    margin-top: -13px;
}

.modal--all-comments .modal-header {
    justify-content: flex-end;
    background: none;
    border: 0;
}

.modal--all-comments .al-cmnt {
    font-size: 14px;
}

.modal--all-comments .al-cmnt__ttl {
    text-align: center;
    font-family: "aileronbold";
    font-size: 24px;
    margin-bottom: 7px;
}

.modal--all-comments .al-cmnt__tbl {
    border: 1px solid #999999;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal--all-comments .al-cmnt__tbl-head {
    background: #F2F5FA;
    border-bottom: 1px solid #999999;
    display: flex;
}

.modal--all-comments .al-cmnt__tbl-head-date {
    flex-shrink: 0;
    width: 113px;
    border-right: 1px solid #999999;
    padding: 10px 10px 7px 19px;
}

.modal--all-comments .al-cmnt__tbl-head-sbjct {
    flex-grow: 1;
    padding: 10px 10px 7px 20px;
}

.modal--all-comments .al-cmnt__tbl-vscroll {
    height: 274px;
    overflow-y: auto;
}

.modal--all-comments .al-cmnt__tbl-itm {
    display: flex;
}

    .modal--all-comments .al-cmnt__tbl-itm:not(:last-child) {
        border-bottom: 1px solid #999999;
    }

.modal--all-comments .al-cmnt__tbl-itm-date {
    flex-shrink: 0;
    width: 113px;
    border-right: 1px solid #999999;
    padding: 10px 10px 7px 19px;
}

.modal--all-comments .al-cmnt__tbl-itm-sbjct {
    flex-grow: 1;
    line-height: 1.3;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 10px 10px 7.5px 20px;
}

    .modal--all-comments .al-cmnt__tbl-itm-sbjct button {
        color: #999999;
        width: 34px;
        height: 34px;
        background: #FFFFFF;
        border: 1px solid #999999;
        border-radius: 50px;
        flex-shrink: 0;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

        .modal--all-comments .al-cmnt__tbl-itm-sbjct button:hover {
            color: #fff;
            background: #0A7BF6;
            border: 1px solid #0A7BF6;
        }

.modal--deposit .modal-dialog {
    max-width: 920px;
}

.modal--deposit .modal-body {
    padding: 20px 29px 8px 29px;
}

.modal--deposit .deposit {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.modal--deposit .deposit__left, .modal--deposit .deposit__right {
    padding-right: 15px;
    padding-left: 15px;
}

.modal--deposit .deposit__left {
    width: 100%;
}

@media (min-width: 660px) {
    .modal--deposit .deposit__left {
        width: 61.18%;
    }
}

.modal--deposit .deposit__left-itm {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

    .modal--deposit .deposit__left-itm:not(:last-child) {
        margin-bottom: 10px;
    }

.modal--deposit .deposit__left-label {
    flex-grow: 1;
}

.modal--deposit .deposit__left-fld {
    flex-shrink: 0;
    width: 150px;
}

.modal--deposit .deposit__left .form-control {
    height: 42px;
}

.modal--deposit .deposit__right {
    width: 100%;
    padding-top: 11px;
}

@media (min-width: 660px) {
    .modal--deposit .deposit__right {
        width: 38.82%;
    }
}

.modal--deposit .deposit__right-label {
    display: block;
    margin-bottom: 17px;
}

.modal--deposit .deposit__right .form-control.textarea {
    min-height: 354px;
}

.modal--deposit .modal-footer {
    display: flex;
    gap: 19px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 28px 29px 30px 29px;
}

.modal--include .modal-dialog {
    max-width: 460px;
}

.modal--include .modal-body {
    padding: 29px 29px 8px 29px;
}

    .modal--include .modal-body .include {
        text-align: center;
    }

    .modal--include .modal-body .include__title {
        font-family: "aileronbold";
        font-size: 24px;
        color: #000;
        line-height: 1.32;
    }

.modal--include .modal-footer .btn {
    min-width: 105px;
    padding: 8px 20px 7px 20px;
}

.modal--email-schedule .modal-dialog {
    max-width: 970px;
}

.modal--email-schedule .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

    .modal--email-schedule .row [class*=col-] {
        padding-right: 15px;
        padding-left: 15px;
    }

.modal--email-schedule .col-6 {
    width: 100%;
}

@media (min-width: 768px) {
    .modal--email-schedule .col-6 {
        width: 50%;
    }
}

.modal--email-schedule .col-12 {
    width: 100%;
}

.modal--email-schedule .label {
    flex: 0 0 90px;
    width: 90px;
}

@media (min-width: 992px) {
    .modal--email-schedule .label {
        flex: 0 0 137px;
        width: 137px;
    }
}

.modal--email-schedule .label--space {
    display: inline-block;
    margin-bottom: 10px;
}

.modal--email-schedule .field-holder {
    display: flex;
    align-items: center;
}

    .modal--email-schedule .field-holder > div {
        flex: 1;
        position: relative;
    }

    .modal--email-schedule .field-holder .email-listdrpdwn {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
        position: absolute;
        top: 100%;
        width: 100%;
        background-color: #F2F5FA;
        border: 1px solid #E5E7EB;
        border-top: 0;
        border-radius: 0 0 4px 4px;
        padding: 5px 0;
        z-index: 1;
        display: none;
    }

        .modal--email-schedule .field-holder .email-listdrpdwn.show-drpdwn {
            display: block;
        }

    .modal--email-schedule .field-holder .email-listdrpdwn__itm {
        font-size: 14px;
        cursor: pointer;
        word-break: break-all;
        padding: 5px 10px;
    }

        .modal--email-schedule .field-holder .email-listdrpdwn__itm:hover {
            background-color: #fff;
        }

    .modal--email-schedule .field-holder .btn {
        display: block;
        width: 100%;
        padding: 9px 20px 7px 20px;
    }

        .modal--email-schedule .field-holder .btn.autoEmailEnable.disable {
            border-color: rgba(54, 54, 55, 0.1);
            background-color: rgba(54, 54, 55, 0.3);
        }

.modal--email-schedule .form-group {
    margin-bottom: 15px;
}

.modal--email-schedule .form-group--subject {
    padding-top: 14px;
}

.modal--email-schedule .form-control {
    color: #363637;
    height: 42px;
}

    .modal--email-schedule .form-control::-webkit-input-placeholder {
        color: #363637;
    }

    .modal--email-schedule .form-control:-moz-placeholder {
        color: #363637;
    }

    .modal--email-schedule .form-control::-moz-placeholder {
        color: #363637;
    }

    .modal--email-schedule .form-control:-ms-input-placeholder {
        color: #363637;
    }

    .modal--email-schedule .form-control.custom-select option {
        font-family: "aileronregular";
    }

.modal--email-schedule .emailsEditor__list {
    min-height: 42px;
    width: 100%;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    background-color: #F2F5FA;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.modal--email-schedule .emailsEditor__input {
    font-family: "aileronbold";
    color: #363637;
    font-size: 16px;
    border: none;
    outline: none;
    max-height: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    align-self: stretch;
    flex-grow: 1;
    font-size: 14px;
    background-color: transparent;
}

    .modal--email-schedule .emailsEditor__input::-webkit-input-placeholder {
        color: #363637;
    }

    .modal--email-schedule .emailsEditor__input:-moz-placeholder {
        color: #363637;
    }

    .modal--email-schedule .emailsEditor__input::-moz-placeholder {
        color: #363637;
    }

    .modal--email-schedule .emailsEditor__input:-ms-input-placeholder {
        color: #363637;
    }

.modal--email-schedule .emailsEditor.disabled .emailsEditor__input, .modal--email-schedule .emailsEditor.disabled .emailsEditor__email {
    pointer-events: none;
}

.modal--email-schedule .emailsEditor__email {
    font-family: "aileronbold";
    color: #363637;
    color: #050038;
    margin: 0 8px 2px 0;
    padding: 0 10px;
    cursor: pointer;
    display: flex;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    word-break: break-all;
}

.modal--email-schedule .emailsEditor__delete-button {
    padding-left: 10px;
}

.modal--email-schedule .attactment__title {
    display: block;
    margin-bottom: 5px;
}

.modal--email-schedule .attactment .row {
    margin-right: -5px;
    margin-left: -5px;
}

.modal--email-schedule .attactment .itm {
    width: 265px;
    padding-left: 5px;
    padding-right: 5px;
    margin: 5px 0;
}

.modal--email-schedule .attactment .itm__bg {
    display: flex;
    background-color: #F2F5FA;
    border: 1px solid #E5E7EB;
    border-radius: 5px;
    padding: 9px 9px 5px 10px;
}

.modal--email-schedule .attactment .itm__icn {
    flex-shrink: 0;
}

.modal--email-schedule .attactment .itm__rgt {
    flex-grow: 1;
    padding-left: 11px;
}

.modal--email-schedule .attactment .itm__rgt-filename {
    font-family: "aileronbold";
    font-size: 13px;
    color: #363637;
    line-height: 1.35;
    display: block;
}

.modal--email-schedule .attactment .itm__rgt-fileinfo {
    font-size: 12px;
}

.modal--email-schedule .attactment .itm__rgt-btns a {
    font-size: 12px;
    display: inline-block;
}

    .modal--email-schedule .attactment .itm__rgt-btns a + a {
        border-left: 1px solid #000000;
        padding-left: 5px;
    }

    .modal--email-schedule .attactment .itm__rgt-btns a.download {
        color: #0A7BF6;
    }

    .modal--email-schedule .attactment .itm__rgt-btns a.remove {
        color: #FF0606;
    }

.modal--email-schedule .modal-footer .btn-submit::before {
    content: "";
    width: 27px;
    height: 27px;
    display: inline-block;
    vertical-align: middle;
    background-image: url("../images/send-icn.svg");
    margin-right: 10px;
}
/*# sourceMappingURL=theme.css.map */

.marging-right {
    margin-right: 5px;
}

.padding-5 {
    padding: 5px;
}

.bg-img-non {
    background-image: none !important;
}

.email-dropdown-btn{
    margin-top: 20px;
}