body {
    font-family: 'Open Sans', sans-serif;
    height: 100vh;
    width: 100%;
    background-color: #f1f1f1;
}

a:hover {
    text-decoration: none;
}

.main-xpress-wrapper {
    background: #fff;
    margin: 20px 20px 20px 0;
}

.main-xpress-wrapper .container-fluid {
    padding: 26px 40px 40px;
}

.bg-color {
    background-color: #fff;
}

.xpress-info-msg {
    display: inline-flex;
    justify-content: space-around;
    background: #592c89;
    align-items: center;
    color: #fff;
    margin-bottom: 10px;
    padding: 8px 8px;
    clear: both;
    font-size: 12px;
    border-radius: 2.8px;
    font-weight: 600;
}

.xpress-error-msg {
    display: inline-flex;
    justify-content: space-around;
    background: #ff5f13;
    align-items: center;
    color: #fff;
    margin-bottom: 10px;
    padding: 8px 8px;
    clear: both;
    font-size: 12px;
    border-radius: 2.8px;
    font-weight: 600;
}

.btn-submit {
    border-radius: 3px;
    padding: 12px 35px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.11;
    text-align: center;
    border: none;
    margin-left: 15px;
    color: #ffffff;
    background-color: #ff5f13;
    text-transform: uppercase;
}
.btn:focus {
    box-shadow: none !important;
}

.btn-submit a:focus {
    color: #fff !important;
}
.btn-submit:hover {
    background-color: #ff5f13;
    color: #ffffff;
    border: none;
}

.comman-heading {
    font-size: 20px;
    font-weight: 600;
    color: #262727;
    margin: 0;
}

.table-top-section > * {
    display: inline-block;
    vertical-align: middle;
}

.table-top-section {
    margin: 20px 0 20px;
    line-height: 2.2;
}

.logo {
    background: #fff;
    position: relative;
    padding: 20px 0px 20px;
}

.logo-img {
    text-align: right;
}

.logo img {
    width: 125px;
}

.form-group {
    margin-bottom: 24px;
}

.form-control:focus {
    background-color: #fff;
    outline: 0;
    box-shadow: none;
}

.form-wrapper label {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
    font-weight: normal;
}

.form-wrapper .form-control {
    border-radius: 3.8px;
    color: #000000;
    height: 50px !important;
    border: 1px solid #bababa;
    font-size: 18px;
    z-index: 0;
}

span.span-color {
    color: #d0021b;
    margin-left: 4px;
}

.table td, .table th {
    border-top: 1px solid #ededed;
}

.table>:not(caption)>*>* {
    padding: 1rem 1rem !important;
}
.data-card .table thead th {
    white-space: nowrap;
    font-size: 14px;
    border-bottom: 1px solid #ff5f13 !important;
    color: #262727;
    font-weight: 600;
}

tbody {
    border-bottom: 1px solid #ededed;
}

.data-card tbody tr {
    font-size: 14px;
    color: #262727;
    font-weight: normal;
}

span.no-of-items {
    opacity: 0.5;
    font-size: 16px;
    color: #262727;
}

.table-borderless tbody + tbody,
.table-borderless td,
.table-borderless th,
.table-borderless thead th {
    border: 0;
}


.checkbox {
    position: relative;
    margin-right: 29px;
    margin-bottom: 12px;
    cursor: pointer;
    user-select: none;
}

.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark.all-select-checkbox {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    border-radius: 1px;
    border: solid 2px #d0d0d0;
    background-color: #ffffff;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    border-radius: 1px;
    border: solid 1px #d0d0d0;
    background-color: #ffffff;
}

.checkbox:hover input ~ .checkmark {
    background-color: #fff;
}

.checkbox input:checked ~ .checkmark {
    border: 1px solid #ff5f13;
    border-radius: 2px;
    background-color: #ff5f13;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox input:checked ~ .checkmark:after {
    display: block;
}

.checkbox .checkmark:after {
    left: 50%;
    top: 5.4px;
    width: 6px;
    height: 10px;
    transform: translate(-50%, -50%) rotate(45deg) !important;
    border: solid white;
    border-width: 0 2px 2px 0;
}

.loader {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto;
}

#loader-1:before,
#loader-1:after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 5px solid transparent;
    border-top-color: #ff3131;
}

#loader-1:before {
    z-index: 100;
    animation: spin 0.6s linear infinite;
}

#loader-1:after {
    border: 5px solid #fff2f2;
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.xpress-loader {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.form-inp-err {
    color: red;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #c4cdd524;
    opacity: 1;
}

.main-xpress-wrapper.hidden-lg {
    display: none;

}


.login-box {
    border-radius: 1px;
    border: solid 1px #ff5f13;
    padding: 25px;
}

.login-header {
    font-size: 30px;
    padding: 24px 0 30px;
    margin: 0 0 18px 0;
    color: #000000;
    line-height: 41px;
    font-weight: 600;
}

.login-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    vertical-align: bottom;
    color: #262727;
}

.login-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: #8e8e8e;
    vertical-align: bottom;
    padding: 5.5px 5.5px 5.5px 9px;
}

.main-form-container {
    padding: 0;
    width: 50%;
    position: relative;
}

.new-user-block {
    border-radius: 1px;
    background-color: #592c8915;
    padding: 42px 53px 80px;
    margin-top: 0;
    width: 46%;
}

.new-user-title {
    color: #262727;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 40px;
}

.new-user-subtitle {
    font-size: 26px;
    font-weight: bold;
    color: #592c89;
    margin: 20px 0 16px;
}

.new-user-caption {
    font-size: 20px;
    color: #8e8e8e;
    margin: 0;
}

.new-user-caption a {
    font-weight: 600;
    color: #ff5f13;
}


.fill-details {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.footer-link {
    padding: 20px;
    text-align: center;
    font-weight: 700;
}

.footer-link a {
    font-weight: 600;
    color: #ff5f13;
}

@media only screen and (max-width: 1024px) {

    .main-xpress-wrapper .container-fluid {
        padding: 0 16px 16px;
    }

}

@media only screen and (max-width: 767px) {
    .main-form-container {
        width: 100%;
    }

    .new-user-block {
        width: 100%;
        margin-top: 20px;
    }

    .form-wrapper .form-control {
        width: 100%;
    }

    .or-block {
        display: none;
    }

    .login-header {
        font-size: 25px;
        padding: 15px 0px 10px;
    }

    .logo img {
        width: 150px;
    }
}

@media only screen and (max-width: 420px) {
    .login-page {
        display: none;
    }

    .btn.btn-link.btn-reset {
        width: 100%;
    }

    .data-card .my-order-table.table thead th:nth-child(3) {
        min-width: 200px;
    }

    .table-top-section > * {
        display: inline-block;
        float: left !important;
        margin: 2px 10px;
        margin-left: 0;
    }


    form.form-wrapper {
        clear: both;
    }

    .table-top-section {
        float: left;
        width: 100%;
    }

    .main-wrapper h1 {
        font-size: 26px;
    }

    .main-wrapper h2 {
        font-size: 20px;
    }

    .gst-wrapper h2 {
        font-size: 16px;
    }

    tbody {
        border-bottom: none;
    }

    .comman-btn-div > .cancel-button {
        display: block !important;
        text-align: center;
    }

    .comman-btn-div > .cancel-button > button {
        display: block;
        text-align: center;
        width: 100%;
    }

    .comman-btn-div {
        padding: 0 16px;
    }

    .login-box {
        padding: 25px 25px;
    }

    .new-user-block {
        padding: 25px 25px;
        margin-top: 0;
    }

    .row-button {
        margin-left: 0;
    }
}


@media only screen and (min-width: 1510px) {
    .new-user-block {
        margin: 0;
        height: 100%;
    }
}


#wpfooter {
    display: none !important;
}

.faq-wrapper .card {
    padding: 0;
    min-width: 100%;
}


.order-buttons-wrapper .custom-select {
    height: 38px !important;
    width: 160px;

}

.order-buttons-wrapper .select-selected {
    font-size: 14px;
}

.order-buttons-wrapper .select-selected:after {
    top: 18px;
}

.order-buttons-wrapper .select-selected.select-arrow-active:after {
    top: 10px;
}

.order-buttons-wrapper .select-items {
    top: 36px;
}

#wpfooter {
    display: none !important;
}

input[type=checkbox]:disabled {
    opacity: 0 !important;
}

div.error p {
    margin: 0 !important;
}

div.error {
    border: none !important;
    background: none !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}
