:root {
    --txt-size: 14px;
    --bg-color: #ffffff;
    --bg-section-color: #ffffff;
    --auth-text: #0e223d;
    --error-ms: #ff3535;
    --sec-color: #0e223d;
    --main-color: #0e223d;
    --button-color: #0e223d;
    --button-text-color: #ffffff;
    --scroll-color: #868686b0;
    --scroll-top-color: #555;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
html,
main {
    background-color: var(--bg-color);
    font-family: "Inter", "sans-serif" !important;
    font-size: var(--txt-size);
    font-weight: 400;
    min-height: 100vh;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

html {
    overflow: -moz-scrollbars-none;
}

main {
    background-color: var(--bg-section-color);
    background-position: 50%;
    background-repeat: no-repeat;
}

.container {
    max-width: 90%;
}

.field_wrapper {
    padding: 0;
    margin: 0;
}

/*::-webkit-input-placeholder {*/
/*    color: var(--main-color) !important;*/
/*}*/

/*::-moz-placeholder {*/
/*    color: var(--main-color) !important;*/
/*}*/

/*::-ms-placeholder {*/
/*    color: var(--main-color) !important;*/
/*}*/

/*::-moz-placeholder {*/
/*    color: var(--main-color) !important;*/
/*}*/

/*:-ms-input-placeholder {*/
/*    color: var(--main-color) !important;*/
/*}*/

/*::placeholder {*/
/*    color: var(--main-color) !important;*/
/*}*/

.divider {
    background-color: #969696;
    margin: 10px 0;
}

img {
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

a,
a:focus {
    color: inherit !important;
    text-decoration: none !important;
}

a.disabled {
    pointer-events: none;
    cursor: default;
}

.header-nav:hover {
    background-color: grey !important;
}

.form-control:focus,
.form-select:focus,
button,
input,
select,
textarea {
    /*background-color: var(--bg-color);*/
    color: var(--main-color);
    border-color: #05070a;
    box-shadow: unset;
    outline: unset;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
    box-shadow: unset !important;
    outline: unset !important;
}

.form-check {
    margin-bottom: 25px;
    position: relative;
}

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

.form-check-input:checked {
    background-color: var(--sec-color);
    border-color: var(--sec-color);
}

.form-select {
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%230E223D' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E") !important;
    box-shadow: none !important;
}

p.code {
    bottom: 120px;
    color: var(--bg-color);
    font-size: 9px;
    margin: 0;
    position: absolute;
    right: -35px;
    transform: rotate(90deg);
}

.input-container {
    position: relative;
}

.hide_input {
    height: 10px;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 10px;
    z-index: -1;
}

.opacity-0 {
    opacity: 0 !important;
}

p.error,
span.error {
    color: var(--error-ms);
    font-size: 14px;
}

::-webkit-scrollbar,
::-webkit-scrollbar-track {
    background-color: white;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--scroll-color);
    border: 0 solid var(--scroll-top-color);
}

.header {
    background-color: var(--bg-section-color);
    display: block;
}

.header .logo_background {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    color: var(--button-text-color);
}

.header .header_container {
    min-height: 65px;
}

.header .user_img {
    margin-right: 1rem;
}

.header .header_logo {
    width: 160px;
}

.header .second_row {
    border-top: 1px solid #e0e3e6;
    font-size: 17px;
}

.header .menu_list {
    list-style: none;
}

.header .menu_list li {
    font-weight: bold;
    border-bottom: 2px solid transparent;
}

.header .menu_list li.active,
.header .menu_list li:hover {
    border-bottom: 2px solid var(--main-color);
}

.header .search_input {
    width: 291px;
    height: 45px;
    padding-left: 55px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    border: none;
    background-color: #eff0f5;
}

.header .search_btn {
    /*border-top-right-radius: 50px;*/
    /*border-bottom-right-radius: 50px;*/
    /*background-color: var(--main-color);*/
    top: 8px;
    left: 5px;
    border: none;
    color: var(--main-color);
    font-size: 14px;
    width: 47px;
}

.sidebar_container {
    min-width: 255px;
    background-color: var(--bg-section-color);
    color: var(--main-color);
}

.sidebar .corporate {
    background-color: #ffffff;
    cursor: pointer;
}

.sidebar .scrollable a.active,
.sidebar .scrollable a:hover {
    background-color: var(--main-color);
    color: var(--bg-color) !important;
}

.sidebar li.active,
.sidebar li:hover {
    background-color: var(--main-color);
    color: var(--bg-color) !important;
}

.sidebar .date_input {
    margin-right: 5px;
}

.sidebar .filter_buttons {
    border-top: 1px solid #e0e3e6;
}

.sidebar .filter_buttons .btn {
    background-color: var(--button-color);
    border: 1px solid var(--button-color);
    border-radius: 50px;
    color: var(--bg-color);
    margin: 0 5px;
    width: 110px;
}

.approve_btn {
    background-color: #52d1bd !important;
}

.reject_btn {
    background-color: #e34646 !important;
}

.decline_btn {
    background-color: #e34646 !important;
}

.sidebar .filter_buttons .btn.close {
    background-color: var(--bg-color);
    color: var(--button-color);
}

.scrollable {
    overflow: hidden;
    overflow-y: auto;
}

.sidebar .scrollable {
    overflow: hidden;
    overflow-y: auto;
}

.header .center_menu {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
}

.header .center_menu span {
    width: 31.33%;
    margin: 0 1%;
}

.header .center_menu a {
    background-color: var(--bg-color);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 0 5px #b3b3b3;
    color: var(--main-color) !important;
    display: inline-block;
    font-size: 18px;
    padding: 32px 10px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

.header .center_menu a.active,
.header .center_menu a:hover {
    background-color: var(--main-color);
    color: var(--bg-color) !important;
}

.header .dropdown {
    align-items: center;
    display: flex;
    justify-content: flex-end;
}

.header .dropdown button {
    color: var(--button-color);
    font-size: 24px;
}

.header .top_menu {
    align-items: center;
    display: flex;
    justify-content: flex-end;
}

.header .top_menu ul {
    border: unset;
    border-radius: 10px;
    box-shadow: 0 0 4px #909090;
    padding: 0;
}

.header .top_menu li:first-child {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.header .top_menu li:last-child {
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.header .top_menu li a {
    font-size: 16px;
    padding: 7px 29px;
}

.header .top_menu a {
    font-size: 16px;
    padding: 7px 15px;
}

.header .top_menu li.active a,
.header .top_menu li:hover a {
    background-color: var(--main-color) !important;
    color: var(--bg-color) !important;
    overflow: hidden;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #0E223D !important;
    background-color: #E4E4E4 !important;
}

.header .top_menu li a.dropdown-item p:focus,
.header .top_menu li a.dropdown-item p:hover {
    color: var(--main-color) !important;
    /* background-color: var(--main-color) !important; */
}

.dropstart .dropdown-toggle::before {
    color: var(--main-color);
    margin-right: 9px !important;
}

.dropstart .dropdown-toggle:focus::before,
.dropstart .dropdown-toggle:hover::before {
    /*color: var(--bg-color) !important;*/
    color: #0e223d !important;
}

.header .top_menu li.not_head {
    color: var(--main-color);
    font-weight: 700;
    padding: 10px 70px;
    text-align: center;
}

.header .top_menu li.not_foot a {
    border-top: 1px solid #d6d6d6;
    display: block;
    font-size: 14px;
    text-align: center;
    width: 100%;
}

.header .top_menu li a.dropdown-item p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 6px;
    max-width: 90vw;
    white-space: normal;
    width: 332px;
}

.header .top_menu li a.dropdown-item span {
    color: #9c9c9c;
    font-size: 14px;
}

.header .modal-body form {
    align-items: center;
}

.header .data h3 {
    color: var(--main-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.header .data h5 {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.pages_head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 35px 0;
}

.pages_head h3 {
    color: var(--main-color);
    font-size: 28px;
    margin: 0;
}

.pages_head .features {
    align-items: center;
    display: flex;
    justify-content: flex-end;
}

.pages_head .filter button {
    color: var(--button-color);
    font-size: 22px;
    margin-left: 15px;
}

.pages_head .input-group {
    border: 1px solid;
    border-radius: 10px;
    color: var(--main-color);
}

.pages_head .input-group input {
    border: unset;
    border-radius: 10px 0 0 10px;
    font-size: 18px;
}

.pages_head .input-group button {
    background-color: var(--main-color);
    border: unset;
    border-radius: 0 10px 10px 0;
    color: var(--bg-color);
    font-size: 16px;
}

.pages_body {
    background-color: transparent;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 295px);
    justify-content: center;
    overflow: hidden;
}

.pages_body .body_head {
    margin-bottom: 25px;
}

.body_head .action_btn {
    align-items: flex-end;
    display: flex;
    justify-content: flex-end;
    margin-right: 20px;
    margin-top: 15px;
}

.pages_body .center_menu {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0;
    width: 80%;
}

.pages_body .center_menu .nav-link {
    background-color: var(--bg-color);
    border: unset;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 0 5px #b3b3b3;
    color: var(--main-color) !important;
    display: inline-block;
    font-size: 16px;
    padding: 18px 10px;
    text-align: center;
    text-transform: uppercase;
    width: 32.5%;
}

@media only screen and (max-width: 1516px) {
    .pages_body .center_menu .nav-link {
        background-color: var(--bg-color);
        border: unset;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 0 5px #b3b3b3;
        color: var(--main-color) !important;
        display: inline-block;
        font-size: 11px;
        padding: 18px 10px;
        text-align: center;
        text-transform: uppercase;
        width: 32.5%;
    }
}

.pages_body .center_menu.double .nav-link {
    width: 49.5%;
}

.pages_body .center_menu .nav-link:hover {
    background-color: grey !important;
    color: var(--bg-color) !important;
}

.pages_body .center_menu .nav-link.active {
    background-color: var(--main-color);
    color: var(--bg-color) !important;
    pointer-events: none;
}

.pages_body .body_content {
    display: flex;
    flex-direction: column;
    height: calc(100% - 85px);
    justify-content: space-between;
    overflow: auto;
    padding: 0 25px;
}

.pages_body .body_head button {
    background-color: var(--button-color);
    border-radius: 10px;
    color: var(--bg-color);
    font-size: 14px;
    padding: 8px 21px;
    text-transform: uppercase;
}

.splash {
    background-color: rgb(0 0 0/60%);
    color: #fff;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    transition: all 0.3s linear;
    width: 100%;
    z-index: 4000;
}

.splash:before {
    content: "";
    height: 50%;
    width: 0;
}

.splash .splash_content,
.splash:before {
    display: inline-block;
    vertical-align: middle;
}

.splash .splash_content {
    font-weight: 400;
    text-align: center;
    transform: translateY(-50%);
    white-space: normal;
    width: 100%;
}

.splash .splash_content h1 {
    font-family: Trebuchet MS, Helvetica, sans-serif;
    font-weight: 700;
}

.text-muted {
    color: #e4e4e4 !important;
}

.splash svg {
    -webkit-animation: animation 0.5s linear infinite;
    animation: animation 0.5s linear infinite;
}

@-webkit-keyframes animation {
    0% {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(45deg);
    }
}

@keyframes animation {
    0% {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(45deg);
    }
}

.footer h3 {
    color: var(--main-color);
    margin-top: 12px;
    /*text-transform: uppercase*/
}

select {
    box-shadow: 2px 2px 8px #d5d5d5;
}

@media (max-width: 992px) {
    .header .center_menu a,
    .pages_body .center_menu a {
        font-size: 14px;
    }
}

.un-seen-notification {
    background: #f9f9f9;
}

.un-seen-notification p {
    color: var(--button-color);
}

.delete-objection-btn {
    position: absolute;
    right: 0;
    top: 0;
}

tbody td {
    vertical-align: middle;
    padding-left: 10px;
}

tbody td span {
    display: inline-block;
    word-break: break-word;
    font-size: 13px;
}

tbody td.empty_search {
    height: calc(100vh - 396px);
}

tbody td span.search_icon {
    font-size: 92px;
    color: #afafaf;
}

tbody td span.no_result_text {
    font-size: 24px;
}

tbody td p.search_paragraph {
    font-size: 20px;
    color: #afafaf;
    text-align: center;
}

tbody td.no-result {
    text-align: center !important;
}

.notifications-scroll {
    height: calc(300% + 237px);
    overflow: auto;
    overflow-y: scroll;
}

.rounded-pill {
    border-radius: 50% !important;
    box-shadow: 0 1px #ccc;
}

.bg-info {
    background-color: #f8f9fa !important;
}

.text-dark {
    color: var(--button-color) !important;
}

#main #mobile-modal {
    background-color: #fff;
    background-image: url(/images/background.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 99999;
}

#main .alert_modal casing {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

/*#main .alert_modal .data {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    flex-direction: column;*/
/*    margin: 0;*/
/*    !*padding: 15px 1px;*!*/
/*    text-align: center;*/
/*}*/

#main .alert_modal .data {
    display: block;
    margin: 0;
    padding: 15px 1px;
    text-align: center;
}

#main .alert_modal .data img {
    margin-bottom: 25px;
    height: 100px;
    width: 100px;
}

#main .alert_modal .data h5 {
    font-size: 19px;
    font-weight: 400;
    text-align: center;
    color: #707070;
}

#main #success-modal .data span {
    align-items: center;
    border: none;
    border-radius: 50%;
    background-color: #20be79;
    color: var(--bg-section-color);
    display: flex;
    font-size: 75px;
    height: 100px;
    justify-content: center;
    margin: 0 auto 25px;
    width: 100px;
}

#main #error-modal .data span {
    align-items: center;
    border: none;
    border-radius: 50%;
    background-color: var(--error-ms);
    color: var(--bg-section-color);
    display: flex;
    font-size: 75px;
    height: 100px;
    justify-content: center;
    margin: 0 auto 25px;
    width: 100px;
}

.reset {
    align-items: center !important;
    background: #ddd !important;
    border-radius: 50% !important;
    color: #162042 !important;
    display: flex;
    font-size: 13px !important;
    height: 15px !important;
    justify-content: center !important;
    line-height: 82px !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    right: 42px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 15px !important;
    z-index: 999 !important;
}


.dots_span {
    display: inline-block;
    overflow: hidden !important;
    text-overflow: ellipsis;
    vertical-align: middle;
    white-space: nowrap;
    width: 250px;
}

.new_btn {
    position: relative;
}

.new_btn button.btn {
    position: absolute;
    right: -30px;
    width: 25px;
    top: 50%;
    height: 25px;
    background-color: var(--button-color);
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 0;
    border-radius: 50%;
}

@media (max-width: 1190px) {
    .dots_span {
        width: 150px;
    }
}

.p-value {
    color: var(--main-color);
    font-weight: 700;
}

.header .input-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    position: relative;
    width: 100%;
}

.header .input-container span.error {
    bottom: -23px;
    left: 1px;
    position: absolute;
}

/*.front-validation {*/
/*    font-size: 20px !important;*/
/*}*/

.fa-arrow-left,
.fa-question-circle {
    color: var(--button-color);
}

.custom-tooltip.tooltip > .tooltip-inner {
    text-align: left;
    max-height: 500px;
    max-width: 500px;
    font-size: 15px;
    color: var(--main-color);
    background-color: var(--bg-color);
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--bg-color) !important;
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: var(--bg-color) !important;
}

.tooltip.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: var(--bg-color) !important;
}

.tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: var(--bg-color) !important;
}

.droppable-class {
    background: #ddd !important;
}

.header .disabled {
    opacity: 50%;
}

/*#toast-container>.toast-error {*/
/*    right: -87%;*/
/*    -webkit-animation: slide-left 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;*/
/*    animation: slide-left 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;*/
/*}*/

/*#toast-container>div{*/
/*    opacity: 1 !important;*/
/*    padding: 15px 15px 15px 39px !important;*/
/*    width: 320px !important;*/
/*    box-shadow: 0 0 12px #000;*/

/*}*/
/*#toast-container>.toast-error {*/
/*    background-image: url('../images/error-icon.png') !important;*/
/*    color: #F73333 !important;*/
/*    font-size: 1em !important;*/
/*    font-weight: 500 !important;*/
/*}*/
/*.toast{*/
/*    background-color: #E5E5E5 !important;*/
/*    color: #F73333 !important;*/
/*}*/
/*.toast-top-right {*/
/*    top: 20% !important;*/
/*}*/

@-webkit-keyframes slide-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-250px);
    }
}

@keyframes slide-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-250px);
    }
}

.select2-selection__rendered:focus,
.select2:focus,
.selection:focus,
.select2-selection:focus,
.select2-selection__arrow:focus {
    outline: none;
}

.border_bottom_shadow {
    box-shadow: 0 8px 6px -6px #dedede;
}

.border_right_shadow {
    box-shadow: 8px 0 6px -6px #dedede;
}

.border_bottom_shadow {
    box-shadow: 0 8px 6px -6px #dedede;
}

/* .border_top_shadow {
    box-shadow: 0 -9px 8px -6px #dedede;
} */
.footer {
    border-top: 1px solid #c4c4c4;
    margin-top: 22px;

}

.footer .footer_container {
    min-height: 45px;
}

/*body header*/

.body_header .btn {
    background-color: var(--button-color);
    border-radius: 5px;
    color: var(--bg-color);
    font-size: 14px;
    padding: 8px 21px;
}

.link {
    background-color: var(--button-color);
    border-radius: 5px;
    color: var(--bg-color) !important;
    font-size: 14px;
    padding: 10px 21px;
}

.link:focus {
    color: var(--bg-color) !important;
}

.reverse_link {
    background-color: var(--bg-color);
    border: 1px solid #ced4da;
    border-radius: 5px;
    color: var(--main-color) !important;
    font-size: 14px;
    padding: 9px 21px;
}

#main #logout-modal .data span,
#main #delete-modal .data span,
#main #deactive-modal .data span {
    align-items: center;
    border: 5px solid var(--error-ms);
    border-radius: 50%;
    /*background-color: #F4F4F4;*/
    color: var(--error-ms);
    display: flex;
    font-size: 75px;
    height: 100px;
    justify-content: center;
    margin: 0 auto 25px;
    width: 100px;
}

#main #active-modal .data span {
    align-items: center;
    border: 5px solid #20be79;
    border-radius: 50%;
    /*background-color: #F4F4F4;*/
    color: #20be79;
    display: flex;
    font-size: 75px;
    height: 100px;
    justify-content: center;
    margin: 0 auto 25px;
    width: 100px;
}

.alert_modal .buttons {
    width: 60%;
}

.alert_modal .buttons .btn {
    background-color: #D7373F;
    border: 1px solid var(--error-ms);
    border-radius: 6px;
    color: var(--bg-color);
    width: 125px;
}
.approvewith .buttons .btn {
 background-color: #20be79;
    border: none;
    border-radius: 6px;
    color: var(--bg-color);
    width: 125px;
}

#active-modal .buttons .btn {
    background-color: var(--error-ms);
    border: 1px solid var(--error-ms);
}

.alert_modal .buttons .btn.close {
    /* background-color: var(--main-color);
    border: 1px solid var(--main-color); */
    background-color: transparent;
    border: 1px solid transparent;
    color: #0e223d;
}

#active-modal .buttons .btn.confirm-toggle-active-btn {
    background-color: #00be4b;
    border: 1px solid #00be4b;
}

#send-modal .buttons .btn.confirm-send-btn {
    background-color: #00be4b;
    border: 1px solid #00be4b;
}

#confirm-edit-modal #confirm-edit-btn {
    background-color: #00be4b;
    border: 1px solid #00be4b;
}

#deactive-modal .buttons .btn.close {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
}

#delete-modal .buttons .btn.close {
    background-color: transparent;
    border: 1px solid transparent;
    color: #D7373F !important;
}

/*body filter*/
.body_filter {
    border-radius: 5px;
}

.body_filter .btn {
    background-color: var(--button-color);
    border-radius: 5px;
    color: var(--bg-color);
    font-size: 14px;
    padding: 5px 20px;
}

.body_filter_btn {
    background-color: var(--button-color);
    border-radius: 5px;
    color: var(--bg-color);
    font-size: 14px;
    padding: 5px 20px;
}

.body_filter_btn:hover {
    background-color: var(--button-color);
    border-radius: 5px;
    color: var(--bg-color);
    font-size: 14px;
    padding: 5px 20px;
}

/*body header*/

.create_header .btn {
    background-color: var(--button-color);
    border-radius: 5px;
    color: var(--bg-color) !important;
    font-size: 14px;
    padding: 9px 40px;
}
.small_btn{
        font-size: .9rem !important;
    padding: 9px 25px !important ;
}
.cancel-btn.small_btn{
        font-size: .9rem !important;
    padding: 9px 25px !important ;
    background: #d94141 !important;
}
/*body header*/

.create_content {
    /*height: calc(100vh - 265px);*/
    /*overflow: hidden;*/
    /*overflow-y: auto;*/
    margin-bottom: 1rem;
}

.form_content .input_icon {
    display: block;
    position: relative;
}

.form_content .input_icon .icons {
    color: var(--button-color);
    font-size: 17px;
    margin-top: -12px;
    padding: 0;
    position: absolute;
    right: 10px;
    top: 16px;
}

/*table*/
.table {
    border-radius: 6px;
    /*border: 1px solid #fff;*/
    border-top-color: var(--main-color);
    overflow: hidden;
}

.table thead {
    background-color: var(--main-color) !important;
    color: var(--bg-color) !important;
    text-align: left;
    /*position: sticky;*/
    /*position: -webkit-sticky;*/
    /*top: 0;*/
}

.table tbody {
    text-align: left;
    background-color: #fff;
}

.table_fixed_head {
    overflow: auto;
    /* height: 100px; */
}

.table th {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    padding: 18px 10px;
    font-weight: 400;
}

.table th:first-child {
    padding-left: 10px;
}

.table td {
    padding: 10px 10px;
    font-weight: 400;
}

.table td:first-child {
    padding-left: 10px;
}

/*pagination*/
.page-item.active .page-link {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

/*select2*/

.select2 span {
    min-height: 33px;
}

.select2 li .select2-selection__choice__display {
    color: var(--main-color);
    font-size: 18px;
    padding: 0 7px;
}

/*.select2 button {*/
/*    height: 28px*/
/*}*/

.select2 textarea {
    /*font-size: 18px !important;*/
    height: 20px !important;
    margin-left: 11px !important;
    margin-top: 8px !important;
}

span.select2-selection__rendered {
    position: relative;
    /*top: 5px;*/
    /*line-height: 20px !important;*/
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #6c757d !important;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #ced4da;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    height: 32px;
}

/*.select2-container {*/
/*    border-radius: .25rem;*/
/*    box-shadow: 2px 2px 8px #d5d5d5;*/
/*    font-size: 18px;*/
/*    margin-top: 11px;*/
/*    width: 100% !important*/
/*}*/

/*.select2-selection--multiple {*/
/*    border: 1px solid #ced4da*/
/*}*/

.select2-container--open {
    z-index: 9999999;
}

/*Select2 ReadOnly Start*/
select[readonly].select2-hidden-accessible + .select2-container {
    pointer-events: none;
    touch-action: none;
}

select[readonly].select2-hidden-accessible + .select2-container .select2-selection {
    background: #eee;
    box-shadow: none;
}

select[readonly].select2-hidden-accessible + .select2-container .select2-selection__arrow,
select[readonly].select2-hidden-accessible + .select2-container .select2-selection__clear {
    display: none;
}

/*Select2 ReadOnly End*/

.show-btn {
    color: var(--main-color);
    padding: 0 7px;
}

/*.edit-btn {*/
/*    color: grey !important;*/
/*    padding: 0 7px;*/
/*}*/

.delete-btn {
    color: red;
    /*padding: 0 7px;*/
    padding: 0;
}

.delete-attachments-btn {
    color: red;
}

.download_icon {
    color: #20be79;
}

.active-btn {
    padding: 0 7px;
}

.active-color {
    color: #0e223d !important;
}

.deactive-color {
    color: #c6c6c6 !important;
}

.font_bigger {
    font-size: 37px;
}

.show_modal .modal-header {
    background-color: var(--main-color);
    color: var(--bg-color);
}

.show_modal .modal-header {
    background-color: var(--main-color);
    color: var(--bg-color);
}

.modal-header .btn-close {
    background: transparent url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23eee'%3E%3Cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3E%3C/svg%3E") 50%/1em auto no-repeat !important;
    border-radius: 100% !important;
}

.overlay-hidden {
    display: none !important;
}

/* Loading  */
.loading-overlay {
    background: rgba(0, 0, 0, 0.94);
    color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blobs-container {
    display: flex;
}

.blob {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    margin: 10px;
    height: 155px;
    width: 155px;
    transform: scale(1);
    -webkit-animation: pulse-black 2s infinite;
            animation: pulse-black 2s infinite;
}

.blob.white {
    background: #ffffffa8;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
    -webkit-animation: pulse-white 2s infinite;
            animation: pulse-white 2s infinite;
}

@-webkit-keyframes pulse-white {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 100px rgba(255, 177, 66, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 500px rgba(255, 255, 255, 0);
    }
}

@keyframes pulse-white {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 100px rgba(255, 177, 66, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 500px rgba(255, 255, 255, 0);
    }
}

/* landscape mode */

.landscape-mode {
    position: absolute;
    top: 0;
    left: 0;
    background: black;
    z-index: 999999;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.phone {
    height: 50px;
    width: 100px;
    border: 3px solid white;
    border-radius: 10px;
    -webkit-animation: rotate 1.5s ease-in-out infinite alternate;
            animation: rotate 1.5s ease-in-out infinite alternate;
    /* display: none; */
}

.message {
    color: white;
    font-size: 1em;
    margin-top: 40px;
    /* display: none; */
}

@-webkit-keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-90deg);
    }
    100% {
        transform: rotate(-90deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-90deg);
    }
    100% {
        transform: rotate(-90deg);
    }
}

.dot {
    font-size: 12px;
}

.fixed_width {
    min-width: 156px !important;
    text-align: left;
}

/* custom_scrollbar */
/* Firefox */

* {
    scrollbar-width: thin; /* "auto" or "thin" */
    /*scrollbar-color: var(--main-color) #223d63; !* scroll thumb and track *!*/
}

/* width */
*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

/* Track */
*::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgb(233, 227, 227);
    /* border-radius: 5px; */
}

/* Handle */
*::-webkit-scrollbar-thumb {
    /* background: #eff0f5; */
    /* border-radius: 5px; */
}

/* Handle on hover */
*::-webkit-scrollbar-thumb:hover {
    /* background: #223d63; */
}

@media screen and (orientation: landscape) {
    .landscape-mode {
        display: none;
    }
}

@media screen and (orientation: portrait) {
    .landscape-mode {
        display: flex;
    }
}

.footer span {
    font-size: 12px;
}

.content_height {
    min-height: calc(100vh - 134px);
}

.mainContainer {
    min-width: calc(100vw - 300px) !important;
}

#sidebar {
    transition: all 0.5s;
    z-index: 0;
}

#sidebar.active {
    margin-left: -239px;
}

.btn-outline-secondary:hover {
    background-color: #c6c6c6;
    border-color: #c6c6c6;
}

.title-info-box {
    width: 329px;
    background: #f8f7f7;
    border-left: 4.7px #0e223d solid;
    border-radius: 5px;
    padding: 3px 3px 3px 12px;
}

.no_content {
    height: 85%;
}

.no_content .btn {
    background-color: var(--button-color);
    border-radius: 5px;
    color: var(--bg-color);
    font-size: 14px;
    padding: 8px 21px;
}

.row-highlight {
    background-color: #b0e2b0;
}

.create-item-btn {
    width: 160px;
}

.form-check-label {
    cursor: pointer;
}

.attachment_uploads {
    cursor: pointer;
    background-color: #efefef;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
}

.attachment_uploads label {
    cursor: pointer;
}

.doc_icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #dadada;
    margin-right: 5px;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    -moz-user-select: none;
         user-select: none; /* Standard syntax */
}

.copy {
    background-color: var(--bg-color);
    border: none;
}

.copy_icon {
    color: #52d1bd;
    display: inline-block;
    vertical-align: bottom;
}

.copy-btn {
    color: #52d1bd;
}

.text-cyan {
    color: #52d1bd !important;
}

.text-cyan:active {
    color: #52d1bd !important;
}

.cursor-pointer {
    cursor: pointer !important;
}

.remove_button {
    position: absolute !important;
    top: -12px !important;
    right: -10px !important;
    background: #fff;
    border: 1px solid #ced4da;
    padding: 2px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
}

.close-icon {
    font-size: 18px;
    cursor: pointer;
}

.badge {
    font-size: 0.3em;
    background-color: red !important;
    color: #ffffff !important;
    right: 1px;
}

.change_btn {
    background-color: #e5f8f5;
    color: #52d1bd;
}


#settings {
    display: flex;
}


.causer-box {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    float: right;
    padding: 3px;
    border-radius: 5px;
    color: #b5a473;
}


.box-status {
    /*color: green !important;*/
    /*background: #b1e8d0 !important;*/
    /* padding: 5px !important; */
    border-radius: 6px !important;
    width: 80px !important;

}

.status-align {
    color: #d9a300 !important;
    text-align: initial !important;
    padding: 0px !important;
}

.create_header .btn-complete {
    background-color: #20BE79;
}

.notes-box {
    background-color: #EDE8E5;
}


/*for count leads status*/
span.count-box {
    font-size: 10px;
    padding: 3px;
    margin-left: 10px;
    border-radius: 50%;
    width: 25px !important;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*for nested tab*/
div > div > a.tab-nested {
    font-size: 10px !important;
    font-weight: 600 !important;
}


a.view-icon {
    right: 90px !important;
}

.word-break {
    word-break: break-all;
}


.create-box {
    width: 163.2px !important;
}

.no-data-text {
    font-size: 16px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    --bs-table-accent-bg: #ffffff !important;
}


.table > :not(:last-child) > :last-child > * {
    white-space: nowrap !important;
}


.material-icons-outlined {
    line-height: inherit !important;
}

.border-start {
    border-left: 3px solid #e6e6e6 !important;
    height: 37px !important;
}

.notify-icon {
    margin-right: 9px;
}


.btn-height-40 {
    height: 40px !important;
}

.btn-height-30 {
    height: 30px !important;
}


.bg-gray {
    background-color: #818181 !important;
}

/* modal css */
.img_container {
    width: 100%;
    display: flex;
    padding: 0.7rem;
    justify-content: center;

}

.img_container img {
    width: 10%;
}

#delete-modal .img_container,
#logout-modal .img_container,
#reject-modal .img_container,
#decline-modal .img_container,
#error-modal .img_container,
#cancel-modal .img_container,
#deactive-modal .img_container
{
    background-color:#F7D7D8;
    border-radius: 0.3rem;
}

#success-modal .img_container,
#send-modal .img_container,
#active-modal .img_container,
#send-modal .img_container
{
    background-color: #D2F2E4;
    border-radius: 0.3rem;
}
#approvewith-modal .img_container
{
      border-radius: 0.3rem;
     background-color: #D2F2E4;
    color: var(--bg-section-color);
}
#showcomment-modal .img_container
{
      border-radius: 0.3rem;
     background-color: #07111e;
    color: white;
}
#send-modal .img_container.img_container img {
    width: 14%;
}

#download-copy-modal .img_container {
    background-color: #CED2D8;
}
#logout-modal .modal_text{
   color: #D7373F;
}

#reject-modal p,
#decline-modal p,
#cancel-modal p{
    color: #D7373F;
    font-size: 1.2em;
    margin-bottom: 0;
}
#approvewith-modal p{
    color: #0E223D;
        font-size: 1.2em;
    margin-bottom: 0;
}
#showcomment-modal p{
    color: #ffffff;
        font-size: 1.2em;
    margin-bottom: 0;
}
/* --------------- */

.header .top_menu li.active a, .header .top_menu li:hover a {
    color: #0E223D !important;
    background-color: #E4E4E4 !important;
}
.header .top_menu .not_foot:hover a {
    color: #0E223D !important;
    background-color: white !important;
}

.dropstart .dropdown-toggle::before {

    content: "";
    content: '<';
    font: 17px "Consolas", monospace;
    border: 0px !important;
}

.fa-eye-slash:before {
    content: "\f070";
    color: #CED2D8;
}


/*.dropdown-settings:hover>.dropdown-menu {*/
/*    display: block;*/
/*    margin-top: 285px*/
/*}*/

/*.dropdown-settings>.dropdown-toggle:active {*/
/*    !*Without this, clicking will make it sticky*!*/
/*    pointer-events: none;*/
/*}*/


.dropstart:hover > .dropdown-menu {
    display: block;
    /*margin-top: 285px;*/
    margin-left: -220px;
    width: 216.88px !important;
}

.dropstart > .dropdown-toggle:active {
    /*Without this, clicking will make it sticky*/
    pointer-events: none;
}


/*three dots style*/

.fixed_width {
    min-width: 80px !important;
    text-align: left !important;
}

.showLeft {
    /*background-color: #dddddd  !important;*/
}

.icons li {
    /*background: none repeat scroll 0 0 #fff;*/
    height: 7px;
    width: 7px;
    line-height: 0;
    list-style: none outside none;
    margin-right: 15px;
    margin-top: 3px;
    vertical-align: top;
    border-radius: 50%;
    pointer-events: none;
}

.btn-left {
    left: 0.4em;
}

.dropbtn {
    border: none;
    cursor: pointer;
    margin-left: 13px;
}


.dropdown-three-dots {
    display: inline-block;
    right: 0.4em;
}

.dropdown-content {
    display: none;
    position: relative;
    background-color: #f9f9f9;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    /*padding: 12px 16px;*/
    text-decoration: none;
    display: block;
}

.dropdown-three-dots a:hover {
    /*background-color: #f1f1f1*/
}

.show-three-dots-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    right: 22px;
    /*width: -webkit-fit-content;*/
    width: -moz-fit-content;
    width: 125px;
    /*top: 12px;*/
    box-shadow: 0px 0px 9px #0e223d;
    border-radius: 3px;
}

.last-three-dots-content{
    /*top: -127px;*/
    bottom: 14px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.not-last-three-dots-content{
    top: 12px;
}


.action-icon{
    margin-right: 8px;
}


.show-three-dots-content-border-bottom {
    border-bottom: 1px solid #e5e5e5;
    /*padding-left: 0;*/
    color: #0e223d;

    padding: 5px 10px;
    width: auto;
}


/*.show-three-dots-content-border-bottom:hover {*/
/*    background: #0e223d;*/
/*    color: white;*/
/*}*/



ul .three-dots-li::before {
    content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #212529; /* Change the color */
}

.w-10 {
    width: 10% !important;
}

.w-20 {
    width: 20% !important;
}

.w-20 {
    width: 20% !important;
}

.w-30 {
    width: 30% !important;
}

.w-55 {
    width: 55% !important;
}
.w-65 {
    width: 65% !important;
}

.w-85 {
    width: 85% !important;
}

.w-95 {
    width: 95% !important;
}


span.box-status {
    padding: 5px !important;
    border-radius: 30px !important;
    text-align: center;
    min-width: -webkit-fit-content !important;
    min-width: -moz-fit-content !important;
    min-width: fit-content !important;
    color: #FEB139 !important;
    background: rgba(254, 177, 57, 0.15) !important;
    width: 150px !important;
    margin-left: 30px !important;
}

.currency-box {
    width: 12rem !important;
}

.name-box {
    width: 140px !important;
}

.image_box {
    border-radius: 10px !important;
    box-shadow: 0 0 12px #9c9c9c !important;
    /*height: 90px !important;*/
    /*width: 90px !important;*/
    height: 8rem !important;
    width: 13.29rem !important;
    position: relative !important;
    background-blend-mode: color-dodge !important;
}


.quotation-offer-row {
    border: 1px #f9f9f9 solid;
    box-shadow: 0 .1rem .4rem rgba(0, 0, 0, .11) !important;
    padding: 0 !important;
    margin: 0 !important;
}


.date-color {
    color: #20BE79 !important;
}

.quotation-status {
    width: 220px;
    padding-left: 7px;
    color: red;
}

.currency-color {
    color: #947667;
}

.quotation-tr{
    border-style: none !important;
}

.right-left-no-border{
    border-right: none !important;
    border-left: none !important;
}


.left-no-border{
    border-left: none !important;
}

.right-no-border{
    border-right: none !important;
}
.table-bk{
    background-color: #ffffff !important;
    color: #0E223D!important;
}


.quotation-bg{
    background: white !important;
    color: #0e223d !important;
    border-top: none !important;
}


.font-bold{
    font-weight: bolder !important;
}
.currency-label-pay{
    right: 45%;
    color: #52d1c6;
    font-weight: bold;
}


div.note-box {
    padding: 5px 25px;
    background: #e7dddd;
}


.radio-inputs input[type=radio] {
    cursor: pointer !important;
}
.shadow-table{
    box-shadow:rgb(0 0 0 / 5%) 0px -4px 3px !important;
    padding: 0px;
}


/*for tagify customization*/



.tagify__tag>div{
    color: #20BE79;
}

.tagify--noAnim div {
    color: #947667 !important;
}
.tagify--noAnim {
    background: #F0ECEA !important;
}

/*open file color*/
.open-file-color{
    color: #1FB3E7 !important;
    margin-left: 40px;
}

.emailing-page{
    color: #A46743;
    font-size: 14px;
    margin-left: 30px;
}


.pill-color{
    color: red !important;
    top: 5px !important;
    right: 6px;
}


input.disabled-mood{
    pointer-events: none;
    background: #eff0f5;
}

.header_container .btn-outline-secondary:hover {
    background-color: transparent;
    border-color: transparent;
}
.check-left{
    margin-left: 0.1rem
}
.btn-check:focus+.btn, .btn:focus{
    box-shadow: 0 0 0 0.25rem transparent !important;
}

.text-Notes{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 285px;
}
#notes-modal  .buttons{
width:99%;
cursor:pointer;
}


.d-flex.flex-column:last-of-type{
    margin-bottom: 20px;
}


.with-without-profit-box{

    color: #959595;

}


.lead-status{
    padding: 4px 10px !important;
    border-radius: 18px;
    width: 100px;
    text-align: center !important;
}


/*add for differece between chrome and firefox*/
.table-bordered > :not(caption) > * {
    border-width: 1px !important;
}

thead {
    border: 0px none !important;
}

.arrows{
    font-size: 20px !important;
    margin-left: 10px;
    padding-right: 5px;
}

.pt-b1{
    padding-top: 0.15rem;
}


.un-clickable-box{
    pointer-events: none;
}

