/*poppins font*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
/*poppins font*/
:root {
    --poppins-font: 'Poppins', sans-serif;
    --transition4: .4s;
    --transition1: .1s;
    --black800: rgb(31 31 31);
    --box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    --grey400: rgb(246 246 246);
    --grey401: rgb(241 241 241);
    --success: rgb(4 165 4);
    --radius8: 8px;
    --radius50: 50px;
    --radius6: 6px;
    --radius4: 4px;
    --white: rgb(255 255 255);
    --black: rgb(0 0 0);
    --gre300: rgb(205 205 205);
}

@font-face {
    font-family: 'Material Symbols Outlined';
    src: url('/icons/material-Icons-outlined.woff2') format('woff2');
    font-weight: 100 700;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: var(--poppins-font);
}

.no-scroll {
    overflow: hidden !important;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: var(--white);
    border-radius: var(--radius50);
}

.no-scroll ::-webkit-scrollbar {
    display: none !important;
}

::-webkit-scrollbar {
    width: 4px;
    height: 5px;
    border-radius: var(--radius50);
}

::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: rgb(167 167 167);
    border-radius: var(--radius50);
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: var(--white);
    border-radius: var(--radius50);
}

.theme-checkbox input[type=checkbox] {
    position: relative;
    border: 1px solid rgb(177, 177, 177);
    background: none;
    cursor: pointer;
    line-height: 0;
    outline: 0;
    vertical-align: middle;
    height: 18px;
    width: 18px;
    -webkit-appearance: none;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .theme-checkbox input[type=checkbox]:before {
        content: '✓';
        position: absolute;
        opacity: 0;
        font-weight: 600;
        font-size: 12px;
    }

    .theme-checkbox input[type=checkbox]:checked:before {
        opacity: 1;
    }

a, select, button, .button {
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

a {
    color: var(--black800);
}

    a:hover {
        color: var(--primary-color);
    }

img, svg {
    transition: var(--transition4);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-control, .ui-pg-input, .ui-pg-selbox, .form-select {
    padding: 10px 16px;
    font-size: 14px;
    background-color: var(--white);
    color: rgb(122 122 122);
    font-weight: 400;
    border: 1px solid var(--gre300);
    border-radius: var(--radius6);
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group {
    margin-bottom: 14px;
    position: relative;
}

.form-control:focus,
.ui-widget-content.ui-pg-input:focus,
select.ui-widget-content.ui-pg-selbox:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.071);
    outline: none;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' -25, 'opsz' 48
}

.button,
.theme-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    border-radius: var(--radius6);
    border: 1px solid var(--white);
    font-size: 16px;
    transition: var(--transition4);
    cursor: pointer;
    font-weight: 400;
    text-decoration: none !important;
}

    .button:hover,
    .theme-btn:hover {
        transform: translateY(2px);
    }

.primary-btn {
    background: var(--primary-color);
    color: var(--white) !important;
}

.btn-login input {
    padding: 14px 10px;
}

p {
    margin: 0;
}

.primary-btn:hover {
    color: var(--white);
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
}


/*login css*/
.login-area:has(.lot-page) {
    height: 100%;
}

.afterLoginActive .menu-login ul {
    padding: 0;
}

.login-header h1 {
    font-size: 25px;
    font-weight: 400;
    margin: 12px 0 15px;
}

    .login-header h1 span {
        display: block;
        font-weight: 700;
        font-size: 30px;
        color: var(--primary-color);
    }

.login-modal form {
    margin: 2rem 0 0;
}

.login-container {
    padding: 0 2rem;
    margin: auto;
    max-width: 1100px;
    width: 100%;
}

.wrapper:has(.after-login) .login-container, .wrapper:has(.after-login) .theme-container,
.ChangePassword .login-container,
body.signuppage .wrapper .login-container {
    max-width: 1600px;
    margin: auto;
    width: 100%;
    padding: 0 1rem;
}

.logo a {
    padding: 0;
}

.login-area {
    height: 100vh;
    min-height: 500px;
    overflow-y: auto;
    position: relative;
    background-repeat: no-repeat;
    background-position: right top;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-size: contain;
}

.banner-area {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login-vector {
    width: 55%;
}

    .login-vector img {
        display: block;
        width: 100%;
        max-width: 90%;
    }

.login-form {
    border-radius: var(--radius8);
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
    width: 45%;
    box-shadow: 0px 0px 28px 5px #a7a7a71c;
    min-width: 400px;
}

.login-modal {
    text-align: center;
}

.login-header img {
    max-height: 35px;
    width: auto;
}

.password-field {
    display: flex;
    align-items: center;
}

.forgot-password {
    text-align: right;
    font-size: 14px;
    margin-bottom: 15px;
}

.banner-panel {
    display: flex;
    justify-content: space-around;
    gap: 6rem;
    align-items: center;
}


/*header css*/

.header-panel {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
    padding: 10px 0;
}

.login-area .logo {
    background: var(--white);
    border-radius: var(--radius6);
    width: auto;
    height: 55px;
}

.menu-login ul {
    display: flex;
    background: var(--white);
    border-radius: var(--radius6);
    justify-content: flex-end;
    padding: 10px 20px;
    align-items: center;
}

.menu-login a {
    display: block;
    text-decoration: none;
    padding: 16px 14px;
    font-size: 16px;
    font-weight: 500;
    transition: none;
}

.action-validation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

    .action-validation label, .action-validation a {
        margin: 0;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 0;
    }

.menu-login a:hover,
.menu-login a.active {
    color: var(--primary-color) !important;
}

.btn-login {
    display: flex;
    gap: 6px;
    margin-bottom: 0;
    flex-direction: column;
}

.footer-panel p {
    font-size: 14px;
    opacity: .7;
}

.footer-login {
    margin-bottom: 4px;
}

.signup-block h1,
.h1title {
    margin-bottom: 1rem;
    font-size: 22px;
    text-align: center;
}

.signup-details h4 {
    font-size: 18px;
    padding-bottom: 2px;
}

.signup-forms {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 10px;
}

.signuppage .signup-forms {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.form-froup-text {
    font-size: 14px;
}

.signup-details, .document-forms {
    margin-bottom: 1rem;
    background: var(--white);
    box-shadow: 0px 0px 28px 5px rgb(167 167 167 / 11%);
    padding: 2rem;
    border-radius: var(--radius8);
}

    .document-forms h4 {
        font-size: 18px;
    }

.code-input {
    display: flex;
    gap: 10px;
}

    .code-input .codewith {
        width: 50px;
        min-width: 50px;
    }

.document-forms td, .document-forms th {
    padding: 8px 0;
    vertical-align: baseline;
}

document-forms h4 {
    font-size: 18px;
    padding-bottom: 2px;
}

.document-forms .table {
    margin: 0;
    overflow: auto;
    min-width: 800px;
}

    .document-forms .table thead tr td {
        font-weight: 700;
    }

.signin-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

    .signin-btns .theme-btn {
        width: auto;
        min-width: 150px;
    }

.secondary-btn {
    background: var(--white);
    color: var(--primary-color);
}

.session-exp {
    max-width: 600px;
}

    .session-exp p {
        margin: 2rem 0;
        font-size: 18px;
    }

.text-danger {
    font-size: 14px;
    display: block;
    text-align: left;
}

/*dashboard css*/
.user-details button {
    border: none;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.userprofile {
    min-width: 40px;
    height: 40px;
    width: 40px;
    overflow: hidden;
    border-radius: 100%;
}

    .profile-img-ert img, .userprofile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.profile-data h4 {
    margin: 0;
    color: var(--black);
    font-size: 16px;
    text-align: left;
}

.profile-data p {
    opacity: 0.7;
    font-size: 13px;
    text-align: left;
}

.user-details .dropdown-menu {
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    background: var(--white);
    width: 260px;
    right: 0;
    border-radius: var(--radius4);
    text-align: left;
    border: none;
    overflow: hidden;
    padding: 0;
}

.logindetails b {
    font-weight: inherit;
}

.menu-login ul.dropdown-area {
    padding: 10px 0px;
    flex-direction: column;
    align-items: flex-start;
}

    .menu-login ul.dropdown-area li {
        width: 100%;
    }

.user-details .dropdown-menu .dropdown-item {
    padding: 8px 20px;
    font-weight: 500;
    border-radius: var(--radius6);
    font-size: 14px;
}

.loginData p {
    font-weight: 400;
    color: rgb(33 37 41);
    font-size: 12px;
}

.profile-data h4 a {
    padding: 0;
}

.log-top {
    font-size: 12px;
    display: block;
    text-align: left;
    padding-left: 20px;
    margin-bottom: 10px;
}

.evebt-user-data {
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    border-top: 1px solid var(--grey400);
}

.profile-under-data .event-data-label {
    font-size: 14px;
    display: block;
    line-height: 2;
}

.user-details {
    display: flex;
    align-items: center;
}

.menu-login {
    flex: 1;
}

.dropdown-item.active, .dropdown-item:active {
    color: rgb(30 33 37);
    background-color: rgb(233 236 239);
    outline: none;
}

/*ongoing event btn*/
.ongoing-event {
    white-space: nowrap;
    position: relative;
}

    .ongoing-event a {
        font-size: 14px;
        font-weight: 400;
        color: var(--white);
        padding: 11px 20px;
        border-radius: var(--radius6);
        display: flex;
        align-items: center;
        gap: 10px;
        background-color: var(--primary-color);
        margin: 0;
    }

        .ongoing-event a img {
            height: 22px;
            filter: invert(1);
            width: auto;
        }

        .ongoing-event a span {
            line-height: 0;
            color: var(--white);
        }

        .ongoing-event a:after {
            background-color: var(--primary-color);
            content: "";
            display: block;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            border-radius: var(--radius6);
            -webkit-animation-name: blink;
            animation-name: blink;
            -webkit-animation-duration: 1s;
            animation-duration: 1s;
            -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
            animation-direction: alternate-reverse;
            -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
            animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
        }

@-webkit-keyframes blink {
    0% {
        transform: scale3d(1, 1, 1);
        opacity: 0.8;
    }

    100% {
        transform: scale3d(1.1, 1.3, 1.1);
        opacity: 0;
    }
}

@keyframes blink {
    0% {
        transform: scale3d(1, 1, 1);
        opacity: 0.8;
    }

    100% {
        transform: scale3d(1.1, 1.3, 1.1);
        opacity: 0;
    }
}

.ongoingEventsModal {
    margin: 0 1rem;
}

.ongoing-event a:hover {
    color: var(--white) !important;
}

.big-title h1 {
    font-size: 30px;
    font-weight: 400;
    margin: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.big-title {
    padding-bottom: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

    .big-title h3 {
        background: rgba(0, 0, 0, .1);
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 18px;
        margin-top: 5px;
        white-space: nowrap;
        cursor: pointer;
        font-weight: 400;
    }

.inner-body {
    background: var(--white);
    border-radius: var(--radius8);
    border: 1px solid var(--gre300);
    overflow: hidden;
}

    .inner-body table {
        width: 100% !important;
    }

.table-title {
    padding-bottom: 4px;
    font-size: 16px;
}

.afterLoginActive .header {
    background: var(--white);
    z-index: 9;
    padding-bottom: 8px;
}

.admin-header {
    border-bottom: 1px solid var(--grey400);
}

.light-btn {
    background: rgb(233 236 239);
}

.homeburg-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: var(--primary-color);
    width: 30px;
    border-radius: 4px;
    height: 28px;
    padding: 0 6px;
    min-width: 28px;
}

    .homeburg-menu span {
        width: 100%;
        height: 2px;
        background: var(--white);
        border-radius: 15px;
        transition: all .2s;
    }

.middle-menu, .short-menu {
    display: flex;
}

.menu-disable .homeburg-menu, .userformobile {
    display: none;
}

.afterLoginActive .dashboard-admin {
    /* height: 100%;*/
    padding: 10px 0;
    margin-bottom: 2rem;
}

.afterLoginActive .footer-panel p {
    text-align: center;
}

.afterLoginActive .footer-login {
    background: var(--white);
    margin: 0;
    padding: 10px;
    border-top: 1px solid var(--gre300);
    position: sticky;
    bottom: 0;
}

.afterLoginActive .login-area {
    background-image: none;
    position: relative;
}

    .afterLoginActive .login-area:before {
        content: '';
        /*background-image: url(/img/diamonds.png);*/
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: -1;
        opacity: 0.04;
    }

/*jqgrid table*/
.ui-pager-control td, .jqgrid-table td, .normal-table td {
    font-size: 14px;
    padding: 14px;
}

.jqgrid-table th {
    padding: 3px;
    font-size: 12px;
    font-weight: 500 !important;
}

.ui-widget.ui-widget-content {
    overflow: hidden;
    border-radius: var(--radius8);
}

.no-background-image:before {
    background-image: none !important;
}

.jqgrid-table td .theme-btn {
    font-size: 14px;
    padding: 10px;
}

.jqgrid-table td, .normal-table td {
    padding: 6px 16px;
    border-bottom: 1px solid var(--gre300);
    text-overflow: ellipsis;
}

.jqgrid-table tr:last-child td,
.normal-table tr:last-child td {
    border-bottom: 0;
}

.ui-widget-content a.table-links,
.table-links {
    color: var(--primary-color);
}

select.ui-widget-content.ui-pg-selbox {
    min-width: 60px;
    position: relative;
    background-image: url('../img/arrow-down.png');
    appearance: none;
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center right 8px;
    margin-left: 9px;
}

.ui-widget-content.ui-pg-input {
    width: 50px;
    margin: 0 3px;
}

.ui-widget-content.ui-pg-input {
    font-weight: 600;
    text-align: center;
}

.jqgrid-table td.ui-jqgrid-pg-right {
    padding: 0;
    position: absolute;
    right: 0;
}

select.ui-widget-content.ui-pg-selbox,
.ui-widget-content.ui-pg-input {
    font-size: 14px;
    padding: 5px 8px;
}

td:has(.ui-widget-content.ui-pg-input) {
    padding: 0 5px;
}

.ui-pg-table tr {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.jqgrid-table .ui-widget.ui-widget-content, .ui-jqgrid > .ui-jqgrid-view, .ui-jqgrid > .ui-jqgrid-pager, .ui-jqgrid > .ui-jqgrid-view > .ui-jqgrid-hdiv, .ui-jqgrid .ui-jqgrid-bdiv,
.ui-jqgrid > .ui-jqgrid-view > .ui-jqgrid-sdiv {
    width: 100% !important;
}

.ui-jqgrid > .ui-jqgrid-pager {
    overflow: auto;
    white-space: nowrap;
    padding: 10px 20px;
}

#jqGridPager_left, #first_jqGridPager, #prev_jqGridPager, .ui-pg-button {
    padding: 3px !important;
    border: 1px solid var(--primary-color);
    width: 30px;
    height: 30px;
    border-radius: var(--radius6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color) !important;
    max-height: 30px;
    max-width: 30px;
    cursor: pointer;
    min-width: 30px;
}

.ui-jqgrid .ui-pg-button span {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: 2px center;
    filter: invert(1);
}

#first_jqGridPager span,
#last_jqGridPager span {
    background-image: url(/img/speed-prev.png);
}

#prev_jqGridPager span,
#next_jqGridPager span {
    background-image: url(/img/left.png);
}

#last_jqGridPager span,
#next_jqGridPager span {
    transform: rotate(180deg);
}

#jqGridPager_center td:nth-child(3), #jqGridPager_center td:nth-child(5) {
    display: none;
}

td:has(select.ui-widget-content.ui-pg-selbox) {
    padding: 0;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    color: var(--black);
}

td#jqGridPager_left {
    margin-right: 150px;
    opacity: 0;
}

.ui-jqgrid > .loading {
    position: absolute;
    top: 40%;
    left: 45%;
    z-index: 101;
    display: none;
    width: 80px;
    height: 80px;
    object-fit: contain;
    background-position: center !important;
    background-repeat: no-repeat !important;
    font-size: 0;
    background-color: transparent !important;
    background-size: 70px !important;
    animation: loaderzoomout ease-in-out 1s infinite;
}

@keyframes loaderzoomout {
    0% {
        transform: scale(.8);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(.8);
    }
}

.jqgrid-table .ui-jqgrid-bdiv {
    height: calc(100vh - 21rem) !important;
    min-height: 400px !important;
    zoom: .99;
}

.alert {
    font-size: 14px;
}

.normal-table {
    padding: 20px;
}

/*modal css*/
.modal-content {
    border-radius: var(--radius8);
}

button.close {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    transform: translateX(6px);
}

    button.close span {
        font-size: 30px;
        line-height: 0;
    }

.modal-header {
    padding: 20px 25px;
    border: 0;
}

.events-running {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 1fr 1fr;
}

.events-modal {
    flex: 1;
}

.modal-body {
    padding: 20px 25px;
}

.EventsModalOngoing .modal-dialog {
    max-width: 1000px;
}

.events-modal .card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--primary-color);
    color: var(--white);
}

    .events-modal .card-body .theme-btn {
        margin-top: 1rem;
        background: var(--white);
    }

    .events-modal .card-body .card-text {
        font-size: 23px;
        font-weight: 200;
    }

.events-modal .card {
    overflow: hidden;
    border-radius: var(--radius8);
}

.events-modal .card-body span {
    position: absolute;
    right: -7px;
    top: -5px;
    font-size: 5rem;
    opacity: .4;
}

.banner-area-panel {
    margin: 4rem 0;
}

.form-control-group {
    display: flex;
    align-items: flex-end;
    background: var(--white);
    justify-content: flex-end;
    margin-bottom: 10px;
    flex: 1;
}

.btn-img-group {
    display: flex;
    margin: 0;
}

.form-control-group a {
    padding: 0;
}

.form-control-group .form-group {
    margin: 0;
    gap: 10px;
}

.lots-details {
    display: flex;
    background: var(--grey400);
    padding: 14px 25px;
    border-radius: var(--radius8);
    overflow: hidden;
    margin-bottom: 5px;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--gre300);
}

.lots-files a img {
    width: auto;
    height: 23px;
}

#dvTimer {
    font-size: 24px;
    text-align: right;
}

.not-started {
    min-width: 230px;
    display: flex;
    justify-content: flex-end;
}

.lots-commitment {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgb(215, 215, 215);
    padding: 4px 10px;
    border-radius: var(--radius6);
}

.iconbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 12px;
    border-radius: var(--radius6);
    border: 1px solid var(--white);
    font-size: 14px;
    transition: var(--transition4);
    cursor: pointer;
    font-weight: 400;
    text-decoration: none !important;
    background: var(--grey400);
}

.lots-files {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.commitment-details tr td {
    font-size: 16px;
    padding-right: 18px;
}

.commitment-details tr:first-child td {
    font-weight: 600;
}

.afterLoginActive .button, .afterLoginActive .theme-btn {
    padding: 9px 22px;
}

.event-dec {
    font-size: 18px;
}

.events-modal .card-body .card-title {
    font-size: 28px;
    opacity: .5;
}

.lots-btns {
    display: flex;
    gap: 8px;
}

.login-area:has(.event-result-page) {
    height: calc(100vh - 42px);
}

/*media modal design*/
.tabination {
    display: flex;
    gap: 6px;
}

    .tabination a {
        text-decoration: none;
        padding: 7px 25px;
        border-radius: var(--radius6);
        background: var(--grey400);
        font-size: 14px;
    }

        .tabination a.activeTab {
            background: var(--primary-color);
            color: var(--white);
        }

.imagelinks-data img {
    height: 150px;
}

.media-table-data {
    overflow: auto;
    margin: 10px 0;
}

.default-table td, .default-table th {
    border: 1px solid var(--gre300) !important;
    padding: 7px 10px;
    white-space: nowrap;
}

.imagelinks-img {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.backtohome a {
    text-align: left;
    display: block;
    font-size: 14px;
    text-decoration: none;
    padding: 0;
}

.lots-commitment h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
}

.commitment-details {
    min-width: 135px;
    margin-top: 7px;
}

.imagelinks-img video {
    width: 50%;
}

.jqgfirstrow td {
    padding: 0;
}

/*Dashboard css*/
.customer-login {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.top-main-div {
    flex: 1;
    display: flex;
    position: relative;
    overflow: hidden;
    gap: 1rem;
}

.bottom-main-div {
    flex: 1;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.bidding-tender, .final-tender {
    display: flex;
    gap: 1rem;
    flex: 1;
}

.bidding-profile, .tender-ctc {
    flex: 1;
}

.upcoming-tender, .result-tender {
    flex: 1;
}

.tander-panel {
    text-align: left;
    padding-bottom: 3rem;
}

.tander-panel, .bidding-updates {
    position: relative;
    z-index: 1;
    font-size: 40px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.tender-details {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    position: relative;
    color: var(--white);
    overflow: hidden;
    border-radius: var(--radius6);
    font-weight: 600;
    height: 100%;
    flex: 1;
    flex-wrap: wrap;
    gap: 1rem;
    flex-direction: column;
}

    .tender-details:before, .bid-info:before, .ongoing-list:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.639);
        z-index: 1;
    }

.tander-panel {
    text-align: left;
    padding-bottom: 1rem;
}

.end-date-up, .end-date-bid {
    font-size: 20px;
    font-weight: 400;
    color: rgb(165 165 165);
}

.bidding-updates {
    padding-bottom: 3rem;
}

.lots-commitment p {
    display: flex;
    gap: 10px;
    align-items: center;
}

    .lots-commitment p span {
        font-size: 22px;
    }

.tender-details img, .bid-info img, .ongoing_events_block a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bid-info {
    position: relative;
    padding: 1rem 35px;
    height: 100%;
    min-height: 160px;
    border-radius: var(--radius6);
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.bid-final .bid-info {
    padding: 4.3rem 35px;
}

.bid-data, .ongoing-list {
    position: relative;
    z-index: 1;
    text-align: center;
}

    .bid-data h2, .ongoing-list h2 {
        color: var(--white);
        font-size: 26px;
        font-weight: 400;
        z-index: 1;
    }

.tender-ctc-panel .bid-data {
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
}

.ctc-label {
    font-size: 25px;
    color: rgb(173 173 173);
}

.bid-final {
    grid-column: 1 / 3;
}

.bottom-main-div a {
    text-decoration: none;
    padding: 0;
    height: 100%;
}

.ongoing_events_table .table-title {
    font-size: 22px;
}

.ongoing_events_block {
    display: flex;
    gap: 1rem;
    z-index: 1;
    position: relative;
    flex: 1;
    flex-wrap: wrap;
}


.main-block, .after-login {
    height: 100%;
    position: relative;
}

.timer-data span {
    font-weight: 400;
    opacity: .8;
}

.timer-data {
    text-align: right;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.action-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

    .action-head .form-control-group {
        margin: 0;
    }

.pl-0 {
    padding-left: 0 !important;
}

.error-text {
    background: transparent;
    font-size: 14px;
    color: rgb(255 0 0);
    padding-top: 4px;
}

.input-icon {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

    .input-icon .eye-icon {
        font-size: 18px;
        position: absolute;
        right: 14px;
        z-index: 1;
        cursor: pointer;
    }

.nav-link, .nav-link:focus, .nav-link:hover {
    color: var(--primary-color);
}

.iti__selected-country {
    width: 320px;
}

.iti--inline-dropdown .iti__country-list {
    overflow-x: hidden;
}

.residential-group {
    grid-column: 1 / 4;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

div .summary div span {
    font-size: smaller;
}

.summary {
    font-size: 14px;
}

/*world clock*/
.clockcity {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
}

.world-clock {
    display: flex;
    gap: 3px;
}

    .world-clock .clock {
        padding: 4px 8px;
        border-radius: var(--radius4);
        flex: 1;
        position: relative;
        white-space: nowrap;
        overflow: hidden;
    }

    .world-clock .clocktime {
        font-size: 15px;
        font-weight: 600;
        position: relative;
    }

    .world-clock .clock:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(241 221 199);
        z-index: 0;
    }

.flag-img {
    width: 20px;
    object-fit: cover;
    height: 12px;
    backface-visibility: hidden;
    filter: blur(0.01px);
}

.printImg {
    display: inline;
}

.clock-div span, .clocktime {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}


/*Loader css*/
.loader {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
}

    .loader:after {
        content: " ";
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        width: 50px;
        height: 50px;
        margin-left: -25px;
        margin-top: -25px;
        border: 3px solid var(--white);
        border-radius: 50%;
        border-top-color: transparent;
        animation: spin 1s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.heading-panel {
    border: 1px solid var(--grey400);
    padding: 14px;
    margin: 10px 0;
    border-radius: var(--radius4);
    background: var(--white);
    display: flex;
    gap: 2rem;
}

    .heading-panel .form-group label, .heading-panel .form-group select, .heading-panel .form-group input {
        font-size: 16px;
    }

select.form-control {
    position: relative;
    appearance: none;
    background-image: url(../img/arrow-down.png);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
}

.icon-btn, .doc-link {
    background: var(--white);
    padding: 6px 8px;
    border-radius: var(--radius4);
    border: 1px solid rgb(207, 207, 207) !important;
    transition: var(--transition1);
    cursor: pointer;
    display: inline-block;
}

    .icon-btn img {
        width: auto;
        height: 20px;
    }

.dropdown-form {
    width: 380px;
}

.list-of-details {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 0;
}

.bidd-data {
    border-bottom: 1px solid rgb(217, 217, 217);
    padding-bottom: 8px;
}

    .bidd-data:last-child {
        border-bottom: 0;
        padding: 0;
    }

.list-of-details .form-half {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.bidd-data b {
    font-weight: 400;
}

.bidd-data p {
    font-weight: 600;
}

.top-title {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0;
}

.ongoing_events_table .ongoing-list {
    color: var(--white) !important;
    font-size: 30px;
}

    .ongoing_events_table .ongoing-list h2 {
        font-size: inherit;
    }

    .ongoing_events_table .ongoing-list h3 {
        font-size: 20px;
        font-weight: 300;
    }

.flex-div {
    flex: 1;
    min-width: 250px;
}

.ongoing-list {
    overflow: hidden;
    position: relative;
    padding: 0;
    min-height: 300px;
    border-radius: var(--radius6);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-decoration: none;
    min-width: 400px;
}

.no-data {
    padding: 50px 10px;
    text-align: center;
    border: dashed 2px rgb(225, 225, 225);
    background: var(--white);
    border-radius: 5px;
    text-align: center;
    font-size: 20px;
    color: rgb(37, 37, 37);
}

a.doc-link {
    background: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    border-radius: var(--radius6);
    border: 1px solid rgb(207, 207, 207);
    width: 45px;
    height: 43px;
}

.doc-link img {
    width: auto;
    height: 24px;
}

.ongoing-list .event-id {
    font-size: 28px;
    margin: 0;
}

span.company-up-bid {
    line-height: 1.2;
    font-weight: 500;
}

.end-date-bid {
    font-size: 16px;
}

.end-bid {
    font-weight: 200;
    font-size: 26px;
}

.bidd-part {
    display: flex;
    flex-direction: column;
    padding-bottom: 2rem;
}

.ctc-event {
    align-items: center;
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px 15px;
}

.top-heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.to-head {
    flex: 1;
    display: flex;
    align-items: center;
    margin-top: 2px;
}

.lots-commitment b {
    border-right: 1px solid rgb(215, 215, 215);
    padding-right: 15px;
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
}

.left-heading-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-data {
    display: flex;
    align-items: flex-end;
}

    .summary-data .form-group {
        flex: 1;
        margin-bottom: 10px;
    }

.bid-summary {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.lots-box {
    border-radius: 14px;
    border: 1px solid var(--gre300);
    padding: 10px;
    flex: auto;
}

    .lots-box h5 {
        font-size: 20px;
    }

    .lots-box h6 {
        color: rgb(128 128 128);
        font-weight: 400;
        font-size: 12px;
    }

td[aria-describedby="jqGrid_rate"],
td[aria-describedby="jqGrid_amt"],
td[aria-describedby="jqGrid_new_bid_value"],
td[aria-describedby="jqGrid_new_lot_value"],
.uploadLots td[aria-describedby="jqGrid_amt"],
.uploadLots td[aria-describedby="jqGrid_size"],
.uploadLots td[aria-describedby="jqGrid_stockDesc"],
.uploadLots td[aria-describedby="jqGrid_ucr"],
.uploadLots td[aria-describedby="jqGrid_kpCertNo"],
.uploadLots td[aria-describedby="jqGrid_sellerCompayName"],
.uploadLots td[aria-describedby="jqGrid_minesName"],
.uploadLots td[aria-describedby="jqGrid_pcs"],
.uploadLots td[aria-describedby="jqGrid_stockNo"],
.uploadLots td[aria-describedby="jqGrid_cts"],
.uploadLots td[aria-describedby="jqGrid_totalAmt"],
.uploadLots td[aria-describedby="jqGrid_link"],
.uploadLots td[aria-describedby="jqGrid_eventType"] {
    position: relative;
    cursor: pointer;
}

    .uploadLots td[aria-describedby="jqGrid_eventType"] select, .uploadLots td[aria-describedby="jqGrid_sellerCompayName"] select, .uploadLots td[aria-describedby="jqGrid_minesName"] select {
        width: 100%;
        appearance: none;
        height: 100%
    }

    td[aria-describedby="jqGrid_rate"]:before,
    td[aria-describedby="jqGrid_amt"]:before,
    td[aria-describedby="jqGrid_new_bid_value"]:before,
    td[aria-describedby="jqGrid_new_lot_value"]:before,
    .uploadLots td[aria-describedby="jqGrid_amt"]:before,
    .uploadLots td[aria-describedby="jqGrid_size"]:before,
    .uploadLots td[aria-describedby="jqGrid_stockDesc"]:before,
    .uploadLots td[aria-describedby="jqGrid_ucr"]:before,
    .uploadLots td[aria-describedby="jqGrid_kpCertNo"]:before,
    .uploadLots td[aria-describedby="jqGrid_sellerCompayName"]:before,
    .uploadLots td[aria-describedby="jqGrid_minesName"]:before,
    .uploadLots td[aria-describedby="jqGrid_pcs"]:before,
    .uploadLots td[aria-describedby="jqGrid_stockNo"]:before,
    .uploadLots td[aria-describedby="jqGrid_cts"]:before,
    .uploadLots td[aria-describedby="jqGrid_totalAmt"]:before,
    .uploadLots td[aria-describedby="jqGrid_link"]:before,
    .uploadLots td[aria-describedby="jqGrid_eventType"]:before {
        content: '';
        position: absolute;
        border: 1px solid var(--gre300);
        width: calc(100% - 2px);
        height: calc(100% - 4px);
        left: 1px;
        top: 2px;
        border-radius: 4px;
        pointer-events: none;
    }

    td[aria-describedby="jqGrid_rate"] input,
    td[aria-describedby="jqGrid_amt"] input,
    .uploadLots td[aria-describedby="jqGrid_size"] input,
    .uploadLots td[aria-describedby="jqGrid_stockDesc"] input,
    .uploadLots td[aria-describedby="jqGrid_ucr"] input,
    .uploadLots td[aria-describedby="jqGrid_kpCertNo"] input,
    .uploadLots td[aria-describedby="jqGrid_sellerCompayName"] select,
    .uploadLots td[aria-describedby="jqGrid_minesName"] select,
    .uploadLots td[aria-describedby="jqGrid_pcs"] input,
    .uploadLots td[aria-describedby="jqGrid_new_bid_value"] input,
    .uploadLots td[aria-describedby="jqGrid_new_lot_value"] input,
    .uploadLots td[aria-describedby="jqGrid_stockNo"] input,
    .uploadLots td[aria-describedby="jqGrid_cts"] input,
    .uploadLots td[aria-describedby="jqGrid_totalAmt"] input,
    .uploadLots td[aria-describedby="jqGrid_link"] input,
    .uploadLots td[aria-describedby="jqGrid_eventType"] select {
        outline: none;
        border: none;
        background: transparent;
        padding: 0;
        height: 100%
    }

.ui-state-highlight.edit-cell::before {
    border-color: #000;
}

.uploadLots td[aria-describedby="jqGrid_eventType"] select, .uploadLots td[aria-describedby="jqGrid_sellerCompayName"] select, .uploadLots td[aria-describedby="jqGrid_minesName"] select {
    width: 100%;
    appearance: none;
    height: 100%;
    padding: 0 10px;
}

td[aria-describedby="jqGrid_rate"],
td[aria-describedby="jqGrid_amt"],
td[aria-describedby="jqGrid_new_bid_value"],
td[aria-describedby="jqGrid_new_lot_value"],
.uploadLots td[aria-describedby="jqGrid_amt"],
.uploadLots td[aria-describedby="jqGrid_stockNo"],
.uploadLots td[aria-describedby="jqGrid_size"],
.uploadLots td[aria-describedby="jqGrid_stockDesc"],
.uploadLots td[aria-describedby="jqGrid_ucr"],
.uploadLots td[aria-describedby="jqGrid_kpCertNo"],
.uploadLots td[aria-describedby="jqGrid_sellerCompayName"],
.uploadLots td[aria-describedby="jqGrid_minesName"],
.uploadLots td[aria-describedby="jqGrid_pcs"],
.uploadLots td[aria-describedby="jqGrid_cts"],
.uploadLots td[aria-describedby="jqGrid_totalAmt"],
.uploadLots td[aria-describedby="jqGrid_link"],
.uploadLots td[aria-describedby="jqGrid_eventType"] {
    padding: 4px 10px !important;
}

.ui-jqgrid .ui-jqgrid-bdiv .jqgroup .tree-wrap {
    transform: translateX(17px) translateY(2px);
    margin-right: 10px;
}

.ui-jqgrid .ui-jqgrid-bdiv .jqgroup .custom-tree-wrap {
    transform: translateX(14px) translateY(10px);
    margin-right: 10px;
}

.export-icon {
    margin-left: 5px;
}

.summary-data, .lots-files, .action-head, .form-control-group {
    gap: 5px;
}

.middle-menu a {
    padding: 16px 10px;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    position: relative;
    display: flex;
    justify-content: center;
}

.signin-btns .addterms {
    display: flex;
    min-width: auto;
}

.middle-menu a:before {
    content: '';
    position: absolute;
    width: 0px;
    height: 3px;
    bottom: 11px;
    background-color: var(--primary-color);
    transition: all ease-in-out .2s;
    border-radius: 50px;
}

.middle-menu a:before {
    content: '';
    position: absolute;
    width: 0px;
    height: 3px;
    bottom: 11px;
    background-color: var(--primary-color);
    transition: all ease-in-out .2s;
    border-radius: 50px;
}

.middle-menu a:hover:before,
.middle-menu a.active:before {
    width: calc(100% - 40%);
}

.middle-menu a.active {
    font-weight: 600;
}

    .middle-menu a:hover:before,
    .middle-menu a.active:before {
        width: calc(100% - 40%);
    }

.middle-menu a.active {
    font-weight: 600;
}

.sellerlots td[aria-describedby="jqGrid_rate"]:before, .sellerlots td[aria-describedby="jqGrid_amt"]:before {
    border: none;
}

.form-group.textAreaHtmlEdit {
    grid-column: 1 / 4;
}

.signup-forms.legal-document-form {
    grid-template-columns: 1fr 1fr;
}

/*inner page header*/
.main-menu ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .main-menu ul li {
        width: 100%;
        position: relative;
        background: var(--grey401);
        border-radius: var(--radius4);
    }

.main-menu:has(li) {
    border: 1px solid var(--grey400);
    padding: 10px;
    margin: 10px 0;
    border-radius: var(--radius4);
    width: 100%;
    background: var(--white);
}

.main-menu ul li a {
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: var(--radius4);
    color: inherit;
    text-transform: capitalize;
    position: relative;
    gap: 8px;
    text-transform: uppercase;
    justify-content: flex-start;
    transition: none;
}

.main-menu ul li:hover,
.main-menu ul li.active, .dropdown-menu-main li:has(.submenu-menu li.active) {
    color: var(--white);
    background: var(--primary-color);
}

.main-menu .submenu-menu {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    flex-direction: column;
    z-index: 2;
    padding: 10px;
    border-radius: var(--radius4);
    background: var(--white);
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    gap: 5px;
    transform: translateY(30px);
    transition: var(--transition4);
    opacity: 0;
    visibility: hidden;
}

.menu-arrow {
    position: absolute;
    right: 10px;
}

.menu-icon {
    height: 18px;
    margin-top: -2px;
}

.main-menu ul li:hover a .menu-icon path,
.main-menu ul li.active a .menu-icon path {
    stroke: var(--white);
}

.main-menu ul li:hover a .menu-arrow path,
.main-menu ul li.active a .menu-arrow path {
    fill: var(--white);
}

.menu-icon path {
    stroke: rgb(102, 102, 102);
}

.lievents .menu-icon path {
    stroke-width: 2px;
}

.main-menu .submenu-menu a {
    background: transparent;
    padding: 8px 15px;
}

.main-menu li:hover .submenu-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
}

.main-menu ul li:hover a, .main-menu ul.submenu-menu li:hover a,
.main-menu ul li.active a, .main-menu ul.submenu-menu li.active a {
    color: var(--white);
}

.main-menu ul.submenu-menu li a {
    color: rgb(92 92 92);
}

.main-menu ul li:hover a span {
    color: var(--white);
}

.main-menu ul li:hover a {
    text-decoration: none;
    color: var(--white) !important;
}

.main-menu ul li .submenu-menu a {
    color: var(--black) !important;
}

.main-menu ul li .submenu-menu li:hover a {
    color: var(--white) !important;
}

.main-menu ul li a:before {
    display: none;
}

.iconsize {
    width: 18px;
    height: 18px;
}

.arrowsize {
    height: 12px;
    width: 7px;
}

.main-menu ul li:hover a img {
    filter: invert(1%) brightness(4) saturate(1%);
}

/*footer css*/
.footer-main-inner {
    margin-top: 2rem;
}

.footer-top {
    background: rgb(245, 245, 245);
    padding: 10px 0;
    position: relative;
}

    .footer-top ul {
        display: flex;
    }

        .footer-top ul li.address-footer {
            justify-content: flex-start;
            border: none;
        }

        .footer-top ul li {
            flex: 1;
            position: relative;
            display: flex;
            align-items: center;
            gap: 14px;
            justify-content: center;
            border-left: 1px solid rgb(203, 203, 203);
        }

            .footer-top ul li.address-footer a {
                align-items: flex-start;
            }

            .footer-top ul li.address-footer a {
                display: flex;
                flex-direction: column;
                height: 100%;
            }

            .footer-top ul li a {
                display: flex;
                column-gap: 14px;
                font-size: 14px;
                align-items: center;
                text-decoration: none;
                padding: 0;
            }

            .footer-top ul li.address-footer a span {
                font-weight: 700;
                font-size: 20px;
            }

            .footer-top ul li.address-footer a .TabText {
                font-weight: 600;
                font-size: 14px;
            }

            .footer-top ul li a svg {
                width: 16px;
                height: 16px;
                opacity: .8;
            }

.copyright-area {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 12px;
    color: rgb(98 98 98);
}

    .copyright-area a {
        color: var(--primary-color);
        text-decoration: underline;
        white-space: nowrap;
        display: inline;
        padding: 0;
    }

.container-inner {
    padding: 0 1rem;
    margin: auto;
    max-width: 1600px;
    width: 100%;
}

/*tinymce css */
.tox-promotion, .tox-statusbar__branding {
    display: none;
}

.remove-Display-Block {
    display: contents !important
}

.menu-login.active .middle-menu {
    transform: none;
}

tr td[style*="pointer-events: none"]:before {
    display: none;
}

.winningBackGroung {
    background-color: rgb(223, 240, 216) !important;
}

.highlight-row-red {
    /*background-color: rgb(255 235 238) !important;*/
    background-color: rgb(255 155 155) !important;
}

.auction-lots-box {
    border-radius: 14px;
    border: 1px solid var(--grey400);
    padding: 10px;
}

    .auction-lots-box h6 {
        color: rgb(128, 128, 128);
        font-weight: 400;
        font-size: 12px;
    }

}

.btn-space-master {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.signup-gap {
    gap: 0.5rem !important;
}

.signup-form-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr !important;
}

.signup-form-grid2 {
    grid-template-columns: 1fr 1fr !important;
}

.PopupMenu {
    display: none;
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    background: var(--white);
    border-radius: var(--radius4);
    text-align: left;
    border: none;
    overflow: hidden;
    padding: 0;
    position: absolute;
    color: rgb(22, 57, 121);
    visibility: visible;
    z-index: 100;
    right: 0;
}

.popup-modal {
    padding: 5px 10px;
}

.isInvite {
    right: 150px;
    top: 185px;
}

.isLogin {
    right: 90px;
    top: 185px;
}

.isAttend {
    right: 0px;
    top: 185px;
}

.user-list {
    display: flex;
    align-items: center;
    gap: 12px;
}

.commitmentLots {
    float: right;
    color: var(--success);
}

#btnSubmitBids {
    background: var(--success);
    white-space: nowrap;
}

.underline {
    text-decoration: underline;
}

.afterLoginActive .login-area:has(.upload-paper) .dashboard-admin {
    height: 100%;
}

.imgstyle {
    width: 25px;
}

.front-search-panel1 {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    justify-content: space-between;
}

.front-search-data1 {
    margin-bottom: 10px;
    border: 1px solid #ebebeb;
    padding: 10px 15px;
    border-radius: var(--radius4);
    background-color: var(--white);
    width: 100%;
}

.front-search-top1 {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
}

.front-search-panel1 .form-group {
    margin: 0;
    width: 100%;
}

.blank-label {
    height: 22px;
    display: block;
}

.signin-btns1 {
    margin-left: 15px;
}

.grid-section-header1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
    gap: 5px;
}

.past-events-table {
    display: flex;
    gap: 5px;
    align-items: center;
    width: 100%;
    max-width: 420px;
}

.inline-dropdown1 {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
}

    .inline-dropdown1 .theme-label1 {
        white-space: nowrap;
        margin: 0;
    }

.dashboard-admin:has(.home-display) {
    flex: 1;
}

.uploadLots .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus {
    background: white;
}

.modeldialog-width {
    max-width: 800px;
}

.model-body-scroll {
    overflow: auto !important;
    height: calc(100vh - 15rem) !important;
}

.pdf-font {
    font-size: 85px !important;
}

.pdf-font-link {
    width: 100% !important;
    display: flex;
    height: auto;
    justify-content: center;
    align-items: center;
}

.GvDelete {
    display: flex;
    position: absolute;
    z-index: 1;
    background: #fff;
    align-items: center;
    justify-content: center;
    padding: 3px;
    right: 0;
    text-decoration: none;
    border-radius: 5px;
    color: rgb(255 0 0);
}

td.ui-state-highlight.edit-cell:has(select) {
    padding: 0 !important;
}


td.ui-state-highlight.edit-cell select {
    padding: 4px 10px;
    /*padding: 10px 16px;*/
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-weight: 400;
    line-height: 1.5;
    color: rgb(33 37 41);
    background-color: var(--white);
    background-image: url('../img/downarrow.svg');
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


.max-width-select {
    max-width: 192px;
}

.max-width-input {
    max-width: 320px;
}

.pipe-transform {
    margin: 0px;
    font-size: 24px !important;
    font-weight: 500;
    margin: 0 5px
}

.media-scroll {
    overflow: auto !important;
    height: calc(74vh - 15rem) !important;
}

.jqgrid_mywin-table .ui-jqgrid-bdiv {
    height: 100% !important;
}

.jqgrid_mywin-table .ui-jqgrid > .ui-jqgrid-view {
    height: 100% !important;
}

.accordian-design .ui-widget-content .ui-icon {
    width: 20px;
    height: 20px;
    background-position: center;
    background-size: 100%;
    position: relative;
    cursor: pointer;
}

.accordian-design td:has(.ui-icon) {
    overflow: visible !important;
}

.accordian-design .ui-widget-content .ui-icon.ui-icon-plus {
    background-image: url(/img/plus.png);
}

.accordian-design .ui-widget-content .ui-icon.ui-icon-minus {
    background-image: url(/img/minus.png);
}

.accordian-design .jqgrid-table .ui-jqgrid-bdiv,
.accordian-design .ui-jqgrid > .ui-jqgrid-view {
    min-height: auto !important;
    height: auto !important;
}

.accordian-design .ui-jqgrid .ui-widget-content.subgrid-data {
    padding: 15px 0;
    width: 100%;
    right: 10px;
    position: relative;
}

.flex-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    flex-direction: column;
}

.td-middle td {
    vertical-align: middle;
}

.flex-1 {
    flex: 1;
}

.footrow td[aria-describedby=jqGrid_winningBid] {
    text-align: left !important;
}

.model-tenderbid-width {
    max-width: 1200px !important;
}

.btn-oragne {
    background-color: rgb(255 137 91) !important;
    color: var(--white) !important;
}

.tooltip {
    pointer-events: none;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.theme-pointer-none {
    pointer-events: none;
    background-color: rgb(233 236 239);
}

/* Target jqGrid scroll container */
.ui-jqgrid-bdiv::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.ui-jqgrid-bdiv::-webkit-scrollbar-thumb {
    background-color: rgb(136 136 136);
    border-radius: 8px;
    border: 1px solid var( --grey401);
}

@keyframes bounceInOut {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    20% {
        opacity: 1;
        transform: scale(1.05);
    }

    40% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1);
    }
    70% {
        opacity: 1;
        transform: scale(1);
    }

    80% {
        transform: scale(0.9);
    }

    90% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

.bounce-in-out {
    display: inline-block;
    animation: bounceInOut 3s ease infinite;
}

.theme-text-highlight {
    color: var(--primary-color) !important;
}

.validation-text {
    white-space: pre-line;
}
