:root {
    --radius6: 6px;
}

a, select, button, .button {
    cursor: pointer;
    font-family: inherit;
}

a {
    color: var(--black800);
}

    a:hover {
        color: inherit;
    }

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.secondary-btn,
.download-upload-btn .theme-button {
    background-color: var(--grey800);
}

/*header css start*/
.login-area .header {
    border: none;
}

.header {
    border-bottom: 1px solid #ebebeb;
}

.header-panel {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
    padding: 10px 0;
}

.login-container {
    padding: 0 2rem;
    margin: auto;
    max-width: 1100px;
    width: 100%;
}


.menu-login {
    display: flex;
    background: #fff;
    border-radius: var(--radius4);
    padding: 10px 20px;
}

.login-area .logo {
    /* padding: 10px 20px; */
}

.menu-login a {
    display: block;
    text-decoration: none;
    padding: 16px 14px;
    font-size: 16px;
    font-weight: 500;
    transition: none;
}

    .menu-login a:hover {
        color: var(--primary-color);
    }

.banner-panel {
    display: flex;
    justify-content: space-around;
    gap: 6rem;
    align-items: center;
    margin: 4rem 0;
}

.login-vector img {
    display: block;
    width: 100%;
    max-width: 90%;
}

.login-vector {
    width: 55%;
}

.form-data {
    text-align: center;
}

.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);
        text-transform: uppercase;
    }

.login-form form, .form-data {
    height: 100%;
}

.form-data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    border-radius: var(--radius4);
    box-shadow: 0px 0px 20px 0px #00000014;
    max-width: 85%;
    margin-left: auto;
}
/*header css start*/
.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-form {
    border-radius: var(--radius8);
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    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;
}

.form-control,
.textbox,
.DropDownList,
.textboxgrid {
    padding: 10px 16px;
    font-size: 14px;
    background-color: #fff;
    color: #7a7a7a;
    font-weight: 400;
    border: 1px solid #ebebeb;
    border-radius: var(--radius6);
    width: 100%;
}

.table-panel .DropDownList {
    padding: 10px 15px;
}

.DropDownList {
    position: relative;
    appearance: none;
    background-image: url(../images/arrows/arrow-down.png);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
}

.form-group {
    margin-bottom: 10px;
    position: relative;
}

.form-control:focus,
.textbox:focus,
.DropDownList:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px #00000012;
    outline: none;
}

.forgot-password {
    text-align: left;
    font-size: 14px;
    margin-bottom: 15px;
}

.button,
.theme-btn,
.Buttonenable,
.timee20, .modal-table .button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
    border-radius: var(--radius6);
    border: 1px solid #fff;
    font-size: 16px;
    transition: var(--transition4);
    cursor: pointer;
    font-weight: 400;
}

    .button:hover,
    .theme-btn:hover,
    .Buttonenable:hover,
    .btn-icon:hover svg,
    .excel-btns input:hover,
    .chatbox:hover {
        transform: translateY(2px);
    }

.theme-button,
.table-header .theme-btn-color .theme-button,
.theme-btn-color input,
.theme-btn-color button,
.grid-section-header .theme-btn-color input {
    background: var(--primary-color);
    color: #fff;
}

.btn-login input {
    padding: 14px 10px;
}

p {
    margin: 0;
}

.footer-panel {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding-bottom: 4px;
}

    .footer-panel p,
    .customer-area .footer-panel p:last-child a {
        font-size: 14px;
        opacity: .7;
    }

        .footer-panel p:first-child a {
            color: var( --primary-color);
            font-weight: 500;
        }

        .footer-panel p:last-child a {
            color: #fff;
            text-decoration: underline;
            display: block;
        }

.forgot-pass-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

.theme-label {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 4px;
    display: inline-block;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.password-field .eye-show {
    display: none;
}

.password-field svg {
    position: absolute;
    right: 12px;
    width: 36px;
    height: 36px;
    cursor: pointer;
}

.password-field {
    display: flex;
    align-items: center;
}

    .password-field.active .eye-hide {
        display: none;
    }

    .password-field.active .eye-show {
        display: block;
    }

    .password-field input {
        padding-right: 48px;
    }

.legel-notice-pera {
    font-size: 12px;
    line-height: normal;
    color: #6a6a6a;
}

.legel-notice-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.legel-notice-pera p {
    margin: 5px 0;
}

/*admin inner css*/
.container-inner {
    padding: 0 1rem;
    margin: auto;
    max-width: 1600px;
    width: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
}


    .logo-inner a img {
        width: 100%;
        display: block;
    }

.search-group {
    position: relative;
    display: none;
    align-items: center;
    width: 100%;
    max-width: 300px;
}

    .search-group button {
        border: none;
        height: 100%;
        border-radius: 0 8px 8px 0;
        position: absolute;
        right: 0;
        background: var( --primary-color);
        padding: 5px 12px;
    }

    .search-group .form-control {
        padding: 10px 18px;
        padding-right: 50px;
    }

    .search-group button svg {
        width: 16px;
        height: 16px;
    }

.user-details button {
    border: none;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-details .dropdown-menu {
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    background: #fff;
    width: 260px;
    right: 0;
    border-radius: var(--radius4);
    text-align: left;
    border: none;
    overflow: hidden;
    padding: 0;
}

.profile-top {
    display: none;
    padding: 15px 20px 10px;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #0000001f;
}

.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: #000000;
    font-size: 16px;
    text-align: left;
    white-space: nowrap;
}

.profile-data p {
    opacity: 0.7;
    font-size: 13px;
    white-space: nowrap;
    text-align: left;
}

.profile-img-ert {
    min-width: 50px;
    height: 50px;
    width: 50px;
    overflow: hidden;
    border-radius: 100%;
}

.user-details .dropdown-menu .dropdown-item {
    padding: 8px 20px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    outline: none;
}

.evebt-user-data {
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    border-top: 1px solid #ebebeb;
}

    .evebt-user-data span, .evebt-user-data input {
        font-weight: 400 !important;
        line-height: 2;
    }

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: var(--primary-color);
}

.admin-header {
    border-bottom: 1px solid #ebebeb;
    padding: 10px 0;
    position: relative;
    background: #fff;
    z-index: 9999;
}

.dropdown-area {
    padding: 10px 0;
}
/*admin inner css*/

/*inner page header*/
.main-menu ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .main-menu ul li {
        width: 100%;
        position: relative;
        background: var(--grey400);
        border-radius: var(--radius4);
    }

.main-menu {
    border: 1px solid #ebebeb;
    padding: 10px;
    margin: 10px 0;
    border-radius: var(--radius4);
}

    .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;
    }

    .main-menu ul li:hover, .main-menu ul li.active, .dropdown-menu-main li:has(.submenu-menu li.active), .main-menu ul li.menuActive, .main-menu ul.submenu-menu li.menuActive a {
        color: #fff;
        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: #fff;
        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: #fff;
}

.main-menu ul li:hover a .menu-arrow path,
.main-menu ul li.active a .menu-arrow path {
    fill: #fff;
}

.menu-icon path {
    stroke: #666666;
}

.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: #fff;
}

.main-menu ul.submenu-menu li a {
    color: #5c5c5c;
}

.homeburg-menu svg rect {
    fill: #fff;
}

.homeburg-menu {
    background: var(--primary-color);
    border-radius: var(--radius4);
    min-width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    display: none;
}

    .homeburg-menu svg {
        cursor: pointer;
        width: 16px;
        height: 16px;
    }

.cross-svg,
.three-dot {
    display: none;
    z-index: 9999;
}

.homeburg-menu.active .three-dot {
    display: none;
}

.homeburg-menu.active .cross-svg {
    display: block;
}

/*event css*/
.event-selected {
    position: relative;
    display: none;
}

.event-selected-panel:before {
    content: '';
    background-image: url('../images/vectors/diamond-shape-group.png');
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    background-size: contain;
    z-index: -1;
}

.event-selected-panel {
    position: relative;
    background: var(--primary-color);
    padding: 30px 40px;
    border-radius: var(--radius4);
    color: #fff;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    z-index: 1;
}

.event-selected-panel-right .theme-btn {
    background: #4f000387;
    border: none;
    color: #fff;
}

.table-panel {
    border: 1px solid #ebebeb;
    padding: 10px;
    margin: 0;
    border-radius: var(--radius4);
    background: #FAFAFA;
}

.table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.table-title {
    font-weight: 600;
    font-size: 18px;
}

.main-title {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.table-record span,
.total-table {
    font-size: 14px;
    opacity: .8;
    font-weight: 400;
}

.table-grid-inner th {
    padding: 10px 10px;
    line-height: normal;
}

.table-grid-inner td, .table-grid-inner td a {
    font-size: 14px;
    font-weight: 400;
    padding: 2px 10px;
    line-height: normal;
    color: #333;
}

.table-grid-inner th a, .table-grid-inner th,
.color-white td {
    padding: 5px;
    font-size: 12px;
    font-weight: 500 !important;
}

.table-grid-inner th, .table-grid-inner .heading-data td {
    background: #878787;
    border: 1px solid #a1a1a1;
}

    .table-grid-inner th, .table-grid-inner th a,
    .color-white td, .heading-data td {
        color: #fff;
    }

.table-grid-inner th {
    text-align: center;
}

.table-btn,
.GvInvPpl,
.Gvtenderresultm,
.GvEdit,
.GvDelete,
.Gvtenderresult,
.gvwinner,
.gvsecondbidder,
.GridSave,
.GvUploadFile,
.GvDetailFile,
.GvCertiUpload,
.GvcertiUploadTick,
.GvDetail,
.GvCancelBid,
.GvTermsCond,
.Gvtenderresult,
.GvViewertenderresult,
.Gvcontactbidder,
.GvViewStock,
.GvInvBidder,
.GvInvPpl,
.GvViewerInvPpl,
.GvliveAuction,
.GvViewers,
.GvSelect,
.GvUploaadDoc,
.GvViewDoc,
.clsExecel,
.table-btn-link,
.excel-btn-table,
.emailbtn,
.eventInvoice,
.quickbids {
    padding: 0 !important;
    width: 25px;
    margin: 0 auto !important;
    height: 25px !important;
    background-size: 14px 14px;
    background-color: #00000014;
    border-radius: var(--radius4);
    background-position: center !important;
    display: block;
    background-repeat: no-repeat;
}

.clsExecel {
    background-image: url('../../Images/ms-excel.png' );
    background-position: 5px 2px;
    background-repeat: no-repeat;
    display: block;
    height: 12px;
    margin-top: 1px;
    padding: 0 0 10px 25px;
}

.excel-btn-table {
    background-image: url('../../Images/report-excel.png' );
}

.emailbtn {
    background-image: url('../../Images/Email.png' );
}

.quickbids {
    background-image: url('../../Images/more-1.png' );
}

.GenrateInvoice {
    background-image: url('../../Images/generateinvoice.png' );
}

.ViewEye {
    background-image: url('../../Images/MenuIcon/eye.png' );
}

.EventInvoice {
    background-image: url('../../Images/invoice.png' );
}

.CencelBtn {
    background-image: url('../../Images/cancelBtn.jpeg' );
}


.event-selected-panel-left h3 {
    color: #fff;
}

.wrapper-inner {
    position: relative;
    z-index: 1;
}

    .wrapper-inner:before, .wrapper-inner:after {
        background-image: url('../images/vectors/diamond-shapes.png');
        content: '';
        position: absolute;
        top: 0;
        height: 100%;
        width: 70px;
        z-index: 0;
        display: none;
    }

    .wrapper-inner:before {
        left: 0;
    }

    .wrapper-inner:after {
        transform: rotateY(180deg);
        right: 0;
    }

/*footer css*/
.footer-top {
    background: #F5F5F5;
    padding: 10px 0;
    position: relative;
}

    .footer-top ul {
        display: flex;
    }

        .footer-top ul li {
            flex: 1;
            position: relative;
            display: flex;
            align-items: center;
            gap: 14px;
            justify-content: center;
            border-left: 1px solid #cbcbcb;
        }

            .footer-top ul li.address-footer a {
                display: flex;
                flex-direction: column;
                height: 100%;
            }

                .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 {
                display: flex;
                column-gap: 14px;
                font-size: 14px;
                align-items: center;
            }

            .footer-top ul li.address-footer a {
                align-items: flex-start;
            }

            .footer-top ul li a svg {
                width: 16px;
                height: 16px;
                opacity: .8;
            }

            .footer-top ul li:last-child:after {
                content: none;
            }

.footer-main-inner {
    margin-top: 2rem;
}

.copyright-area {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 12px;
    color: #626262;
}

    .copyright-area a {
        color: var(--primary-color);
        text-decoration: underline;
        white-space: nowrap;
    }

.footer-top ul li.address-footer {
    justify-content: flex-start;
    border: none;
}

.footer-top ul li:nth-child(5) {
    min-width: 235px;
}

/*manage bidders css*/
.front-search-data {
    margin-bottom: 10px;
    border: 1px solid #ebebeb;
    padding: 10px 15px;
    border-radius: var(--radius4);
    background-color: #fff;
    width: 100%;
}

.white-bg {
    border: 1px solid #ebebeb;
    padding: 10px 15px;
    border-radius: var(--radius4);
    background-color: #fff;
}

.mini-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

/*.front-search-data .theme-label {
    margin-bottom: 5px;
}
*/
.grid-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 5px;
}

.bidders-header-table,
.past-events-table {
    display: flex;
    gap: 5px;
    align-items: center;
}

.import-bidders {
    font-size: 12px;
    font-weight: 500;
    height: 100%;
    width: 100%;
    max-width: 265px;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    gap: 5px;
}

    .import-bidders .fileupload {
        width: 100%;
        margin: 0;
    }

.excel-btns {
    display: flex;
    gap: 5px;
    height: 100%;
}

    .excel-btns input,
    .chatbox {
        background: #ffffff;
        padding: 9px;
        border-radius: var(--radius4);
        width: 42px;
        border: 1px solid #cfcfcf !important;
        transition: var(--transition1);
        cursor: pointer;
    }

.chatbox {
    width: auto;
    display: flex;
    gap: 4px;
    font-weight: 500;
    background: var(--primary-color);
    border: none !important;
    color: #fff;
    font-size: 14px;
    align-items: center;
}

    .chatbox svg {
        width: 18px;
    }

        .chatbox svg path {
            stroke: #fff;
        }

.grid-section-header .button,
.grid-section-header .theme-btn,
.table-header .button,
.table-header .theme-btn {
    /*background: var(--grey800);*/
}

.table-grid-inner th {
    white-space: nowrap;
}

.full-search-data {
    max-width: 100%;
}

.form-area-group {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 15px;
}

.error {
    font-size: 12px;
    color: red;
}

.custom-error {
    font-size: 12px;
    color: red;
    text-align: left;
    display: none;
}

.twise-input {
    display: flex;
    gap: 5px;
}

.auto-set-btn,
.bidders-btn,
.table-top-btn {
    display: flex;
    justify-content: center;
    gap: 4px;
}

    .auto-set-btn .theme-button,
    .bidders-btn .theme-button {
        display: inline-block;
        width: auto;
    }

.text-modal .theme-label {
    margin-bottom: 10px;
    display: block;
}

.text-modal {
    margin-bottom: 15px;
}

    .text-modal .auto-set-btn {
        margin-top: 15px;
    }

.calendar-style {
    position: relative;
    display: flex;
    align-items: center;
}

    .calendar-style .datepicker-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
    }

    .calendar-style svg,
    .hours-formate-panel svg {
        position: absolute;
        right: 15px;
        z-index: 0;
        width: 18px;
        height: 18px;
        cursor: pointer;
    }

    .calendar-style input {
        position: relative;
        z-index: 1;
        background: transparent;
        padding-right: 40px;
    }

.Calendar {
    max-width: 300px;
    width: 100%;
}

.ajax__calendar_days, .ajax__calendar_months, .ajax__calendar_years {
    width: 100% !important;
}

.ajax__calendar_container TABLE {
    width: 100%;
}

.ajax__calendar_container TD {
    text-align: center;
}

.inline-dropdown {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
}

    .inline-dropdown .theme-label {
        white-space: nowrap;
        margin: 0;
    }

.past-events-table {
    width: 100%;
    max-width: 400px;
}

.table-grid-inner {
    overflow-x: auto;
    width: 100%;
}

.Buttonenable-grey,
.grey-btn {
    background: var(--grey800);
    color: #fff;
}

.ongoing-event {
    white-space: nowrap;
    position: relative;
}

.access-table {
    display: flex;
    gap: 5px;
}

input[type=checkbox] {
    position: relative;
    border-radius: 2px;
    background: var(--grey400);
    cursor: pointer;
    line-height: 0;
    margin: auto;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 18px;
    width: 18px;
    -webkit-appearance: none;
    min-width: 18px;
}

    input[type=checkbox]:checked {
        background-color: var(--primary-color);
    }

        input[type=checkbox]:checked:before {
            opacity: 1;
        }

    input[type=checkbox]:before {
        content: '';
        position: absolute;
        right: 50%;
        top: 50%;
        width: 4px;
        height: 10px;
        border: solid #FFF;
        border-width: 0 2px 2px 0;
        margin: -1px -1px 0 -1px;
        transform: rotate(45deg) translate(-50%, -50%);
        z-index: 2;
        opacity: 0;
    }

.display-none {
    display: none;
}

input[type=radio] {
    position: relative;
    background: #b7b7b7;
    cursor: pointer;
    line-height: 0;
    margin: auto;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 10px;
    width: 10px;
    -webkit-appearance: none;
    min-width: 10px;
    border-radius: 100%;
    outline: 1px solid #a7a7a7;
    outline-offset: 2px;
}

    input[type=radio]:checked {
        background-color: var(--primary-color);
        outline: 1px solid var(--primary-color);
    }

        input[type=radio]:checked:before {
            opacity: 1;
        }

.hours-formate-panel span {
    font-size: 12px;
    white-space: nowrap;
}

.hours-formate-panel {
    display: flex;
    align-items: flex-end;
}

.hours-formate-inner {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.hours-formate-panel svg {
    opacity: .4;
}

.theme-radio .radioButton {
    font-size: 14px;
    width: 100%;
}

    .theme-radio .radioButton td,
    .theme-radio .radioButton td span {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }

        .theme-radio .radioButton td input {
            margin: 0;
        }

.label-margin .theme-label {
    display: inline-block;
    margin-bottom: .5rem;
}

.define-event-panel {
    grid-column: 1/4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bidders-screen {
    align-items: center;
    justify-content: center;
    background: #ededed;
    padding: 20px 40px;
    border-radius: var(--radius4);
    text-align: center;
    width: 100%;
    min-height: 100px;
    display: flex;
}

.closed-msg {
    text-align: right;
}

.timee20 {
    background: #cbcbcb;
}

.radio-flex td {
    display: flex;
    align-items: center;
    gap: 10px;
}

.radio-flex tr {
    display: flex;
    width: 100%;
    gap: 15px;
    margin-bottom: 15px;
}

.radio-flex table {
    width: 100%;
}

.timer-area .theme-label {
    font-weight: 500;
    display: block;
    font-size: 16px;
}

.timer-area .form-group {
    font-size: 12px;
}

.table-panel td .DropDownList, .table-panel td select, .table-panel td input,
.round1-table td input {
    padding: 6px 6px;
    border: 1px solid #bdbdbd;
    font-size: 12px;
}

.two-record {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.span-label span {
    display: inline-block;
}

.span-label-two .theme-label {
    display: inline-block;
}

.customer-area {
    height: 100vh;
    min-height: 500px;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.customer-login {
    display: flex;
    gap: 1rem;
}

.bid-info img {
}

.tender-area-panel {
    height: 100%;
    margin-bottom: 20px;
}

.tender-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem;
    position: relative;
    color: #fff;
    overflow: hidden;
    border-radius: var(--radius4);
    font-weight: 600;
    flex-direction: column;
    height: 100%;
}

    .tender-details img, .bid-info img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.bid-info img {
}

.tender-details:before, .bid-info:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000a3;
    z-index: 1;
}

.tander-panel, .bidding-updates {
    position: relative;
    z-index: 1;
    font-size: 35px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.tander-panel {
    text-align: left;
    padding-bottom: 3rem;
}

.end-date-up, .end-date-bid {
    font-size: 16px;
    font-weight: 300;
    color: var(--primary-color);
}

.bidding-updates {
    text-align: right;
}

.bid-info {
    position: relative;
    padding: 4rem 35px;
    height: 100%;
    min-height: 115px;
    max-height: 115px;
    border-radius: var(--radius4);
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .bid-info h2 {
        margin: 0;
    }

.bid-data {
    position: relative;
    z-index: 1;
    text-align: center;
}

    .bid-data h2 {
        color: #fff;
        font-size: 20px;
        font-weight: 400;
    }

.bid-info:hover img {
    filter: none;
    transform: scale(1.1);
}

.tender-ctc-panel .bid-data {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
}

.bottom-main-div {
    width: 54%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.top-main-div {
    width: 45%;
}

.bid-final {
    grid-column: 1/3;
}

    .bid-final h2 {
        font-size: 30px;
        font-weight: 600;
    }

.ctc-label {
    background: var(--primary-color);
    padding: 1px 10px;
    font-size: 12px;
    border-radius: var(--radius4);
    margin: 5px 0;
}

.header-right-data {
    height: 100%;
    display: flex;
}

.time-label .time-limit {
    font-size: 12px;
}

.loginmessage span {
    font-size: 14px;
    color: red;
    margin-bottom: 10px;
    display: block;
}

.hover-participated:hover .PopupMenu {
    display: block;
    position: absolute;
    color: #163979;
    visibility: visible;
    z-index: 100;
    right: 0;
    top: 100%;
}

.PopupMenu {
    display: none;
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    background: #fff;
    border-radius: var(--radius4);
    text-align: left;
    border: none;
    overflow: hidden;
    padding: 0;
}

.popup-modal {
    padding: 5px 10px;
}

.user-list {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px;
}

.select-parti {
    position: relative;
}

.download-lots {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.timer-count {
    display: flex;
    gap: 6px;
}

    .timer-count .form-group {
        padding: 8px;
        background: var(--grey400);
        border-radius: var(--radius4);
        font-size: 16px;
        margin: 0;
        color: #5c5c5c;
        font-weight: 600;
    }

.create-biders-btns {
    display: flex;
    justify-content: flex-end;
}

.create-btnprint-refresh .theme-button {
    background: var(--grey800);
}

.create-btnprint-refresh {
    gap: 5px;
    margin: 0;
}

.create-bidders-table,
.company-details-area {
    margin-top: 1rem;
}

.group-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .group-checkbox .radioButton {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
    }

.create-administrator {
    margin-top: 2rem;
}

.group-checkbox br {
    display: none;
}

.file-upload-panel .fileupload {
    margin: 0;
}

.file-upload-panel .image-size {
    font-size: 12px;
    display: block;
    margin-top: 10px;
    color: #959595;
}

.multi-color .checkbox {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
    font-size: 14px;
}

    .multi-color .checkbox input {
        margin: 0;
    }

.theme-radio-btn table tr td, .theme-radio-btn table tr {
    display: flex;
    align-items: center;
    gap: 10px;
}

.report-modal-details {
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    background: #fff;
    border-radius: var(--radius4);
    padding: 20px 30px;
}

.report-popup-label {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
}

.report-modal-panel table tbody {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: auto;
    gap: 5px;
}

    .report-modal-panel table tbody td input {
        margin-right: 5px;
        margin-left: 0;
    }

.report-modal-panel table {
    margin: 10px 0;
}

.report-modal-panel input {
    margin-right: 5px;
}

.report-modal-panel label {
    font-size: 14px;
}

.report-genrate-panel {
    max-width: 1000px;
    width: 100%;
    white-space: nowrap;
}

.report-popup {
    overflow-x: auto;
    max-height: 400px;
}

.column-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

    .column-panel .column-list table {
        width: 100%;
    }

.report-modal-panel
label.report-modal-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.column-panel .column-list table td {
    display: flex;
    align-items: center;
}

.all-check-list {
    border-bottom: 1px solid #cfcfcf;
}

div#filter span {
    display: flex !important;
    align-items: center;
    gap: 7px;
    justify-content: center;
}

    div#filter span input {
        margin: 0;
    }

.table-body {
    position: relative;
}

.theme-modal-all {
    width: 100%;
    margin: auto;
    max-width: 800px;
    border-radius: var(--radius4);
    background: #fff;
    padding: 0;
    overflow: hidden;
}

.theme-inner-body {
    overflow-y: auto;
    min-height: 300px;
    max-height: 500px;
    padding: 20px 30px;
}

.theme-form-modal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
}

.modalBackground {
    background-color: black;
    opacity: 0.7;
    z-index: 1000;
}

.event-selected-panel h2 {
    font-size: 24px;
}

.clscommitment .form-group {
    display: flex;
    gap: 2rem;
    min-width: 200px;
    justify-content: space-between;
    width: 100%;
}

.lbl-ltr-one {
    display: flex;
    justify-content: space-between;
}

.select-mine-lot {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 1rem;
}

.m-rem {
    margin: 10px 0;
}

.tofix-two-first {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .tofix-two-first .form-group {
        display: flex;
        align-items: center;
    }


.total-file {
    gap: 1rem;
}

.download-upload-btn {
    gap: 5px;
}

.tofix-two-second {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.download-upload-btn {
    display: flex;
}

.pnl-other-goinbox {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

    .pnl-other-goinbox .theme-label {
        font-size: 20px;
        font-weight: 600;
        margin: 0;
    }

    .pnl-other-goinbox .theme-button,
    .pnl-other-goinbox .theme-btn {
        background: var(--primary-color);
        color: #fff;
        width: auto;
    }

.same-box-shadow {
    box-shadow: var(--box-shadow);
}

.total-commitment {
    display: flex;
    gap: 10px;
}

.submit-table-tr {
    display: flex;
    gap: 15px;
}

.select-mine-dropdown {
    max-width: 300px;
    width: 100%;
}

.dropdown-total-submit {
    display: flex;
    justify-content: space-between;
}

    .dropdown-total-submit .form-group {
        display: flex;
        gap: 20px;
        justify-content: space-between;
    }

.my-profile-page .body-header input {
    width: auto;
    margin-left: auto;
    background-color: var(--grey800);
}

.forgot-link {
    display: block;
    text-align: center;
    margin-top: 2rem;
    font-size: 14px;
    text-decoration: underline;
}

.my-profile-page,
.change-password-page {
    margin: auto;
    max-width: 800px;
    margin-top: 1rem;
    padding: 0 20px;
}

a.view-details {
    display: inline-block;
    padding: 0 !important;
    text-decoration: underline;
    white-space: nowrap;
}

.legel-page {
    margin-top: 3rem;
}

.change-password-page {
    max-width: 400px;
    padding: 20px;
}

.pnl-other-goinbox:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    background: #0000008a;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.right-admin-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.table-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: #0000008c;
    border-radius: 0;
    border: none;
}

.event-result-modal .table-modal-body {
    max-width: 800px;
}

.table-modal.active {
    display: flex;
}

.table-modal-body {
    background: #fff;
    border-radius: var(--radius4);
    padding: 19px 35px;
    margin: auto;
    position: relative;
    min-width: 400px;
    overflow-y: auto;
    max-height: 500px;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 25px;
    cursor: pointer;
    opacity: .7;
}

.modal-body {
    background: #fff;
    padding: 20px 20px;
    border-radius: var(--radius4);
    max-width: 300px;
    width: 100%;
}

.modal-theme {
    background: #fff;
    padding: 20px 20px;
    border-radius: var(--radius4);
    width: 100%;
    min-width: 40px;
}

.modalCloseImg {
    background: url('../../J_popup/img/basic/x.png' ) no-repeat;
    display: block;
    width: 20px;
    height: 20px;
    display: inline;
    z-index: 3200;
    position: absolute;
    cursor: pointer;
    right: 5px;
    top: 15px;
    background-repeat: no-repeat;
    background-size: 12px;
}

.total-table-border {
    border: 1px solid #d8d8d8;
}

.font-bold {
    font-weight: 600;
}

.lbl-ltr-three {
    position: relative;
}

.lbl-ltr-round {
    display: flex;
    justify-content: space-between;
}

.table-td {
    width: 100% !important;
    font-size: 14px;
    font-weight: 400;
    padding: 10px;
}

.custom-table .form-group {
    margin: 0;
    gap: 0;
}

.table-td:last-child {
    text-align: right;
    border-left: 1px solid #d8d8d8;
    width: 150px !important;
    font-weight: 700;
}

.custom-table td {
    padding: 0;
}

.submitted-bids-panel {
    position: relative;
}

.fileupload {
    font-size: 12px;
}

.mt-2 {
    margin-top: 1rem;
}

.front-search-top {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
}

.front-search-panel {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    justify-content: space-between;
}

.flex-end {
    align-items: flex-end;
}

.error-msg {
    font-size: 14px;
    margin: 10px 0;
    display: block;
    font-weight: 400;
}

.manage-attendance, .manage-attendance-btns {
    display: flex;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

.front-search-panel .form-group {
    margin: 0;
    width: 100%;
}

.GvImageUpload {
    background-image: url('../../Images/noimageCam.png');
    background-repeat: no-repeat;
    display: block;
    background-size: 100%;
    padding: 0 !important;
    width: 20px;
    height: 20px;
    margin: auto;
}

.GvImageUploadTick {
    background-image: url(../../App_Themes/Default/Images/Trans/uploadimg.png);
    background-repeat: no-repeat;
    display: block;
    background-size: 100%;
    padding: 0 !important;
    width: 20px;
    height: 20px;
    margin: auto;
}

.table-right-btns {
    display: flex;
    align-items: center;
}

.define-events .closed-msg {
    position: absolute;
    right: 15px;
}

.manage-attendance-btns {
    justify-content: flex-end;
    gap: 5px;
}

.upcoming-event,
.text-editor-body {
    margin-bottom: 10px;
}

.text-editor {
    margin-bottom: 1rem;
}

.manage-bidders .excel-btns {
    margin: 0 5px;
}

.blank-label {
    height: 22px;
    display: block;
}

.event-result-btns {
    display: flex;
    gap: 4px;
}

.full-radio-btns table {
    width: 100%;
}

    .full-radio-btns table tr {
        gap: 2rem;
    }

.second-data-table table,
.first-data-table table {
    width: 100%;
}

.mbset-1 {
    margin-bottom: 10px;
}

.table-grid-inner table td {
    border: 1px solid #dfdfdf;
}

.profile-under-data .event-data-label {
    font-size: 14px;
    display: block;
}

.bidders-bid-details-data {
    display: flex;
    gap: 10px;
}

.bidders-bid-details .radio-flex {
    display: flex;
    white-space: nowrap;
}

.bidders-bid-details .front-search-top {
    align-items: flex-end;
}

.auto-set-btn table td {
    border: none;
}

.main-loader {
    top: 0 !important;
    left: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #ffffffd1;
    z-index: 999999;
}

.loader-set {
    animation: rotateloader infinite 2s;
    width: 30px;
    transform-origin: center;
}

    .loader-set img {
        width: 100%;
    }

@keyframes rotateloader {
    100% {
        transform: rotate(360deg);
    }
}

.btn-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-icon svg {
        position: absolute;
    }

    .btn-icon .theme-button {
        min-width: 60px;
    }

.flex-radio {
    width: 100%;
}

    .flex-radio tr {
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .flex-radio tr td {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: 14px;
        }

            .flex-radio tr td label {
                margin-top: 1px;
            }

.past-event-body {
    overflow: auto;
    height: 100%;
    max-height: 400px;
}

.past-event-modal {
    background: #fff;
    padding: 20px;
    border-radius: var(--radius4);
}

.export-modal-details {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.logo {
    border-radius: var(--radius4);
}

.customer-area .menu-login a:last-child {
    padding-right: 0;
}

.bidders-bid-details .form-group span {
    white-space: nowrap;
    font-size: 14px;
}

.bidders-bid-details-search {
    width: 100%;
}

.width-auto {
    width: auto !important;
}

.bidders-bid-details {
    gap: 2rem;
}

.total-commitment table {
    margin: 0;
}

.hover-participated svg path {
    stroke: #ffffff;
}

.hover-participated {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    justify-content: center;
}

    .hover-participated svg {
        margin-top: -2px;
    }

.user-list img {
    width: 25px;
    min-width: 25px;
}

.popup-modal .user-list a {
    font-size: 16px;
}

.header-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-height-set {
    min-height: 200px;
}

.back-btn {
    width: 45px;
    height: 43px;
    background-image: url('/assets/images/arrows/left-arrow.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
}

.title-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

iframe {
    width: 100%;
}

.term-condition-modal {
    padding: 10px 20px;
}

.table-verticle-custom {
    display: grid;
    gap: 15px;
    font-size: 18px;
    font-weight: 500;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.commit-data {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .commit-data:first-child {
        border-right: 1px solid #ebebeb;
        padding-right: 15px;
    }

.submit-withdraw {
    display: flex;
    gap: 5px;
}

.commit-data span {
    text-align: center;
    width: auto !important;
    margin: 0;
    font-weight: 400;
}

.mine-lot-caret .auto-set-btn {
    flex-wrap: nowrap;
}

.btn-print-profile {
    position: absolute;
    right: 19px;
}

.my-profile-page {
    position: relative;
}

.select-event-participate .modal-body {
    max-width: 800px;
    text-align: center;
}

.clsOngoingEvent,
.OngoingSelectedEvent {
    width: 100%;
}

    .clsOngoingEvent a,
    .OngoingSelectedEvent a {
        width: 100%;
        display: block;
    }

.legel-notice {
    margin: auto;
    max-width: 450px;
    margin-top: 2rem;
}

.email-table a {
    display: block;
    padding: 0 5px !important;
}

    .email-table a span {
        display: block;
    }

.MainMessage {
    margin: auto;
    max-width: 700px;
}

.manage-bidders-import:has(.sced) {
    display: block;
}

    .manage-bidders-import:has(.sced) .sced {
        margin: 0;
    }

.tenderbidders-details {
    max-width: 700px;
    margin: auto;
    padding: 30px;
    max-height: 400px;
    height: 100%;
}

    .tenderbidders-details iframe {
        height: 100% !important;
    }

.tenderbids-table {
    width: 100%;
    margin-bottom: 10px;
}

    .tenderbids-table td {
        text-align: initial;
    }

.table-bids-table {
    overflow-x: auto;
}

.pnl-login-table {
    margin: auto;
    max-width: 400px;
}

    .pnl-login-table .auto-set-btn {
        margin-top: 10px;
    }

.pasteventsexcel-formate, .pnlExcelFormat {
    margin: auto;
    max-width: 500px;
}

    .pasteventsexcel-formate .form-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 0;
    }

.pasteventsexcel-modal {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 0;
}

.pasteventsexcel-formate .form-group label {
    font-size: 14px;
    font-weight: 500;
}

.upload-file-div input {
    min-width: 180px;
    width: 100%;
}

.upload-file-li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5rem;
}

    .upload-file-li span {
        min-width: 167px;
    }

.upload-file-area .auto-set-btn {
    margin-top: 2rem;
    border-top: 1px solid #cfcfcf;
    padding-top: 1rem;
}

.buymastermodal-body {
    min-width: 600px;
    width: auto;
}

.full-width {
    width: 100%;
}

.clsOngoingEvent {
    margin-bottom: 5px;
    border-radius: var(--radius4);
    -moz-border-radius: var(--radius4);
    -webkit-border-radius: var(--radius4);
    padding: 7px 5px 7px 5px;
    border: solid 0px #000;
    color: #fff;
    height: 100px;
    overflow: scroll;
    text-align: center;
    font-size: 17px;
    vertical-align: bottom;
    margin-right: 2px;
    cursor: pointer;
    width: 100%;
    min-width: 200px;
    background-color: var(--primary-color); /*  -webkit-box-shadow: 1px 3px 5px 3px rgba(50, 50, 50, 0.75);             box-shadow: 1px 3px 5px 3px rgba(50, 50, 50, 0.75);*/
}

    .clsOngoingEvent a {
        color: #fff;
        text-transform: capitalize;
    }

.clsSelectedEvent {
    margin-bottom: 5px;
    border-radius: var(--radius4);
    -moz-border-radius: var(--radius4);
    -webkit-border-radius: var(--radius4);
    padding: 7px 5px 7px 5px;
    border: solid 0px #2b5299;
    color: #fff;
    text-align: center;
    font-size: 17px;
    vertical-align: bottom;
    margin-right: 2px;
    cursor: pointer;
    width: 100%;
    min-width: 200px;
    background-color: #7a7a7a; /*   -webkit-box-shadow: 1px 3px 15px 5px rgba(50, 50, 50, 0.75);             box-shadow: 1px 3px 15px 5px rgba(50, 50, 50, 0.75);*/
}

    .clsSelectedEvent a {
        color: #fff;
    }

.clsDetail {
    font-size: 13px;
    line-height: 20px;
}

.clsDetailBold {
    font-size: 17px;
}

.btn-auto-width .theme-button {
    width: auto;
}

.theme-modal-all .registration-page {
    height: 100vh;
    overflow-y: auto;
    padding: 15px 20px;
    max-height: 500px;
}

.manage-attendance-btns {
    flex: none;
    width: auto;
}

.ongoing-event a {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    padding: 7px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--primary-color);
}

    .ongoing-event a:after {
        background-color: var(--primary-color);
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 3px;
        -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;
    }
}

.ongoing-event a span {
    line-height: 0;
}

.ongoing-event-none {
    display: none;
}

.filtter-with-btns .table-header {
    flex-wrap: nowrap;
    align-items: flex-end;
    margin-bottom: 10px;
}

    .filtter-with-btns .table-header .front-search-top, .filtter-with-btns .front-search-panel {
        gap: 5px;
    }

        .filtter-with-btns .table-header .front-search-top .form-group select {
            padding-right: 35px;
            word-wrap: break-word;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

.form-label {
    margin-bottom: 5px;
}

.lbl-ltr-three {
    display: flex;
}

.filtter-with-btns .table-header .table-top {
    flex: 0.9;
}

.login-notice-page {
    height: calc(100vh - 19.4rem);
}

.round-top-area {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    /*grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));*/
}

.round-top-sector-five .time-slap {
    display: flex;
    justify-content: flex-end;
}

.rt-data {
    display: flex;
    align-items: center;
}

.round-top-sector-four .form-group {
    margin: 0;
}

.round-top-sector-two .commit-data {
    min-width: 150px;
}

.round-top-sector-four .fileupload {
    width: 100%;
    max-width: 190px;
}

.pagination-panel {
    margin: 10px 0 25px;
}

.pagination-list {
    display: flex;
    height: 100%;
    gap: 4px;
}

    .pagination-list a, .pagination-list input {
        border: 1px solid #bdbdbd;
        display: flex;
        font-size: 14px;
        font-weight: 400;
        min-width: 30px;
        height: 30px;
        align-items: center;
        justify-content: center;
    }

.PagerActiveBtn {
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color) !important;
}

.photos-movies-modal {
    max-width: 800px;
    padding: 0;
    overflow: hidden;
    height: 100%;
    margin: 10px;
    max-height: 400px;
}

.upload-items-doc {
    display: flex;
    gap: 1rem;
}

.upload-items-panel-two {
    width: 78%;
    padding: 12px 40px 12px 0;
    overflow-y: auto;
}

.round-top-sector-four {
    justify-content: flex-end;
}

.upload-data-list {
    position: sticky;
    top: 11px;
    height: auto !i;
}

.upload-items-panel-one {
    width: 22%;
    position: sticky;
    padding: 15px;
    min-height: 300px;
    min-width: 150px;
}

.upload-items-panel-two table {
    width: 100%;
}

.upload-items-panel-one:before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    background: #d1d1d1;
    height: 100%;
    z-index: -1;
}

.upload-data-list a h2 {
    font-size: 16px;
    margin: 0;
}

.upload-data-list a {
    border-radius: var(--radius4);
    display: block;
    margin-bottom: 7px;
    background: white;
    padding: 10px 18px;
}

    .upload-data-list a.selected {
        background: var(--primary-color);
        color: #fff;
    }

.upload-items-panel-two .lot-details tr {
    font-size: 14px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.upload-items-panel-two .lot-details tbody {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.img-list-upload {
    margin-top: 20px;
}

    .img-list-upload tbody tr {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2px;
    }

.upload-items-panel-two .lot-details tr td {
    text-align: center;
    width: 100% !important;
    border: 1px solid #e3e3e3;
    padding: 5px;
}

.img-list-upload td {
    padding: 0;
}

.img-list-upload tbody tr img {
    width: 100%;
}

.ongoing-event a img {
    height: 30px;
    filter: invert(1);
    width: auto;
}

.upload-paper .table-dropdnwon {
    min-width: 270px;
}

.table-dropdnwon .form-label {
    margin: 0;
}

.bunch-close-label {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.maximum-time-left {
    margin-right: 4px;
}

.split-pane {
    min-width: auto !important;
    flex: 1;
    overflow-x: auto;
}

.split-pane-component {
    width: 100% !important;
}

.pretty-split-pane-frame {
    display: flex;
    gap: 1rem;
}

.split-panel-menu {
    flex: .2;
    background: var(--grey400);
    border-radius: var(--radius4);
    padding: 10px;
}

.pretty-split-pane-component-inner {
    flex: 1;
}

.dvtable-ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    font-size: 16px;
    gap: 10px;
}

.dvtable-li {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .dvtable-li label {
        font-weight: 600;
    }

.dvwritemessage textarea {
    min-height: 150px;
}

.extra-time-group, .extra-time-panel {
    display: flex;
    align-items: center;
    gap: 5px;
}

    .extra-time-group .theme-button {
        width: auto;
        background: var(--grey800);
    }

.extra-time .textbox {
    max-width: 100px;
}

.tree-view table {
    font-size: 14px;
}

.extend-auction {
    justify-content: flex-end;
    margin: 10px 0;
}

.eventresulttable th:first-child,
.eventresulttable tr td {
    padding: 0;
}

.eventresulttable td div,
.eventresulttable th div {
    margin: auto;
}

.ammount-data {
    font-weight: 600 !important;
    font-size: 16px;
}

.edit-mode-input input {
    width: 100% !important;
}

.edit-mode-input td {
    border: none !important;
    border-right: 1px solid lightgray !important;
}

    .edit-mode-input td:last-child {
        border: none !important;
    }

.chatbox-main {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 99999;
    background: #fff;
    border-radius: 0 10px 0 0;
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    overflow: hidden;
    border: 1px solid #c1c1c1;
    max-width: 320px;
    width: 100%;
}

.chat-box-header {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #dfdfdf;
    font-weight: 600;
}

.chat-box-chat {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    padding: 5px 10px;
}

.dvChatDetails table {
    margin: 4px 0 !important;
    background: #ededed;
    font-size: 12px;
    border-radius: 6px;
}

.dvChatDetails {
    height: 250px;
    overflow-y: auto;
    margin-bottom: 10px;
}

.chat-box-input .theme-button {
}

.chat-box-input {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ChatDetailsNode {
    padding: 5px 10px;
    word-break: break-all;
}

.ChatDetails l,
.chatdelstatus {
    font-size: 12px;
    opacity: .7;
}

.chatusername {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}

.extendtime {
    color: var(--primary-color);
}

.faviconClass {
    content: url(../images/arrows/close.png);
    display: block;
}

.theme-radio .radioButton tr {
    display: flex;
    align-items: center;
    gap: 15px;
}

.high-res-panel {
    position: relative;
}

.high-res-image-link {
    position: absolute;
    right: 0;
    z-index: 1;
    background: #fff;
    border-radius: 0 0 0 5px;
}

.high-res-image {
    position: relative;
    z-index: 0;
}

.uploadimage-old table tr td {
    float: left;
}

.uploadimage-old table {
    width: 100%;
}

.table-panel select {
    padding-right: 34px !important;
}

select:disabled, input:disabled, textarea:disabled {
    filter: opacity(0.5);
    cursor: not-allowed;
}

.table-grid-inner td a:focus {
    outline: none;
}

.radioButton[disabled] {
    opacity: .4;
}

.photos-movies-modal div {
    height: 100%;
}

.lot-overview-modal {
    height: 100%;
    overflow-y: auto;
    max-height: 500px;
    max-width: 700px;
}

.close-image {
    position: absolute;
    right: 20px;
}

.best-bidders a {
    display: block;
    text-align: center;
    color: #007c00 !important;
    border-radius: 50px;
    padding: 0 !important;
    text-decoration: underline;
}

.selling-company {
    width: 100%;
    max-width: 500px;
}

    .selling-company .report-popup {
        height: 100%;
    }

.report-popup table td {
    padding: 10px;
}

.ajax__tab_tab {
    background: #dfdfdf;
    padding: 9px 16px;
    font-size: 14px;
    border-radius: 6px;
    margin-right: 5px;
}

.ajax__tab_active .ajax__tab_tab {
    background: var(--primary-color);
    color: #fff;
}

.add-btn a {
    width: auto;
    padding: 20px;
}

.add-btn {
    display: flex;
    margin: 10px 0;
}

.table-scroll {
    overflow-x: auto;
}

.text-right {
    text-align: right;
}

.registration-style-2 .label-style {
    font-size: 14px;
    margin-bottom: 5px;
    display: inline-block;
}

.mobile-country-block {
    display: flex;
    gap: 5px;
}

.registration-style-2 {
    overflow-y: auto;
    max-height: 500px;
    padding: 20px 30px;
}

.login-form:has(.registration-style-2) {
    padding: 0;
}

.mainbody:has(.registration-style-2) {
    margin: 0;
}

.regis-style2 table {
    width: 100%;
}

.login-area:has(.registration-style-2) {
    justify-content: flex-start;
}

    .login-area:has(.registration-style-2) .banner-area {
        margin-top: 5%;
    }

.GridViewAlternateRow {
    width: 100%;
}

.tableNormal td, .border-none {
    border: none !important;
}

table {
    width: 100%;
}

.padding0 {
    padding: 0;
}

.time-count {
    font-weight: 600;
}

.lblwinning {
    background: green;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    border-radius: var(--radius4);
    padding: 6px 10px;
    display: inline-block;
}

.popup-main {
    box-shadow: var(--box-shadow);
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius8);
    width: 100%;
    position: relative;
}

.error-message {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
}

.popup-main .theme-btn {
    background-color: var(--primary-color);
}

.error-message h3 {
    color: #000;
    font-size: 18px;
    color: #555;
}

.modal-btn {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.popup-main:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000047;
    z-index: -1;
}

.main-menu ul li:hover img,
.main-menu ul li.active img,
.dropdown-menu-main li:has(.submenu-menu li.active) img,
.main-menu ul li.menuActive img{
    filter: invert(1) brightness(5.5);
}
.main-menu ul li.menuActive .arrowsize,
li:has(.submenu-menu.open) a img.arrowsize {
    transform: rotate(90deg);
}

.border-none td, .border-none {
    padding: 0 !important;
    border: none !important;
}

.tableNormal td.tdbidderborder {
    padding: 3px !important;
}

.divtd a {
    text-decoration: underline;
}

.GridViewAlternateRow td.tddetailborder {
    border-left: 0;
    border-top: 0;
    border-bottom: 0;
    border-right: 1px solid #d5d5d5;
}

.table-grid-inner td:has(.GridViewAlternateRow) {
    border: none;
    padding: 4px 0;
}

.GridViewAlternateRow td.tddetailborder:last-child {
    border-right: 0;
}

th:has(.heading-data) {
    padding: 0;
}

.timer-block {
    display: flex;
    align-items: center;
    gap: 9px;
    justify-content: flex-end;
    margin-right: -4px;
}

    .timer-block * {
        font-size: 16px;
        padding: 0;
    }

.user-details {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.title-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    white-space: nowrap;
}

    .title-btn .theme-button {
        width: auto;
        background-size: 24px;
        background-image: url('/Images/plus.png');
        background-repeat: no-repeat;
        background-position: center;
    }

.floatright-btn .theme-button {
    background-image: url('/Images/remove.png');
    background-repeat: no-repeat;
    background-position: center;
}

.form-group.floatright-btn {
    grid-column: 1/4;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

    .form-group.floatright-btn .title-btn {
        justify-content: flex-end;
    }

/*world clock*/
.clockcity {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.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;
    }

    .world-clock .clock:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--primary-color);
        z-index: -1;
        opacity: .2;
    }

.flag-img {
    width: 20px;
    object-fit: cover;
    height: 12px;
    backface-visibility: hidden;
    filter: blur(0.01px);
}

body:has(.flex-body) .wrapper-inner {
    height: calc(100vh - 9rem);
}

.modal-header-title span {
    font-weight: 500;
    font-size: 18px;
}

.modal-header-head {
    margin-bottom: 15px;
}

.modal-table {
    width: 100%;
}

    .modal-table tr td {
        border: 1px solid #cfcfcf;
        padding: 7px 15px;
        font-size: 14px;
    }

.uoload-table-div {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.upload-table-div .button {
    width: auto;
}

.flex-modal {
    width: 100%;
    max-width: 875px;
}

.upload-table-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.modal-table .form-group label {
    margin-bottom: 4px;
    font-weight: 500;
}

.clock-div span, .clocktime {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.summary {
    --bs-gutter-x: unset;
}

.iframe-modal {
    height: 100%;
    top: 0 !important;
}

    .iframe-modal iframe {
        height: 100%;
    }

.email-btns {
    display: flex;
    justify-content: center;
    gap: 5px;
}

    .email-btns .theme-button {
        width: auto;
    }

.two-field {
    display: flex;
    gap: 10px;
}

    .two-field .form-group {
        width: 100%;
    }

.head-title-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: auto !important;
    flex-wrap: nowrap;
    flex-direction: row;
}

    .head-title-left .table-btn{
        margin : 0 !important;
        min-width : 30px !important;
    }
