/*start general*/
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "slnt" 0;
}

:root {
    --primary-color: #242424;
    --primary-color-rgba: 36, 36, 36;
    --linear-gradient: linear-gradient(225deg, #2C805B, #4CC0AF);

    --secondary-color: #2C805B;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background-image: var(--linear-gradient);
    border-radius: 25px;
}

::-webkit-scrollbar-track {
    background-color: #FFF;
}

@keyframes preloader {
    0% {
        box-shadow: 0 0 0 rgba(0, 0, 0, .5);
        opacity: 0;
        transform: translateX(-50px) scale(1);
    }

    50% {
        box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
        opacity: 1;
        transform: translateX(0) scale(1.2);
    }

    100% {
        box-shadow: 0 0 0 rgba(0, 0, 0, .5);
        opacity: 0;
        transform: translateX(50px) scale(1);
    }
}

/* start login */

.login-container {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-image: var(--linear-gradient);
}

/* Form side */

    .login-container .form-side {
        background-color: #FFF;
        border-end-end-radius: 44px;
        border-start-end-radius: 44px;
        padding: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

.login-container .form-side .logo {
    width: 100px;
}

.login-container .form-side .heading {
    margin-block-start: 30px;
    margin-block-end: 50px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.login-container .form-side .heading .greeting {
    font-weight: 700;
    font-size: 22px;
    color: var(--primary-color);
}

.login-container .form-side .heading .notice {
    font-weight: 500;
    color: var(--primary-color);
    opacity: 0.5;
}

.login-container .form-side .form .login-text {
    font-weight: 700;
    font-size: 22px;
    color: var(--primary-color);
    margin-block-end: 16px;
}

.login-container .input-container {
    outline: 1px solid rgba(var(--primary-color-rgba), 0.1);
    border-radius: 8px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    overflow: hidden;
}

.login-container .input-container>svg {
    padding-inline: 1rem;
}

.login-container .form-side .form input:is([type="text"], [type="password"]) {
    border: unset;
    outline: unset;
    padding: 14px;
}

.login-container .form-side .form input::placeholder {
    color: rgba(var(--primary-color-rgba), 0.5);
}

.login-container .form-side :link {
    color: #3BAE8A;
    font-weight: 500;
    transition: 0.15s all;
    display: inline-block;
}

.login-container .form-side :visited {
    color: #3BAE8A;
}

.login-container .form-side  :link:hover {
    transform: translateY(-0.25em);
}

.login-container .form-side :link:active {
    transform: translateY(0em);
}

.login-container .form-side .form .btn.submit {
    margin-top: 20px;
    width: 100%;
}

/* Logo side */

.login-container .logo-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.login-container .logo-side img.shape {
    width: 500px;
}

.login-container .logo-side img:nth-child(1) {
    align-self: baseline;
}

.login-container .logo-side img:nth-child(2) {
    align-self: center;
}

.login-container .logo-side img.logo {
    width: 200px;
}

.login-container .logo-side img:nth-child(3) {
    align-self: flex-end;
}

@media (max-width: 900px) {
    .login-container {
        grid-template-columns: 1fr;
    }

    .login-container .form-side {
        border-top-left-radius: 44px;
        border-top-right-radius: 44px;
        border-bottom-left-radius: unset;
        order: 1;
    }

    .login-container .logo-side {
        order: 0;
    }

    .login-container .logo-side img.shape {
        width: 250px;
    }
}

@media (max-width: 600px) {
    .login-container .form-side .form input:is([type="text"], [type="password"]) {
        padding-inline-start: 11%;
    }

    .login-container .form-side {
        padding: 25px;
    }

    .login-container .logo-side img.logo {
        width: 100px;
    }

    .login-container .logo-side img.shape {
        width: 200px;
    }
}

/* End of login */

/* Header */
.header {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.header>a {
    grid-column: span 2;
}

.header .navbar {
    background-color: #fff;
    grid-column: span 10;
}

.header .navbar a {
    color: var(--primary-color);
}



.btn.user-drop {
    background-image: unset;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 10px;
}

.btn.user-drop:hover {
    color: var(--primary-color);
}

.btn.signout {
    --primary-color: #fff;
    background-image: unset;
    background-color: #EA593C;
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

@media (max-width: 600px) {
    .header {
        grid-template-columns: 1fr;
    }
}

/* End of Header */
/* Main content */
.main-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

div.greeting {
    background-image: var(--linear-gradient);
    font-size: 21px;
    font-weight: 600;
    color: #fff;
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    overflow: hidden;
    position: relative;
}

.main-content .content {
    grid-column: span 10;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

div.greeting>div:nth-child(2) {
    position: absolute;
    left: 0;
}

@media (max-width: 600px) {
    div.greeting {
        font-size: 18px;
    }

    .main-content .content {
        gap: 16px;
    }
}

/* End of main content */
/* Side Bar */
.aside-container {
    grid-column: span 2;
    position: relative;
}

.bar-button {
    background: var(--linear-gradient);
    border-radius: 10px;
    color: #fff;
    padding: 0.5rem 1rem;
    border: 0;
    outline: 0;
    display: none;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
}

.side-bar {
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.side-bar .title {
    background-image: var(--linear-gradient);
    padding: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.side-bar>*:not(*:last-child),
.bars-section>.bar-section:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.side-bar .bar-title {
    position: relative;
    font-weight: 700;
    color: var(--primary-color);
}

.side-bar .bar-title::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 100%;
    right: -10px;
    top: 0;
    background-image: var(--linear-gradient);
    border-radius: 10px;
}

.side-bar .bar-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.side-bar .bar-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
    transition: 0.2s all;
}

.side-bar .bar-link:hover {
    font-weight: 600;
    color: var(--secondary-color);
}

.dropdown-menu {
    min-width: 15rem;
    padding: 0;
}

.no-arrow::after {
    display: none;
}

a.dropdown-item {
    transition: 0.2s all;
}

div.list {
    overflow: auto;
    max-height: 15rem;
}

div.list li:not(li:last-child) {
    border-bottom: 1px solid #ddd;
}

@media (max-width: 1200px) {

    .aside-container {
        position: fixed;
        top: 80px;
        right: 15px;
        z-index: 999999999999;
    }

    .bar-button {
        display: inline-block;
    }

    .side-bar {
        display: none;
        position: absolute;
        z-index: 999;
        background-color: #fff;
        width: 250px;
        max-height: 300px;
        overflow: auto;
        box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
        top: 0;
        right: 50px;
    }

    .side-bar.shown {
        display: block;
    }

    .side-bar::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .main-content .content {
        grid-column: span 12;
    }
}

@media (max-width: 600px) {
    .aside-container {
        top: 65px;
    }
}

/* End of side bar */
/* Subtitle */
.sub-title {
    color: var(--secondary-color);
    font-weight: 600;
}

.sub-title #txtPageName {
    color: rgba(var(--primary-color-rgba), 0.5);
}

/* End of Subtitle */
/* email link */
.email-link {
    color: var(--secondary-color);
    transition: 0.2s all;
}

.email-link:hover {
    transform: translateY(-0.25em);
    text-decoration: underline;
    color: var(--secondary-color);
}

.email-link:active {
    transform: translateY(0em);
}

/* End of email link */
.preloader {
    background-image: var(--linear-gradient);
    width: 100%;
    height: 100vh;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999999999;
}

/* Links */
.RFQ-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.RFQ-links>a {
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    font-weight: 700;
    transition: 0.2s all;
}

.RFQ-links>a:hover {
    transform: translateY(-0.25em);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
}

.RFQ-links>a:active {
    transform: translateY(0em);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.RFQ-links>a:nth-child(1) {
    background-color: #F4F9F7;
    color: var(--secondary-color);
}

.RFQ-links>a:nth-child(2) {
    background-color: #EFF9F6;
    color: #3BAE8A;
}

.RFQ-links>a:nth-child(3) {
    background-color: #F6FCFB;
    color: #4BC0AF;
}

@media (max-width: 600px) {
    .RFQ-links {
        grid-template-columns: 1fr;
    }
}

/* End of the Links */

/* widget-box, widget-body, widget-header */
.widget-box {
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    overflow: hidden;
}

.widget-header {
    background-image: var(--linear-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 0.8rem;
    position: relative;
}

.widget-header .btn-group {
    position: absolute;
    left: 16px;
}

.widget-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.widget-title {
    font-weight: 700;
}

/* End of widget-box, widget-header, widget-body */

/* two-inputs */
.two-inputs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 600px) {
    .two-inputs {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }
}

/* End of two-inputs */

/* three-inputs */
.three-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 16px;
}

@media (max-width: 600px) {
    .three-inputs {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }
}

/* End of three-inputs */

/* span */
.span1 {
    grid-column: span 1;
}

.span2 {
    grid-column: span 2;
}

.span3 {
    grid-column: span 3;
}

.span4 {
    grid-column: span 4;
}

@media (max-width: 600px) {

    .span2,
    .span3,
    .span4 {
        grid-column: span 1;
    }
}

/* End of span */
/* grid-column */
.grid-column-1 {
    grid-column: 1;
}

.grid-column-2 {
    grid-column: 2;
}

.grid-column-3 {
    grid-column: 3;
}

@media (max-width: 600px) {

    .grid-column-1,
    .grid-column-2,
    .grid-column-3 {
        grid-column: 1;
    }
}

/* End of grid-column */
/* input-container */
.input-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.7rem;
}

.input-container label {
    font-weight: 600;
}

:is(input:not([type="radio"], [type="submit"]), select, textarea) {
    border: 0;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: rgba(var(--primary-color-rgba), 0.5);
    background-color: #F7F7F7;
    width: 100%;
}

/* End of input-container */

/* Buttons container */
.buttons-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.buttons-container .btn {
    align-self: flex-end;
    height: fit-content;
}

/* End of buttons-container */

/* search-results */
.search-results {
    grid-column: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.search-results>span:nth-child(1) {
    position: relative;
}

.search-results>span:nth-child(1)::before {
    position: absolute;
    content: ":";
    left: -5px;
    z-index: 1;
    color: #000;
}

/* End of search-results */

/* project-card */
.project-card {
    border-radius: 15px;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 1rem;
}

.project-card h5 {
    font-weight: 600;
    font-size: 18px;
    margin: 0;
}

/* End of project-card */
/* Table */
.table {
    background-color: #f7f7f7;
    border: 0;
}

.table tr:not(tr:last-child) {
    border-bottom: 1px solid rgba(var(--primary-color-rgba), 0.25);
}

.table :is(th, th>a) {
    color: var(--secondary-color);
}

.table :is(td, th) {
    text-align: center;
    border-bottom: 0;
    font-weight: 600;
    padding: 1rem;
}

.table :is(th:not(th:last-child), td:not(td:last-child)) {
    border-left: 1px solid rgba(var(--primary-color-rgba), 0.25);
}

.table td a:not(a.btn) {
    color: var(--secondary-color);
    transition: 0.2s all;
    display: inline-block;
}

.table td a:not(a.btn):hover {
    transform: translateY(-0.25em);
}

.table td a:not(a.btn):active {
    transform: translateY(0);
}

/* End of table */

/* two-ratio-input */
.two-ratio-input {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
}

.two-ratio-reverse-input {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
}

@media (max-width: 600px) {

    .two-ratio-reverse-input,
    .two-ratio-input {
        grid-template-columns: 1fr;
    }
}

/* End of two-ratio-inputs */
.alert {
    position: relative;
    border-radius: 15px;
    padding: 0.8rem;
    padding-inline-start: 3rem;
    border: unset;
}

.alert::before {
    position: absolute;
    width: 24px;
    height: 24px;
    padding: 0.3rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.alert.alert-warning {
    background-color: rgba(239, 1, 1, 0.1);
    color: rgba(239, 1, 1, 1);
}

.alert.alert-warning::before {
    content: "!";
    color: rgba(239, 1, 1, 1);
    border: 1px solid rgba(239, 1, 1, 1);
}

.alert.alert-information {
    background-color: rgba(255, 173, 66, 0.1);
    color: rgba(255, 173, 66, 1);
}

.alert.alert-information::before {
    content: "!";
    color: rgba(255, 173, 66, 1);
    border: 1px solid rgba(255, 173, 66, 1);
}

.alert.alert-attention {
    padding-inline-start: 0.8rem;
    background-color: rgba(66, 173, 255, 0.1);
    color: rgba(66, 173, 255, 1);
}

.alert.alert-attention::before {
    display: none;
}

.side-bar .badge,
.main-content .modal .heading .badge {
    position: relative;
    top: unset;
    left: unset;
    transform: none;
    padding: 2px 7px;
    color: #FFF;
    background-color: #EA593C;
    font-size: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    line-height: unset;
}

.preloader span {
    background: url(/images/white-logo.png);
    background-size: 350;
    background-repeat: no-repeat;
    background-position-y: 50%;
    width: 50px;
    height: 300px;
    margin: 0 20px;
    background-image: var(--linear-gradient);
    animation: preloader 1.4s linear infinite;
}

.preloader span:nth-child(1) {
    animation-delay: 0;
}

.preloader span:nth-child(2) {
    animation-delay: .2s;
    background-position-x: -50px;
}

.preloader span:nth-child(3) {
    animation-delay: .4s;
    background-position-x: -100px;
}

.preloader span:nth-child(4) {
    animation-delay: .6s;
    background-position-x: -150px;
}

.preloader span:nth-child(5) {
    animation-delay: .8s;
    background-position-x: -200px;
}

.preloader span:nth-child(6) {
    animation-delay: 1s;
    background-position-x: -250px;
}

.preloader span:nth-child(7) {
    animation-delay: 1.2s;
    background-position-x: -300px;
}

a {
    text-decoration: none;
}

.yellow {
    background-color: #F9A61A !important;
}

.navy,
.btn-primary {
    background-color: #178CAF !important;
}

.color-navy {
    color: #178CAF;
}

.btn {
    background-image: var(--linear-gradient);
    color: #fff;
    padding: 8px;
    border: 0;
    outline: 1px solid transparent;
    transition: 0.2s all;
    font-weight: 500;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

a.btn.delete {
    background-image: unset;
    background-color: #ed5e68;
    width: fit-content;
    margin: auto;
}

.btn:hover {
    box-shadow: 0 0.5em 0.5em -0.4em rgba(0, 0, 0, .2);
    transform: translateY(-0.25em);
    color: #fff;
}

.btn.outline {
    background-image: unset;
    background-color: #fff;
    outline: 1px solid #2B7F5B;
    color: #2B7F5B;
}

.btn.yellow,
.btn.navy,
.btn-primary {
    color: #FFF !important;
}

.btn.navy-outline {
    color: #2DB4DD;
    background-color: #FFF;
    border: 1px solid #2DB4DD;
}

.btn.navy-outline:hover {
    color: #FFF;
    background-color: #2DB4DD;
}

.dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.dropdown-menu .dropdown-title {
    text-align: start;
    padding: 0.25em 1em;
    color: #178CAF;
    border-bottom: 1px solid var(--secondary-color);
    font-weight: bold;
}

.dropdown-item {
    text-align: start;
}

nav .dropdown-menu p {
    white-space: normal;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style-type: none;
}

.btn.outline:hover {
    color: #163547;
    background-color: #FFF;
}

.bold {
    font-weight: bold;
}

input[ondblclick] {
    background-image: url(/assets/V2/imgs/apps.png);
    background-position: calc(100% - 10px) 10px;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 5px 10px;
}

.small-inputs {
    width: 100%;
    padding: 20px 0;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.multi-inputs {
    width: 100%;
    padding: 20px 0;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.fraction-inputs {
    width: 100%;
    padding: 20px 0;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 25px;
}

.double-inputs {
    width: 100%;
    padding: 20px 0;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.full-inputs {
    width: 100%;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.grid-column-1 {
    grid-column: 1;
}

.user-data .input-container {
    justify-content: flex-start;
}

.input-container .btn.submit {
    width: fit-content;
}

.full-input {
    width: 100%;
}

.input-container .dual-inputs {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.input-container .dual-inputs>* {
    flex: 1;
}


nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

nav .logo-side {
    display: flex;
    align-items: center;
    gap: 100px;
}

nav .logo img {
    width: 125px;
}

nav .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    color: #FFF;
    font-size: 18px;
}

nav .menu li {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 8px;
    cursor: pointer;
}

nav .menu>li.active,
nav .menu>li:hover {
    background-color: #61869D;
}

nav .dropdown-menu .notification {
    display: flex;
    gap: 10px;
    align-items: self-start;
}

nav .dropdown-menu .notification-footer {
    color: #178CAF;
    font-size: 13px;
    font-weight: 500;
}

nav .dropdown-menu .notification-footer p {
    margin: 0;
}

.dropdown-menu .read-all {
    width: 100%;
}

nav .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

nav .buttons .user-drop {
    padding-inline-start: 30px;
}

nav .buttons .btn .user-img {
    width: 40px;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #FFF;
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    transform: translateX(50%);
}

nav .buttons .btn .user-img img {
    width: 100%;
}

.page-title {
    color: #FFF;
    background-image: linear-gradient(to left, #178CAF, #34C1EC);
    margin: 20px 0;
    padding: 20px;
    text-align: center;
    font-weight: 500;
    border-radius: 15px;
    position: relative;
}

.page-title::after {
    content: '';
    background-image: linear-gradient(to left, #178CAF, #34C1EC);
    opacity: .4;
    height: 15px;
    position: absolute;
    bottom: -15px;
    left: 15px;
    right: 15px;
    border-radius: 0 0 10px 10px;
}

.main-content>.container,
.main-content>.container-fluid {
    padding: 0 2rem 4rem;
}

.sub-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.sub-title .svg-inline--fa {
    font-size: 14px;
}

.sidebar-toggle {
    color: #FFF !important;
    background-color: #2C698D;
    width: fit-content;
    position: fixed;
    top: 75px;
    right: 20px;
    border-radius: 8px;
    z-index: 4;
    display: none;
}

.mobile-bar {
    background-color: #FFF;
    max-height: 100vh;
    padding: 30px 10px 10px;
    display: block !important;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    overflow-y: auto;
    z-index: 3;
}

.mobile-bar .svg-inline--fa {
    transform: rotate(-90deg);
}

.side-bar .user-info {
    background-image: linear-gradient(to left, #178CAF, #34C1EC);
    padding: 50px 20px 20px;
    position: relative;
    border-radius: 8px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.side-bar .user-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 20px;
    transform: translateY(-50%);
    border: 4px solid #FFFF;
}

.side-bar .user-img img {
    height: 100%;
}

.side-bar .user-name {
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
}

.side-bar .menu {
    margin: 15px 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 8px;
}

.side-bar .menu .title {
    color: #178CAF;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: bold;
    position: relative;
}

.side-bar .menu .btn-group {
    width: 100%;
    display: block;
}

.side-bar .menu .btn-group .btn {
    color: #163547;
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
}

.side-bar .menu .btn-group .btn .svg-inline--fa {
    font-size: 14px;
}

.side-bar .menu .dropdown-menu {
    padding: 0;
}

.mobile-bar .menu .dropdown-menu.show {
    position: relative !important;
    transform: none !important;
}

.side-bar .menu .dropdown-item {
    color: #2C698D;
    padding: 7px;
    font-weight: 500;
    border-bottom: 1px solid #2C698D;
}

.content-wrapper {
    padding-inline-start: 30px;
}

input[type="date"] {
    color: #999999;
}

.file-container {
    position: relative;
}

input[type="file"] {
    padding: 0;
    border: none;
}

input[type="file"]::-webkit-file-upload-button {
    color: #FFF;
    background-image: linear-gradient(to left, #178CAF, #34C1EC);
    ;
    padding: .375rem .75rem;
    border: 1px solid #34C1EC;
    border-radius: 8px;
    cursor: pointer;
    transition: .2s linear;
}

input[type="file"]::-webkit-file-upload-button:hover {
    color: #34C1EC;
    background-color: #FFF;
}

.input-container .dual-inputs label {
    color: #2C698D;
    background-color: #E9E9E9;
    padding: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: 0;
}

input[type="checkbox"],
input[type="radio"] {
    margin-inline-end: 5px;
}

/* .checkbox label{
    display: flex;
    align-items: center;
    gap: 5px;
}

.checkbox-btn{
    width: 15px;
    height: 15px;
    padding: 1px;
    border: 2px solid #2C698D;
    border-radius: 2px;
}

.checkbox-btn .active-checkbox{
    width: 100%;
    height: 100%;
    background-color: #2C698D;
    display: none;
    border-radius: 2px;
}

input[type="checkbox"]:checked ~ label .checkbox-btn .active-checkbox{
    display: block;
} */

/***************** general a ****************************/

.img-info {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 30px;
}

.img-info .img-container img {
    width: 100%;
}

.img-info .info-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-content: flex-start;
    gap: 20px;
}

.info-container .multi-items {
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-content: flex-start;
    gap: 10px;
}

.info-container .info-item {
    background-color: rgba(44, 105, 141, .2);
    height: fit-content;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
}

.info-container .full-items .info-item {
    margin-bottom: 10px;
}

.info-container .full-items .info-item .title {
    white-space: nowrap;
}

.shadow-box {
    padding: 25px 10px;
    margin-bottom: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
}

.files-box .small-inputs {
    padding: 0;
    margin: 0;
}

.files-box .file-container>label {
    color: #2C698D;
}

.table-bordered thead {
    background-color: rgba(44, 105, 141, .13);
}

.table-bordered th {
    color: #2C698D;
}

.table-bordered th,
.table-bordered td {
    font-size: 15px;
    font-weight: normal;
    vertical-align: middle;
}

.table-bordered td:nth-child(2),
.table-bordered td:last-child {
    text-align: center;
}

.table-bordered td input {
    color: #000;
    padding: 3px;
    border: 1px solid #C6C6C6;
    outline: none;
    border-radius: 5px;
}

.table-bordered td input:disabled {
    background-color: #E6E6E6;
}

.table-bordered td .small {
    width: 75px;
}

.table-bordered tbody tr:last-child {
    background-color: rgba(223, 158, 19, .13);
}

.attach {
    width: fit-content;
}

.attach .titles,
.attach .item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.attach .titles,
.attach .item {
    margin-bottom: 1em;
}

.table-borderless {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1em;
}

.table-borderless tbody tr {
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.table-borderless th,
.table-borderless td {
    padding: 15px 10px;
    vertical-align: middle;
}

.table-borderless thead th {
    color: #2C698D;
    font-size: 15px;
    font-weight: normal;
}

.table-borderless tbody th,
.table-borderless tbody td {
    font-size: 16px;
    font-weight: 500;
}

.table-borderless th:last-child,
.table-borderless td:last-child {
    text-align: center;
}

footer p {
    color: #FFF;
    background-image: var(--linear-gradient);
    padding: 10px;
    margin: 0;
    text-align: center;
}

.links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.links .link {
    color: #178CAF;
    background-color: rgba(23, 140, 175, .25);
    border-radius: 10px;
    cursor: pointer;
    transition: .2s linear;
}

.links .link:hover {
    transform: translateY(-3px);
}

.tabs-header {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 5px 8px 24px;
}

.tabs-header .navy:hover {
    color: #FFF !important;
    background-color: #522D82;
}

.tabs-body>div {
    display: none;
}

.tabs-body .active {
    display: block;
}


/*end general*/




.login .form-side .title {
    margin-bottom: 15px;
}

.login .form-side .title svg {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
}

.login .form-side h5 {
    color: #0692AC;
}

.login .form-side .inputs {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.login .form-side .input-container {
    padding: 2px 8px 2px 2px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    border: 1px solid #C6C6C6;
    border-radius: 8px;
}

.login .form-side .validate-input {
    margin-bottom: 20px;
}

.login .form-side .input-container label {
    margin-bottom: 0;
}

.login .form-side .input-container .svg-inline--fa {
    color: #888888;
}

.login .form-side .input-container .icon-input {
    padding-inline-end: 3px;
    flex: 1;
    display: flex;
    align-items: center;
}

.login .form-side .input-container .icon-input .svg-inline--fa {
    cursor: pointer;
}

.login .form-side .input-container input,
.login .form-side .input-container select {
    flex: 1;
    padding: 4px;
    font-size: 18px;
    background-color: #FFF !important;
    border: none;
    outline: none;
}

.login .form-side input[type="submit"] {
    width: 100%;
    margin-bottom: 20px;
}

.login .form-side .new-account p {
    color: #2C698D;
    font-size: 18px;
    font-weight: 500;
}

.login .form-side .new-account a {
    color: #F9A61A;
}


.login .logo-side img {
    width: 100%;
    max-width: 250px;
}

.login .shape {
    height: 100%;
    position: absolute;
    right: 0;
}

.login .shape img {
    width: auto;
    height: 100%;
    transform: translateX(90%);
}

/* .login .lines{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.login .line-container{
    background-color: #D7ECF1;
    display: flex;
    gap: 7px;
    position: absolute;
}

.login .line-container.first{
    height: 30%;
    padding: 20px 20px;
    right: 0;
    top: 20px;
    transform: rotate(-29deg);
}

.login .line-container.second{
    height: 60%;
    padding: 0 20px;
    right: 0;
    top: calc(20px + 30%);
    transform: translatey(-11%) rotate(13deg);
}

.login .line-container .line{
    height: 100%;
    width: 3px;
}

.login .line-container.first .line{
    background-image: linear-gradient(to bottom, #D9E7E3, #F3B341, #659A73);
}

.login .line-container.second .line{
    background-image: linear-gradient(to bottom, #659A73, #1493A3, #659A73, #F8AA24, #D9E7E3);
} */

/*end login*/

/*start home*/

.home .content-wrapper {
    padding: 50px 50px 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* .home .content-wrapper > div{
    display: grid;
    grid-template-rows: 1fr 2fr;
} */

.home .content-wrapper>div .header {
    padding: 60px 20px 20px;
    margin-bottom: 50px;
    border-bottom: 8px solid;
    border-radius: 8px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    text-align: center;
    position: relative;
}

.home .content-wrapper>div .header .icon-wrapper {
    background-color: #FFF;
    width: fit-content;
    padding: 15px;
    border: 2px solid;
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.home .content-wrapper>div .header .icon-wrapper svg {
    width: 50px;
    height: 50px;
}

.home .content-wrapper>div .header .num {
    color: #163547;
    font-size: 32px;
    font-weight: bold;
}

.home .content-wrapper>div .header h5 {
    font-weight: 700;
}

.home .content-wrapper>div .body {
    min-height: 350px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    text-align: center;
}

.home .content-wrapper>div .body p {
    color: #163547;
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: bold;
}

.home .content-wrapper>div .body img {
    width: 100%;
}

.home .projects .icon-wrapper,
.home .projects .header {
    border-color: #FDCA40 !important;
}

.home .projects .header h5 {
    color: #FDCA40;
}

.home .challenge .icon-wrapper,
.home .challenge .header {
    border-color: #3385D6 !important;
}

.home .challenge .header h5 {
    color: #3385D6;
}

.home .rating .icon-wrapper,
.home .rating .header {
    border-color: #FF916F !important;
}

.home .rating .header h5 {
    color: #FF916F;
}

/*end home*/

/*start order*/

.order .checks {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.order .checks {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.order table:not(.input-container table) {
    border-collapse: separate;
    border-spacing: 0 1em;
}

.order table th,
.order table td {
    color: #2C698D;
    text-align: center;
}

.order table:not(.input-container table) tbody tr {
    background-color: rgba(44, 105, 141, .1);
    margin-bottom: 10px;
}

.order table tbody tr th {
    border-radius: 0 8px 8px 0;
}

.order table thead tr th:nth-child(2) {
    width: 70%;
    text-align: start;
}

.order table tbody tr td:nth-child(2) {
    text-align: start;
}

.order table tbody tr td:last-child {
    border-radius: 8px 0 0 8px;
}

.order .file-inputs input[type="file"] {
    max-width: 180px;
}

/*end order*/

/*start search*/
.result {
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.result .content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.result .img-container {
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.result .img-container img {
    height: 100%;
}

.result .info-container .header {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 12px;
}

.result .info-container .header .data {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.result .info-container .header .data span:first-child {
    color: #2B7F5B;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
}

.result .info-container .header .data:not(.data:last-child) span:first-child::before {
    content: ":";
    position: absolute;
    left: -5px;
}

.result .info-container .header .date {
    color: #828282;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.result .info-container .text {
    color: #2B7F5B;
    font-weight: 700;
}

.result .info-container .details {
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.result .info-container .details .detail {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.result .info-container .details .detail .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F7F7F7;
    border-radius: 10px;
    padding: 0.5rem;
    color: rgba(var(--primary-color-rgba), 0.5);
    font-size: 14px;
}

.result .info-container .details .title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
}

.result .buttons {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
}

@media (max-width: 1300px) {
    .result .info-container .details {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 821px) {
    .result .info-container .header {
        grid-template-columns: repeat(2, 1fr);
    }

    .result .info-container .details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .result .info-container .header {
        grid-template-columns: 1fr;
    }

    .result .content {
        grid-template-columns: 1fr;
    }

    .result .img-container {
        display: none;
    }

    .result .info-container .details {
        grid-template-columns: 1fr;
    }

    .result .info-container .details .detail {
        flex-direction: column;
    }

    .result .buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*end search*/

/*media query*/

@media screen and (max-width: 1366px) {
    .small-inputs {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 1200px) {

    .sidebar-toggle {
        display: block;
    }

    .home .content-wrapper {
        padding: 50px 0;
    }

    .small-inputs {
        grid-template-columns: repeat(3, 1fr);
    }

    .multi-inputs,
    .fraction-inputs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {

    .order .file-inputs {
        grid-template-columns: 1fr;
    }

    nav .menu {
        order: 3;
        margin: 0 auto;
    }

    nav .buttons {
        order: 2;
    }

    .login .img-side img {
        width: 150px;
    }

    .home .content-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .info-container .multi-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {

    nav .menu {
        gap: 5px;
        flex-wrap: wrap;
    }

    .login {
        padding: 20px;
    }

    .login .row {
        height: auto;
    }

    .login .container {
        padding: 40px;
    }

    .login .form-side {
        order: 1;
        padding: 20px;
    }

    .login .img-side {
        order: 0;
        margin-bottom: 20px;
    }

    .home .content-wrapper {
        padding: 50px 20px;
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .home .content-wrapper>div .body img {
        width: 70%;
    }

    .order .file-inputs .dual-inputs {
        flex-wrap: wrap;
    }

    .img-info {
        grid-template-columns: 1fr;
    }

    .img-info .img-container {
        width: 30%;
        margin: 0 auto;
    }

}

@media screen and (max-width: 520px) {

    .small-inputs,
    .multi-inputs,
    .double-inputs,
    .fraction-inputs,
    .img-info .info-container,
    .info-container .multi-items {
        grid-template-columns: 1fr;
    }

    nav .logo img {
        width: 80px;
    }

    nav .buttons {
        gap: 10px;
    }

    nav .buttons .btn {
        font-size: 12px;
    }

    nav .menu li {
        font-size: 14px;
    }

    .login .container {
        padding: 20px;
    }

    .login .img-side img {
        width: 100px;
    }

    .mobile-bar {
        width: 100%;
    }

    .attach input {
        max-width: 120px;
    }
}

@media screen and (max-width: 370px) {
    nav .logo img {
        width: 70px;
    }

    nav .buttons {
        gap: 5px;
    }

    nav .buttons .btn {
        padding: 5px;
    }
}

table tr td {
    padding: 5px;
}

.popupDatepicker {
    background-size: 20px;
    background-repeat: no-repeat;
    background-image: url(/assets/v2/imgs/calender.png);
    background-position: 5px 50%;
}


/* Styles related to SupplierData.aspx */
.tabs-header {
    display: grid;
    grid-template-columns: repeat(8, 1fr) auto;
}

.tabs-header.five {
    grid-template-columns: repeat(4, 1fr) auto;
}

.button-tab {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #D1D5DB;
    border: 0;
    background-color: transparent;
    position: relative;
}

.circle-line {
    width: 100%;
    display: grid;
    align-items: center;
    grid-template-columns: 25px 1fr;
}

.circle-line>.circle {
    aspect-ratio: 1/1;
    width: 100%;
    border-radius: 50%;
    position: relative;
    border: 1px solid #D1D5DB;
    background-color: #fff;
    color: #fff;
    position: relative;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s all;
}

.circle-line>.line {
    width: 100%;
    height: 2px;
    background-color: #D1D5DB;
    transition: 0.2s all;
}

.button-tab.active {
    color: #2D805C;
}

.button-tab.active .line {
    background-color: #2D805C
}

.button-tab.active .circle {
    border-color: #2D805C
}

.button-tab.active.finish .circle {
    background-color: #2D805C;
}

.button-tab span {
    font-size: 14px;
    font-weight: 600;
}

.tabs-header>.button-tab:last-child>.circle-line>.line {
    display: none;
}

@media (max-width:821px) {

    .tabs-header,
    .tabs-header.five {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 10px;
    }

    .button-tab {
        align-items: center;
    }

    .button-tab:nth-child(3)::before {
        position: absolute;
        content: "";
        height: calc(100% + 10px);
        width: 2px;
        background-color: #D1D5DB;
        top: 12px;
        left: 0;
        z-index: 99;
        transition: 0.2s all;
    }

    .button-tab:nth-child(4) {
        grid-area: 2/3;
    }

    .button-tab:nth-child(5) {
        grid-area: 2/2;
    }

    .button-tab:nth-child(6) {
        grid-area: 2/1;
    }

    .button-tab:nth-child(6)::before {
        position: absolute;
        content: "";
        height: 73%;
        width: 2px;
        background-color: #D1D5DB;
        top: 25px;
        right: 11px;
        z-index: 99;
        transition: 0.2s all;
    }

    .button-tab:nth-child(3).active::before,
    .button-tab:nth-child(6).active::before {
        background-color: #2D805C;
    }
}

@media (max-width: 600px) {
    .button-tab:nth-child(4) {
        grid-area: auto;
    }

    .button-tab:nth-child(5) {
        grid-area: auto;
    }

    .button-tab:nth-child(6) {
        grid-area: auto;
    }

    .button-tab:nth-child(3)::before,
    .button-tab:nth-child(6)::before {
        all: unset;
    }

    .tabs-header,
    .tabs-header.five {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 10px;
    }

    .button-tab:nth-child(3) {
        grid-area: 2/2;
    }

    .button-tab:nth-child(7) {
        grid-area: 4/2;
    }

    .button-tab:nth-child(2)::before,
    .button-tab:nth-child(6)::before {
        position: absolute;
        content: "";
        height: calc(100% + 10px);
        width: 2px;
        background-color: #D1D5DB;
        top: 12px;
        left: 0;
        z-index: 99;
        transition: 0.2s all;
    }

    .button-tab:nth-child(4)::before,
    .button-tab:nth-child(8)::before {
        position: absolute;
        content: "";
        height: 73%;
        width: 2px;
        background-color: #D1D5DB;
        top: 25px;
        right: 11px;
        z-index: 99;
        transition: 0.2s all;
    }

    .button-tab:nth-child(8)::before {
        height: 81%;
    }

    .button-tab:nth-child(4).active::before,
    .button-tab:nth-child(8).active::before,
    .button-tab:nth-child(2).active::before,
    .button-tab:nth-child(6).active::before {
        background-color: #2D805C;
    }
}

/*Chaning the langauge*/
:root[dir="ltr"] .fa-chevron-left{
    transform: rotate(180deg)
}

:root[dir="ltr"] .side-bar .bar-title::before{
    right: unset;
    left: -10px;
}

:root[dir="ltr"] .search-results > span:nth-child(1)::before{
    left: unset;
    right: -5px
}

:root[dir="ltr"] :is(.popupDatepicker, input[ondblclick]) {
    background-position: 99% 50%;
}

:root[dir="ltr"] .icon-input label:has(svg){
    left: unset;
    right: 10px;
}