:root {
    --dl-layout-size-large: 144px;
    --dl-layout-size-small: 48px;
    --dl-layout-space-unit: 16px;
    --dl-color-default-red2: #CC0000FF;
    --dl-layout-size-medium: 96px;
    --dl-layout-size-xlarge: 192px;
    --dl-layout-size-xsmall: 16px;
    --dl-color-default-black: rgba(12, 12, 12, 1);
    --dl-color-default-gray1: rgba(217, 217, 217, 1);
    --dl-color-default-gray2: rgba(217, 217, 217, 1);
    --dl-color-default-gray3: rgba(179, 179, 179, 1);
    --dl-color-default-gray4: rgba(115, 115, 115, 1);
    --dl-color-default-white: rgba(255, 255, 255, 1);
    --dl-color-theme-accent1: #FFFFFF;
    --dl-color-theme-accent2: #F5D1B0;
    --dl-layout-radius-round: 50%;
    --dl-layout-size-xxlarge: 288px;
    --dl-color-theme-primary1: #BF4408;
    --dl-color-theme-primary2: #E65103;
    --dl-layout-size-maxwidth: 1400px;
    --dl-layout-radius-radius2: 2px;
    --dl-layout-radius-radius4: 4px;
    --dl-layout-radius-radius8: 8px;
    --dl-layout-space-halfunit: 8px;
    --dl-layout-space-sixunits: 96px;
    --dl-layout-space-twounits: 32px;
    --dl-color-theme-secondary1: #FFFFFF;
    --dl-color-theme-secondary2: #FBF1EB;
    --dl-layout-space-fiveunits: 80px;
    --dl-layout-space-fourunits: 64px;
    --dl-layout-space-threeunits: 48px;
    --dl-color-theme-neutral-dark: #191818;
    --dl-layout-radius-cardradius: 8px;
    --dl-color-theme-neutral-light: #FBFAF9;
    --dl-layout-radius-imageradius: 8px;
    --dl-layout-radius-inputradius: 24px;
    --dl-layout-radius-buttonradius: 24px;
    --dl-layout-space-oneandhalfunits: 24px;
}

html {
    font-family: Inter;
    font-size: 16px;
}

body {
    margin: 0px;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.15;
    /* color: var(--dl-color-theme-neutral-dark);
    background: var(--dl-color-theme-neutral-light);
    fill: var(--dl-color-theme-neutral-dark);*/
    background-color: var(--dl-color-default-white);
}

.input {
    color: var(--dl-color-theme-neutral-dark);
    cursor: auto;
    padding: 0.5rem 1rem;
    border-color: var(--dl-color-theme-neutral-dark);
    border-width: 1px;
    border-radius: 4px;
    background-color: var(--dl-color-theme-neutral-light);
}

.textarea {
    color: var(--dl-color-theme-neutral-dark);
    cursor: auto;
    padding: 0.5rem;
    border-color: var(--dl-color-theme-neutral-dark);
    border-width: 1px;
    border-radius: 4px;
    background-color: var(--dl-color-theme-neutral-light);
}

.list {
    width: 100%;
    margin: 1em 0px 1em 0px;
    display: block;
    padding: 0px 0px 0px 1.5rem;
    list-style-type: none;
    list-style-position: outside;
}

.list-item {
    display: list-item;
}

.teleport-show {
    display: flex !important;
    transform: none !important;
}

.thq-input {
    color: var(--dl-color-theme-neutral-dark);
    cursor: auto;
    outline: none;
    padding: 0.5rem 1rem;
    align-self: stretch;
    text-align: center;
    border-color: var(--dl-color-theme-neutral-dark);
    border-width: 1px;
    border-radius: var(--dl-layout-radius-inputradius);
    background-color: var(--dl-color-theme-neutral-light);
}

    .thq-input:focus {
        outline: 1px solid var(--dl-color-theme-primary1);
    }

.thq-button-filled {
    gap: var(--dl-layout-space-halfunit);
    fill: var(--dl-color-theme-secondary1);
    color: var(--dl-color-theme-secondary1);
    cursor: pointer;
    display: flex;
    transition: 0.3s;
    align-items: center;
    font-weight: bold;
    padding-top: var(--dl-layout-space-halfunit);
    white-space: nowrap;
    border-color: var(--dl-color-theme-primary1);
    border-width: 1px;
    padding-left: var(--dl-layout-space-oneandhalfunits);
    border-radius: var(--dl-layout-radius-buttonradius);
    padding-right: var(--dl-layout-space-oneandhalfunits);
    padding-bottom: var(--dl-layout-space-halfunit);
    justify-content: center;
    background-color: var(--dl-color-theme-primary1);
}

    .thq-button-filled:hover {
        fill: var(--dl-color-theme-secondary2);
        color: var(--dl-color-theme-secondary2);
        border-color: var(--dl-color-theme-primary2);
        background-color: var(--dl-color-theme-primary2);
    }

.thq-button-outline {
    gap: var(--dl-layout-space-halfunit);
    fill: var(--dl-color-theme-primary1);
    color: var(--dl-color-theme-primary1);
    border: 1px solid;
    cursor: pointer;
    display: flex;
    transition: 0.3s;
    align-items: center;
    font-weight: bold;
    padding-top: var(--dl-layout-space-halfunit);
    white-space: nowrap;
    border-color: var(--dl-color-theme-primary1);
    padding-left: var(--dl-layout-space-oneandhalfunits);
    border-radius: var(--dl-layout-radius-buttonradius);
    padding-right: var(--dl-layout-space-oneandhalfunits);
    padding-bottom: var(--dl-layout-space-halfunit);
    justify-content: center;
}

    .thq-button-outline:hover {
        fill: var(--dl-color-theme-secondary2);
        color: var(--dl-color-theme-secondary2);
        border-color: var(--dl-color-theme-primary2);
        background-color: var(--dl-color-theme-primary2);
    }

.thq-button-flat {
    gap: var(--dl-layout-space-halfunit);
    fill: var(--dl-color-theme-primary1);
    color: var(--dl-color-theme-primary1);
    cursor: pointer;
    display: flex;
    transition: 0.3s;
    align-items: center;
    font-weight: bold;
    padding-top: var(--dl-layout-space-halfunit);
    white-space: nowrap;
    border-color: transparent;
    border-width: 1px;
    padding-left: var(--dl-layout-space-oneandhalfunits);
    border-radius: var(--dl-layout-radius-buttonradius);
    padding-right: var(--dl-layout-space-oneandhalfunits);
    padding-bottom: var(--dl-layout-space-halfunit);
    justify-content: center;
}

    .thq-button-flat:hover {
        fill: var(--dl-color-theme-secondary1);
        color: var(--dl-color-theme-secondary1);
        border-color: var(--dl-color-theme-primary2);
        background-color: var(--dl-color-theme-primary2);
    }

.thq-heading-1 {
    font-size: 48px;
    font-family: STIX Two Text;
    font-weight: 700;
    line-height: 1.5;
}

.thq-heading-2 {
    font-size: 35px;
    font-family: STIX Two Text;
    font-weight: 600;
    line-height: 1.5;
}

.thq-heading-3 {
    font-size: 26px;
    font-family: STIX Two Text;
    font-weight: 600;
    line-height: 1.5;
}

.thq-body-large {
    font-size: 18px;
    font-family: Noto Sans;
    line-height: 1.5;
}

.thq-body-small {
    font-size: 16px;
    font-family: Noto Sans;
    line-height: 1.5;
}

.thq-team-image-round {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.thq-section-padding {
    width: 100%;
    display: flex;
    padding: var(--dl-layout-space-fiveunits);
    position: relative;
    align-items: center;
    flex-direction: column;
}

.thq-section-max-width {
    width: 100%;
    max-width: var(--dl-layout-size-maxwidth);
}

.thq-img-ratio-1-1 {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: var(--dl-layout-radius-imageradius);
}

.thq-img-ratio-16-9 {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    border-radius: var(--dl-layout-radius-imageradius);
}

.thq-img-ratio-4-3 {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    border-radius: var(--dl-layout-radius-imageradius);
}

.thq-img-ratio-4-6 {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/6;
    border-radius: var(--dl-layout-radius-imageradius);
}

.thq-img-round {
    width: 100%;
    border-radius: var(--dl-layout-radius-round);
}

.thq-flex-column {
    gap: var(--dl-layout-space-twounits);
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: center;
    flex-direction: column;
}

.thq-flex-row {
    gap: var(--dl-layout-space-twounits);
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: center;
}

.thq-grid-6 {
    display: grid;
    grid-gap: var(--dl-layout-space-twounits);
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.thq-grid-5 {
    display: grid;
    grid-gap: var(--dl-layout-space-twounits);
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.thq-card {
    gap: var(--dl-layout-space-oneandhalfunits);
    display: flex;
    padding: var(--dl-layout-space-twounits);
    align-items: stretch;
    border-radius: var(--dl-layout-radius-cardradius);
    flex-direction: column;
}

.thq-box-shadow {
    box-shadow: 0px 0px 5px -2px var(--dl-color-theme-neutral-dark);
}

.thq-grid-3 {
    display: grid;
    grid-gap: var(--dl-layout-space-twounits);
    grid-template-columns: 1fr 1fr 1fr;
}

.thq-grid-4 {
    display: grid;
    grid-gap: var(--dl-layout-space-twounits);
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.thq-grid-2 {
    width: 100%;
    display: grid;
    grid-gap: var(--dl-layout-space-twounits);
    grid-template-columns: 1fr 1fr;
}

.thq-checkbox {
    width: var(--dl-layout-size-xsmall);
    height: var(--dl-layout-size-xsmall);
}

.thq-select {
    cursor: pointer;
    appearance: none;
    padding-top: var(--dl-layout-space-halfunit);
    padding-left: var(--dl-layout-space-unit);
    border-radius: var(--dl-layout-radius-inputradius);
    padding-right: var(--dl-layout-space-twounits);
    padding-bottom: var(--dl-layout-space-halfunit);
    background-color: var(--dl-color-theme-neutral-light);
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg width%3D%2220%22 height%3D%2220%22 xmlns%3D%22http%3A//www.w3.org/2000/svg%22 viewBox%3D%220 0 20 20%22 fill%3D%22%23000%22%3E%3Cpath d%3D%22M4.293 7.293a1 1 0 011.414 0L10 11.586l4.293-4.293a1 1 0 111.414 1.414l-5 5a1 1 0 01-1.414 0l-5-5a1 1 0 010-1.414z%22/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 8px center;
}

.thq-divider-horizontal {
    width: 100%;
    height: 1px;
    background-color: var(--dl-color-theme-neutral-dark);
}

.thq-icon-small {
    width: 24px;
    height: 24px;
}

.thq-button-icon {
    fill: var(--dl-color-theme-secondary1);
    padding: 3px;
    transition: 0.3s;
    border-radius: var(--dl-layout-radius-round);
}

    .thq-button-icon:hover {
        fill: var(--dl-color-theme-secondary2);
    }

.thq-icon-medium {
    width: var(--dl-layout-size-small);
    height: var(--dl-layout-size-small);
}

.thq-icon-x-small {
    width: var(--dl-layout-size-xsmall);
    height: var(--dl-layout-size-xsmall);
}

.thq-link {
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    background: linear-gradient(to right, var(--dl-color-theme-primary1) 50%, var(--dl-color-theme-neutral-dark) 50%);
    transition: background-position 300ms ease;
    font-weight: 600;
    background-clip: text;
    background-size: 200% 100%;
    background-position: 100%;
    -webkit-text-fill-color: transparent;
}

    .thq-link:hover {
        background-position: 0 100%;
    }

.thq-grid-auto-300 {
    display: grid;
    grid-gap: var(--dl-layout-space-oneandhalfunits);
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.thq-animated-group-vertical-reverse {
    gap: var(--dl-layout-space-unit);
    width: 100%;
    display: flex;
    animation: scroll-y 20s linear infinite;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-around;
    animation-direction: reverse;
}

.thq-animated-group-horizontal-reverse {
    gap: var(--dl-layout-space-unit);
    display: flex;
    animation: scroll-x 20s linear infinite;
    min-width: 100%;
    align-items: center;
    flex-shrink: 0;
    justify-content: space-around;
    animation-direction: reverse;
}

.thq-animated-group-vertical {
    gap: var(--dl-layout-space-unit);
    width: 100%;
    display: flex;
    animation: scroll-y 20s linear infinite;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-around;
}

.thq-animated-group-horizontal {
    gap: var(--dl-layout-space-unit);
    display: flex;
    animation: scroll-x 20s linear infinite;
    min-width: 100%;
    align-items: center;
    flex-shrink: 0;
    justify-content: space-around;
}

.thq-animated-group-container-vertical {
    gap: var(--dl-layout-space-unit);
    display: flex;
    overflow: hidden;
    flex-direction: column;
}

.thq-animated-group-container-horizontal {
    gap: var(--dl-layout-space-unit);
    display: flex;
    overflow: hidden;
}

.thq-mask-image-vertical {
    mask-image: linear-gradient(to bottom, transparent, black 1%, black 99%, transparent);
}

.thq-mask-image-horizontal {
    mask-image: linear-gradient(to right, transparent, black 1%, black 99%, transparent);
}

.thq-img-scale {
    transition: 0.3s;
}

    .thq-img-scale:hover {
        scale: 1.05;
    }

.thq-animated-card-bg-1 {
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
    border-radius: var(--dl-layout-radius-cardradius);
    background-color: var(--dl-color-theme-accent1);
}

.thq-animated-card-bg-2 {
    transition: transform 0.3s;
    border-radius: var(--dl-layout-radius-cardradius);
    background-color: var(--dl-color-theme-accent2);
}

.thq-button-animated {
    outline: none;
    z-index: 1;
    overflow: hidden;
    position: relative;
    border-width: 2px;
}

.thq-input::placeholder {
    text-align: center;
    vertical-align: middle;
}

.thq-animated-group-container-vertical:hover div {
    animation-play-state: paused;
}

.thq-animated-group-container-horizontal:hover div {
    animation-play-state: paused;
}

.thq-animated-card-bg-2:has([data-animated="true"]:hover) {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(3deg) skew(0deg, 0deg);
}

.thq-animated-card-bg-1:has([data-animated="true"]:hover) {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(-6deg) skew(0deg, 0deg);
}

.thq-button-animated:before {
    top: 0;
    left: -20%;
    color: var(--dl-color-theme-neutral-light);
    width: 200%;
    height: 101%;
    content: "";
    z-index: 1;
    position: absolute;
    transform: scaleX(0);
    transition: transform 0.5s;
    border-radius: var(--dl-layout-radius-buttonradius);
    background-color: var(--dl-color-theme-neutral-dark);
    transform-origin: 0 0;
    transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
}

.thq-button-animated:hover::before {
    color: var(--dl-color-theme-neutral-light);
    z-index: -1;
    transform: scaleX(1);
}

.Content {
    font-size: 16px;
    font-family: Inter;
    font-weight: 400;
    line-height: 1.15;
    text-transform: none;
    text-decoration: none;
}

.Header {
    font-size: 32px;
    font-style: normal;
    font-family: Inter;
    font-weight: 700px;
    font-stretch: normal;
    letter-spacing: -0.02em;
}

.ribbon {
    font-size: 16px;
    font-style: normal;
    font-family: Inter;
    font-weight: 700px;
    font-stretch: normal;
    letter-spacing: 0em;
}

.label {
    font-size: 12px;
    font-style: normal;
    font-family: Inter;
    font-weight: 700;
    font-stretch: normal;
    letter-spacing: 0px;
}

.menu {
    font-size: 14px;
    font-style: normal;
    font-family: Inter;
    font-weight: 400px;
    font-stretch: normal;
    letter-spacing: 0px;
}

.table {
    font-size: 14px;
    font-style: normal;
    font-family: Inter;
    font-weight: 400px;
    font-stretch: normal;
    letter-spacing: 0px;
}

.Body {
    font-size: 14px;
    font-style: normal;
    font-family: Inter;
    font-weight: 400px;
    font-stretch: normal;
    letter-spacing: 0em;
}

.footer2 {
    font-size: 12px;
    font-style: normal;
    font-family: Inter;
    font-weight: 400px;
    font-stretch: normal;
    letter-spacing: -0.02em;
    padding-left: 20px;
}

@media(max-width: 991px) {
    .thq-grid-4 {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media(max-width: 767px) {
    .thq-section-padding {
        padding: var(--dl-layout-space-threeunits);
    }

    .thq-flex-column {
        gap: var(--dl-layout-space-oneandhalfunits);
    }

    .thq-flex-row {
        gap: var(--dl-layout-space-oneandhalfunits);
    }

    .thq-grid-6 {
        grid-gap: var(--dl-layout-space-oneandhalfunits);
        grid-template-columns: 1fr 1fr 1fr;
    }

    .thq-grid-5 {
        grid-gap: var(--dl-layout-space-oneandhalfunits);
        grid-template-columns: 1fr 1fr 1fr;
    }

    .thq-card {
        padding: var(--dl-layout-space-oneandhalfunits);
    }

    .thq-grid-3 {
        grid-gap: var(--dl-layout-space-oneandhalfunits);
        grid-template-columns: 1fr 1fr;
    }

    .thq-grid-4 {
        grid-gap: var(--dl-layout-space-oneandhalfunits);
        flex-direction: row;
        grid-template-columns: 1fr 1fr;
    }

    .thq-grid-2 {
        grid-gap: var(--dl-layout-space-oneandhalfunits);
        grid-template-columns: 1fr;
    }

    .thq-img-scale {
        width: 100%;
    }
}

@media(max-width: 479px) {
    .thq-section-padding {
        padding: var(--dl-layout-space-oneandhalfunits);
    }

    .thq-flex-column {
        gap: var(--dl-layout-space-unit);
    }

    .thq-flex-row {
        gap: var(--dl-layout-space-unit);
    }

    .thq-grid-6 {
        grid-gap: var(--dl-layout-space-unit);
        grid-template-columns: 1fr 1fr;
    }

    .thq-grid-5 {
        grid-gap: var(--dl-layout-space-unit);
        grid-template-columns: 1fr 1fr;
    }

    .thq-grid-3 {
        grid-gap: var(--dl-layout-space-unit);
        align-items: center;
        grid-template-columns: 1fr;
    }

    .thq-grid-4 {
        grid-gap: var(--dl-layout-space-unit);
        align-items: center;
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .thq-grid-2 {
        grid-gap: var(--dl-layout-space-unit);
    }

    .thq-grid-auto-300 {
        grid-template-columns: 1fr;
    }
}

/*Start feeback screen css*/

.container1 {
    width: 100%;
    display: flex;
    overflow: auto;
    min-height: 100vh;
    align-items: center;
    flex-direction: column;
}

.inner-container {
    width: 100%;
    /* height: 860px;*/
    display: flex;
    position: relative;
    align-items: flex-start;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 1);
    height: auto;
}

.main-container {
    top: 0px;
    left: 0px;
    /*width: 1441px;*/
    width: 100%;
    /* height: 860px;*/
    display: flex;
    overflow: hidden;
    position: absolute;
    align-items: flex-start;
    flex-shrink: 0;
    flex-direction: column;
}

.header {
    display: flex;
    overflow: hidden;
    align-self: stretch;
    align-items: flex-start;
    flex-direction: column;
    background-size: cover;
    background-image: url("../Images-New/header-bg.png");
    height: 155px;
}

.header-title {
    gap: 10px;
    display: flex;
    padding: 8px 16px;
    align-self: stretch;
    align-items: flex-start;
    flex-shrink: 0;
}

.header-text {
    color: var(--dl-color-default-white);
    height: auto;
    text-align: left;
    line-height: normal;
}

.top-right-logo {
    gap: 10px;
    width: 160px;
    display: flex;
    align-items: flex-end;
    flex-shrink: 0;
    flex-direction: column;
}

.menu-ribbon {
    gap: 8px;
    display: flex;
    padding: 8px 24px;
    align-self: stretch;
    align-items: flex-start;
    flex-shrink: 0;
    margin-top: 90px;
}

.menu-item-container {
    gap: 10px;
    display: flex;
    padding: 16px;
    align-items: center;
    border-radius: 8px;
    justify-content: center;
}

.feedback-thq-text-elm2 {
    color: var(--dl-color-default-white);
    height: auto;
    font-size: 16px;
    font-style: Semi Bold;
    text-align: left;
    font-family: Inter;
    font-weight: 700;
    line-height: normal;
    font-stretch: normal;
    text-decoration: none;
}

.body-main {
    display: flex;
    padding: 0 0.00006103515625px 0 0;
    /*overflow: hidden;*/
    flex-grow: 1;
    align-self: stretch;
    align-items: flex-start;
}

.body-main-inner {
    gap: 80px;
    display: flex;
    padding: 24px;
    overflow: hidden;
    flex-grow: 1;
    align-self: stretch;
    align-items: flex-start;
    flex-direction: column;
    background-color: var(--dl-color-default-white);
}

.body-container {
    gap: 80px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
}

.heading-title-inner {
    gap: 10px;
    display: flex;
    align-items: center;
}

.heading-title {
    color: var(--dl-color-default-black);
    height: auto;
    font-size: 20px;
    font-style: Medium;
    text-align: left;
    font-family: Inter;
    font-weight: 500;
    line-height: 28px;
    font-stretch: normal;
    text-decoration: none;
}

.menu-item {
    /* color: var(--dl-color-default-black);*/
    color: var(--dl-color-default-white);
    height: auto;
    font-size: 16px;
    font-style: Medium;
    text-align: left;
    font-family: Inter;
    font-weight: 500;
    /*  line-height: 28px;*/
    font-stretch: normal;
    text-decoration: none;
}

.active {
    /*    gap: 10px;
    display: flex
    padding: 14px;
    align-items: center;;*/
    border-color: rgba(255, 255, 255, 1);
    border-style: solid;
    border-width: 2px;
    border-radius: 8px;
    /* justify-content: center;*/
}

.row-container {
    gap: 36px;
    width: 765px;
    display: flex;
    align-items: flex-end;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: flex-end;
}

.row-container-item {
    width: inherit;
    text-align: right;
    position: static;
}

.feedback-text-area {
    height: 138px;
    display: flex;
    align-self: stretch;
    align-items: center;
    flex-shrink: 0;
    border-color: rgba(179, 179, 179, 1);
    border-style: solid;
    border-width: 1px;
    border-radius: 8px;
    flex-direction: column;
    padding: 5px;
}

.btn-default {
    gap: 8px;
    height: 36px;
    display: flex;
    padding: 8px 24px;
    align-items: center;
    flex-shrink: 0;
    border-radius: 8px;
    justify-content: center;
    background-color: var(--dl-color-default-red2);
    border-width: 0px;
    color: var(--dl-color-default-white);
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    font-style: normal;
    font-family: Inter;
    font-weight: 700;
    font-stretch: normal;
    letter-spacing: 0px;
}

.btn-primary {
    gap: 8px;
    height: 40px;
    display: flex;
    padding: 12px 24px;
    align-self: stretch;
    align-items: center;
    flex-shrink: 0;
    border-radius: 8px;
    justify-content: center;
    background-color: var(--dl-color-default-red2);
    border-width: 0px;
    color: var(--dl-color-default-white);
}

.button {
    font-size: 14px;
    font-style: normal;
    font-family: Inter;
    font-weight: 700;
    font-stretch: normal;
    letter-spacing: 0px;
    display: inline;
}

.footer {
    position: absolute;
    width: -webkit-fill-available;
    bottom: 0px;
    /* gap: 16px; */
    /* display: flex; */
    /* padding: 10px; */
    background-color: var(--dl-color-default-white);
}

#imgCaptcha {
    font-weight: 400;
    padding-bottom: 0px;
    height: 40px;
    user-select: none;
    text-decoration: line-through;
    font-style: italic;
    font-size: x-large;
    border: red 2px solid;
    margin-left: 10px;
    border-radius: 8px;
    width: 160px;
}

input {
    border-color: rgba(179, 179, 179, 1);
    border-style: solid;
    border-width: 1px;
    border-radius: 8px;
    height: 40px;
    padding: 0px 0px 0px 5px;
}

.refresh-icon {
    margin-left: 15px;
    margin-bottom: 10px;
}

.row-container-item > .row-item {
    /* text-align: right; */
    display: flex;
    align-items: flex-end;
    flex-shrink: 0; /* flex-direction: column; */
    justify-content: flex-end;
}

.input-error {
    border: 2px solid #ff4d4d;
}

.moreinfo-body-container {
    gap: 16px;
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-direction: column;
}

.moreinfo-item-parent {
    gap: 4px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.moreinfo-item-title {
    color: var(--dl-color-default-black);
    height: auto;
    font-size: 14px;
    font-style: Regular;
    text-align: left;
    font-family: Inter;
    font-weight: 400;
    line-height: 20px;
    font-stretch: normal;
    text-decoration: none;
}

.moreinfo-item {
    width: 16px;
    height: 16px;
    display: flex;
    position: relative;
    align-items: flex-start;
    flex-shrink: 0;
}

.moreinfo-group-item {
    top: 0px;
    left: 0px;
    width: 16px;
    height: 16px;
    display: flex;
    position: absolute;
    align-items: flex-start;
    flex-shrink: 1;
}

.moreinfo-item-arrow {
    top: 1.896213173866272px;
    left: 3.227679491043091px;
    width: 10px;
    height: 12px;
    position: absolute;
}

.left-pane {
    min-height: 70vh;
    width: 255px;
    display: flex;
    padding: 16px;
    /* overflow: hidden; */
    align-self: stretch;
    /* align-items: center; */
    /* flex-shrink: 0; */
    margin-bottom: 10px;
    flex-direction: column;
    background-color: var(--dl-color-default-gray1);
}

.left-pane-inner {
    gap: 8px;
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-direction: column;
}

.left-pane-search-engine {
    gap: 4.000002861022949px;
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-direction: column;
}

.left-pane-seach-label-parent {
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-shrink: 0;
}

.left-pane-search-title {
    color: var(--dl-color-default-black);
    height: auto;
    flex-grow: 1;
    text-align: left;
    line-height: 16px;
    font-size: 13px;
}

.search-input-parent {
    height: 40px;
    gap: 8px;
    display: flex;
    padding: 0 12.00000286102295px 0 12.000000953674316px;
    align-self: stretch;
    align-items: center;
    flex-shrink: 0;
    border-color: rgba(0, 0, 0, 0);
    border-style: solid;
    border-width: 0.800000011920929px;
    border-radius: 8px;
    background-color: var(--dl-color-default-white);
}

.search-icon {
    width: 16px;
    height: 16px;
}

.search-text-box {
    color: var(--dl-color-default-gray4);
    height: 35px;
    font-size: 14px;
    font-style: Regular;
    text-align: left;
    font-family: Inter;
    font-weight: 400;
    line-height: normal;
    font-stretch: normal;
    text-decoration: none;
    border: none;
}

    .search-text-box:focus, .search-text-box:active {
        border: none;
        outline: none;
    }

.left-pane-frame1 {
    gap: 8px;
    display: flex;
    align-self: stretch;
    /*align-items: flex-start;*/
    flex-direction: column;
}

.left-pane-parent-option {
    gap: 4.000002861022949px;
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-shrink: 0;
}

.left-pane-btn {
    gap: 111.87499237060547px;
    height: 40px;
    display: flex;
    padding: 0 12.00000286102295px 0 12.000000953674316px;
    flex-grow: 1;
    align-items: center;
    flex-shrink: 0;
    border-color: rgba(0, 0, 0, 0);
    border-style: solid;
    border-width: 0.800000011920929px;
    border-radius: 8px;
    justify-content: space-between;
    color: var(--dl-color-default-black);
    flex-grow: 1;
    text-align: center;
    line-height: 16px;
    border-color: rgba(0, 0, 0, 0);
    border-style: solid;
    border-width: 0.800000011920929px;
    width: 100px;
    font-weight: 700;
}

    .left-pane-btn.grey {
        background-color: var(--dl-color-default-gray3);
        border: 2px solid;
    }

    .left-pane-btn.white {
        background-color: var(--dl-color-default-white);
    }

.left-pane-option-label {
    color: var(--dl-color-default-black);
    height: auto;
    flex-grow: 1;
    text-align: center;
    line-height: 16px;
}

.left-panel-ul-parent {
    gap: 16px;
    display: flex;
    padding: 12px 12.00000286102295px 12px 12.000000953674316px;
    overflow: hidden;
    align-self: stretch;
    align-items: flex-start;
    border-color: rgba(0, 0, 0, 0);
    border-style: solid;
    border-width: 0.800000011920929px;
    border-radius: 8px;
    flex-direction: column;
    background-color: var(--dl-color-default-white);
}

.left-panel-ul {
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-shrink: 0;
}

.left-panel-ul-li {
    width: 80px;
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
}

.left-panel-ul-li-item {
    color: var(--dl-color-default-black);
    height: auto;
    flex-grow: 1;
    text-align: left;
    line-height: normal;
}

.left-panel-ul-li-item-desc {
    display: flex;
    flex-grow: 1;
    align-items: flex-start;
    justify-content: flex-end;
}

.center-pane {
    gap: 80px;
    min-height: 70vh;
    width: 1196px;
    display: flex;
    padding: 24px;
    overflow: hidden;
    flex-grow: 1;
    align-items: flex-start;
    flex-shrink: 0;
    flex-direction: column;
    background-color: var(--dl-color-default-white);
}

.center-pane-main {
    gap: 80px;
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-shrink: 0;
}

.center-pane-container {
    gap: 24px;
    width: fit-content;
    display: flex;
    flex-grow: 1;
    align-items: flex-start;
    flex-shrink: 0;
    flex-direction: column;
}

.center-pane-main-title {
    gap: 10px;
    display: flex;
    align-self: stretch;
    align-items: center;
    flex-shrink: 0;
    justify-content: center;
}

.center-pane-title {
    gap: 10px;
    margin: 15px 5px;
    display: flex;
    align-self: stretch;
    align-items: center;
    flex-shrink: 0;
}

    .center-pane-main-title > .center-pane-title-txt, .center-pane-title > .center-pane-title-txt {
        color: var(--dl-color-default-black);
        height: auto;
        font-size: 20px;
        font-style: Medium;
        text-align: left;
        font-family: Inter;
        font-weight: 500;
        line-height: 28px;
        font-stretch: normal;
        text-decoration: none;
    }

.right-pane {
    gap: 30px;
    height: auto;
    width: 330px;
    display: flex;
    padding: 10px;
    overflow: hidden;
    align-self: stretch;
    align-items: flex-start;
    flex-shrink: 0;
    flex-direction: column;
    background-color: var(--dl-color-default-gray1);
    margin-bottom: 10px;
}

.mg-bottom-20 {
    margin-bottom: 20px;
}

.table-parent {
    width: 50%;
    display: inline-block;
}

table.table {
    /* display: flex;*/
    align-self: stretch;
    align-items: flex-start;
    flex-shrink: 0;
    width: 100%;
}

.table-parent > .table {
    margin-bottom: 10px;
    width: 90%;
}

table.table > thead > tr > th, table.table > tbody > tr > th {
    gap: 310px;
    /*  display: flex;*/
    padding: 8px 88px 8px 8px;
    align-self: stretch;
    align-items: center;
    text-align: left;
    line-height: 25px;
    flex-shrink: 0;
    justify-content: space-between;
    background-color: var(--dl-color-default-gray2);
    border-right: none;
    text-wrap-mode: nowrap;
}

    table.table > thead > tr > th > a, table.table > tbody > tr > th > a {
        text-decoration: none;
        font-size: 16px;
        font-family: Inter;
        font-weight: 600;
        color: #000;
    }

table.table > tbody > tr > td > a {
    padding: 7px;
    text-decoration: none;
    font-size: 14px;
    font-family: Inter;
    font-weight: 600;
    border-radius: 8px;
    justify-content: center;
    background-color: var(--dl-color-default-red2);
    border-width: 0px;
    color: var(--dl-color-default-white);
}

table.table > thead > tr > th:first-child, table.table > tbody > tr > th:first-child {
    border-radius: 8px 0 0;
}

table.table > thead > tr > th:last-child, table.table > tbody > tr > th:last-child {
    border-radius: 0 8px 0 0;
}

table.table > thead > tr > th.col-1 {
    border-radius: 8px 8px 0 0 !important;
}

.gridview-selected-row {
    border: 2px solid #CC0000FF !important;
    /*  border-width: 1px 0px 1px 0px !important;*/
    /* border-top: 1px solid #CC0000FF;
    border-right: 0px;
    border-bottom: 1px solid #CC0000FF;
    border-left: 0px;*/
    /*   border-color: #CC0000FF !important;
    font-weight: bold !important;*/
}

/*
.gridview-selected-row td {
    border-style: solid !important;
    border-color: #CC0000FF !important;
    font-weight: bold !important;
}
    .gridview-selected-row td:first-child {
        border-top: 1px solid #CC0000FF;
        border-right: 0px;
        border-bottom: 1px solid #CC0000FF;
        border-left: 1px;
        border-color: #CC0000FF !important;
        font-weight: bold !important;
    }

    .gridview-selected-row td:last-child {
        border-top: 1px solid #CC0000FF !important;
        border-right: 1px !important;
        border-bottom: 1px solid #CC0000FF !important;
        border-left: 0px !important;
        border-color: #CC0000FF !important;
        font-weight: bold !important;
    }*/

table.table > thead > tr > th > span {
    color: var(--dl-color-default-black);
    height: auto;
    font-size: 16px;
    text-align: left;
    font-family: Inter;
    font-weight: 700;
    line-height: 20px;
    font-stretch: normal;
    text-decoration: none;
}

.table.table > tbody > tr > td {
    gap: 61px;
    /* display: flex;*/
    padding: 8px 16px;
    align-self: stretch;
    align-items: center;
    flex-shrink: 0;
    border-color: rgba(217, 217, 217, 1);
    border-style: solid;
    border-width: 0 0 1px;
    background-color: var(--dl-color-default-white);
    color: var(--dl-color-default-black);
    height: auto;
    text-align: left;
    line-height: normal;
}

.inquiry-form {
    width: 450px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    box-sizing: border-box;
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

    .form-header h2 {
        margin: 0;
    }

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .form-group input[type="text"],
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 8px;
        box-sizing: border-box;
        font-family: Inter;
    }

.required {
    color: red;
    margin-left: 3px;
}

.button-row {
    display: inherit;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin-top: 20px;
}

/*.button-row input[type="submit"],
    .button-row input[type="button"] {
        min-width: 120px;
    }*/

/*.button--primary {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
}

    .button--primary:hover {
        opacity: 0.9;
    }

.button--danger {
    background-color: #dc3545;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
}

    .button--danger:hover {
        opacity: 0.9;
    }*/

.select__label {
    font-size: 12px;
    text-align: left;
    font-family: Inter;
}

.panel-btn-container {
    gap: 8px;
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-direction: column;
}

.right-pane-header {
    gap: 20px;
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-direction: column;
}

.right-pane-btn-container {
    gap: 4.000002861022949px;
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-shrink: 0;
}

.bushingquicksearch31-thq-select-trigger-elm19 {
    gap: 111.87499237060547px;
    height: 40px;
    display: flex;
    padding: 0 8px;
    flex-grow: 1;
    align-items: center;
    flex-shrink: 0;
    border-color: rgba(0, 0, 0, 0);
    border-style: solid;
    border-width: 0.800000011920929px;
    border-radius: 8px;
    justify-content: space-between;
    background-color: var(--dl-color-default-white);
}

.bushingquicksearch31-thq-text-elm56 {
    color: var(--dl-color-default-black);
    height: auto;
    flex-grow: 1;
    text-align: center;
    line-height: 16px;
}

.pane-wrap box {
    margin-top: -20px;
}

.info__img {
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    border-color: #FFFFFF;
    background-color: #FFFFFF;
    width: 333px;
}

    .info__img img {
        width: inherit;
    }

.info-table {
    background-color: var(--dl-color-theme-neutral-light);
    margin-top: 10px;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    border-color: #FFFFFF;
    width: 100%;
}

    .info-table > tbody > tr > th {
        font-size: 16px;
        font-family: Inter;
        font-weight: 600;
        padding-bottom: 10px;
    }

    .info-table > tbody > tr > td > span {
        font-size: 12px;
        font-family: Inter;
        font-weight: 400;
        color: var(--dl-color-default-black);
    }

    .info-table > tbody > tr > td {
        background-color: var(--dl-color-theme-neutral-light);
        height: auto;
        padding: 5px;
        font-size: 12px;
        font-family: Inter;
        font-weight: 600;
    }

        .info-table > tbody > tr > td > span.title {
            background-color: var(--dl-color-theme-neutral-light);
            height: auto;
            font-size: 12px;
            font-family: Inter;
            font-weight: 600;
        }

        .info-table > tbody > tr > td:last-child {
            font-size: 12px;
            font-family: Inter;
            font-weight: 400;
        }



.document-tab-info-msg {
    gap: 16px;
    display: flex;
    padding: 16px;
    align-self: stretch;
    align-items: center;
    flex-shrink: 0;
    border-radius: 8px;
    justify-content: center;
    background-color: var(--dl-color-default-white);
    /*margin-top: 40px;*/
    margin-bottom: 20px;
}

.document-tab-info-group-icon {
    width: 7px;
    height: 35.999755859375px;
    display: flex;
    position: relative;
    align-items: flex-start;
    flex-shrink: 1;
}

    .document-tab-info-group-icon > .icon-1 {
        top: 0px;
        left: -5.401507px;
        width: 18px;
        height: 23px;
        position: absolute;
    }

    .document-tab-info-group-icon > .icon-2 {
        top: 28.800049px;
        left: 1.094947px;
        width: 7px;
        height: 7px;
        position: absolute;
    }

.document-tab-info-msg-txt {
    color: var(--dl-color-default-black);
    height: auto;
    flex-grow: 1;
    align-self: stretch;
    text-align: left;
    line-height: normal;
    font-size: 14px;
}

.button-group--center {
    text-align: center;
}

.custom-responsive-tree {
    margin-top: -20px;
}

.root-node-style, .tree-node-style {
    font-size: 14px;
    font-family: Inter;
    font-weight: 400;
    text-decoration: none;
    color: var(--dl-color-default-black);
    padding: 5px;
}

    .tree-node-style:not(.root-node-style) > a {
        /*  position: absolute;
        margin-top: 15px;*/
        text-wrap-mode: wrap;
    }

a.tree-node-style.root-node-style {
    margin-top: -20px;
    margin-left: 10px;
    text-wrap-mode: wrap;
}

td.tree-node-style.root-node-style {
    padding: 15px;
}

.table-parent-2 {
    width: 90%;
}


.modal {
    position: fixed;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
    background-color: #fff;
    width: 350px;
    top: 37%;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.fade.show {
    opacity: 1;
}

#confirmDialog .modal-content {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,.2);
    /*  border: 1px solid #f3f4f6;*/
}

#confirmDialog .modal-header {
    background: #f8f9fa;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0px;
    /*  border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;*/
    height: 50px;
    background-color: var(--dl-color-default-red2);
    color: var(--dl-color-default-white);
}


#confirmDialog .modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
}

#confirmDialog .modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    /* border-top: 1px solid #e9ecef;*/
    margin-top: 15px;
}

#confirmDialog .btn {
    min-width: 100px;
    border-radius: 5px;
}

.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.modal-title {
    padding: 0px;
    font-size: 16px;
    margin-left: 10px;
    line-height: 0px;
}

.modal-header .close {
    padding: 25px;
    margin: -1rem -1rem -1rem auto;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    color: var(--dl-color-default-white);
    font-size: 24px;
}

.btn-secondary {
    gap: 8px;
    height: 40px;
    display: flex;
    padding: 12px 24px;
    align-self: stretch;
    align-items: center;
    flex-shrink: 0;
    border-radius: 8px;
    justify-content: center;
    background-color: var(--dl-color-default-white);
    border: 1px solid var(--dl-color-default-red2);
    color: var(--dl-color-default-red2);
}

.modal-footer > :not(:last-child) {
    margin-right: .25rem;
}

.modal-footer > :not(:first-child) {
    margin-left: .25rem;
}

.disabled {
    background-color: #dfdfdf !important;
}

#dvDynamicTable {
    width: 100%;
}

.tab-container {
    display: flex;
    background-color: #fff !important;
    height: 50px;
    align-items: center;
}

.tab-link {
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    /* background: #f1f1f1; */
    /* border: 1px solid #ccc; */
    border-bottom: none;
    margin-right: 5px;
    /* border-radius: 8px; */
}

    .tab-link.active {
        background: #fff;
        border-bottom: 2px solid #fff;
        margin-bottom: -2px;
        font-weight: bold;
    }

/*.tab-content {
    padding: 10px;*/
/* border: 1px solid #ccc; */
/* border-top: none;*/
/*}*/

.wrapper {
    width: 96%;
    margin: 12px auto;
}

/* Section Heading */

.section-title {
    font-size: 20px;
    font-weight: 700;
    margin: 12px 0 12px;
}

.mt {
    margin-top: 22px;
}

/* Card */

.info-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 86px;
    margin-bottom: 12px;
    padding: 0 20px;
    text-decoration: none;
    color: #1b1b1b;
    background: #f9fafb;
    border: 1px solid #e3e3e3;
    border-left: 3px solid #c8102e;
    border-radius: 14px;
    transition: .25s;
}

    /* Text */

    .info-card span {
        font-size: 16px;
        font-weight: 700;
    }

    /* Arrow */

    .info-card i {
        font-size: 22px;
        color: #4b5563;
        transition: .25s;
    }

    /* Hover */

    .info-card:hover {
        box-shadow: 0 6px 18px rgba(0,0,0,.08);
        transform: translateY(-2px);
    }

        .info-card:hover i {
            transform: translateX(6px);
        }

/* Mobile */

@media(max-width:768px) {

    .wrapper {
        width: 95%;
    }

    .info-card {
        height: 74px;
        padding: 0 16px;
    }

    .section-title {
        font-size: 18px;
    }

    .info-card span {
        font-size: 15px;
    }
}

.invisible {
    display: none;
}

.custom-responsive-tree > div > table > tbody > tr > td > img {
    /*display: none !important;*/
}

.right-pane-btn-container .label {
    width: 165px;
}

.pane-wrap.box {
    width: 335px;
}

.light-bg-color {
    background-color: #dfdfdf !important;
}

.tab-parent-container {
    width: -webkit-fill-available !important;
    border: none;
    border-radius: 8px;
    border: 3px solid #fff;
    border-bottom: 0;
    margin-top: 25px;
}

.center-pane-container .heading {
    text-align: center;
    width: 100%;
    font-size: 24px;
    font-weight: 600;
}

.bg-grey-color {
    background-color: #f3f4f6;
    height: -webkit-fill-available;
}

.tab-table tbody tr:first-child td {
    border-top: 1px solid #d9d9d9 !important;
}

.tab-content .table-parent, .tab-content .table-parent .table {
    width: 100%;
}

.custom-pager {
    background: #f9fafb !important;
    padding: 12px;
}

    .custom-pager td {
        border: none !important;
        border-style: none !important;
        border-width: 0px !important;
        background: #f9fafb !important;
    }

.pager-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 12px; */
    vertical-align: middle;
    height: 45px;
}

.pager-left {
    color: #777;
    font-size: 14px;
}

.pager-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-number,
.pager-arrow {
    font-size: 24px;
}

.page-number, .pager-arrow, .pager-right a {
    width: 20px;
    height: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #666;
    border-radius: 50%;
    transition: .3s;
}

    .pager-right a.active {
        color: black;
        padding: 0px;
    }

    .page-number:hover,
    .pager-arrow:hover, .pager-right a:hover {
        background: #ececec;
    }

    .page-number.active {
        background: #1976d2;
        color: white;
        font-weight: bold;
    }

.ellipsis {
    margin-top: -5px;
    margin-right: 10px;
}

input:autofill {
    box-shadow: 0 0 0px 1000px #ffffff inset !important;
    -webkit-text-fill-color: #333333 !important;
}

#dvStaticTable {
    width: 100%;
    display: flex;
}

#tabContainer {
    width: -webkit-fill-available !important;
    text-align: center;
}

.modal-backdrop.fade {
    filter: alpha(opacity=0);
    opacity: 0;
}

.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .5;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

input[type=submit] {
    cursor: pointer;
}

@media screen and (min-width: 768px) {

    .header {
        background-size: cover;
        /* background-position: center; */
        background-repeat: no-repeat;
        height: 90px;
        width: 100%;
    }

    .menu-ribbon {
        margin-top: 45px;
    }

    .menu-item {
        font-size: 9px;
    }

    .menu-item-container, .menu-item-container.active {
        padding: 8px;
    }

    .row-container {
        width: 740px;
    }

    .center-pane, .table-parent-lifecycle {
        width: 600px;
    }

    /*
    .center-pane-main {
        overflow-x: auto;
        width: 100%;
    }*/

    .left-pane, .left-pane .left-pane-frame1 {
        width: 190px;
    }

    .include-right-pane {
        width: 60.5%;
    }

    .search-input-parent, .search-text-box {
        padding: 1px;
        width: 100%;
    }

    table.table > thead > tr > th > span {
        font-size: 12px;
        text-wrap-mode: nowrap;
    }

    .table-parent {
        width: 305px;
    }

        .table-parent > .table {
            width: 295px;
        }

    #dvStaticTable {
        width: 735px;
        display: flex;
    }

        #dvStaticTable .table-parent:last-child {
            margin-left: 10px;
        }

    #tabContainer {
        width: 920px;
    }

    .include-right-pane #tabContainer {
        width: 940px;
    }

    .center-pane .img {
        width: 350px;
    }

    .center-pane.include-right-pane .img {
        width: 350px;
    }

    .right-pane, .info__img, .pane-wrap.box {
        width: 190px;
    }

    .right-pane-btn-container .label {
        width: 85px;
        font-size: 8px;
    }

    .button {
        font-size: 12px;
    }

    .root-node-style, .tree-node-style {
        font-size: 8px;
        text-wrap-mode: nowrap;
    }

    .include-right-pane {
        width: 390px;
    }

        .include-right-pane #dvDynamicTable {
            width: 475px;
        }

            .include-right-pane #dvDynamicTable .table {
                width: 425px;
            }

    .left-pane-btn {
        width: 90px;
    }

    .label {
        font-size: 10px;
    }
}

@media screen and (min-width: 992px) {

    .header {
        background-size: cover;
        /* background-position: center; */
        background-repeat: no-repeat;
        height: 100px;
        width: 100%;
    }

    .menu-ribbon {
        margin-top: 50px;
    }

    .menu-item {
        font-size: 10px;
    }

    .row-container {
        width: 740px;
    }

    .center-pane {
        width: 730px;
        /*overflow-x: auto;*/
    }

    .table-parent-lifecycle {
        width: 720px;
    }

    .left-pane, .left-pane .left-pane-frame1 {
        width: 215px;
    }

    .search-input-parent, .search-text-box {
        padding: 1px;
        width: 100%;
    }

    table.table > thead > tr > th > span {
        font-size: 12px;
        text-wrap-mode: nowrap;
    }

    .include-right-pane {
        width: 450px;
    }

    .table-parent > .table {
        width: 100%;
    }

    .table-parent {
        width: 48%;
    }

    #dvStaticTable .table-parent:last-child {
        margin-left: 15px;
    }

    #dvDynamicTable {
        width: 720px;
    }

    .include-right-pane #dvDynamicTable {
        width: 475px;
    }

    .right-pane {
        width: 250px;
    }

    .right-pane-btn-container .label {
        width: 125px;
    }

    .pane-wrap.box {
        width: 250px;
    }

    .info__img {
        width: 250px;
    }

    #tabContainer {
        width: 710px;
    }

    .include-right-pane #tabContainer {
        width: 450px;
    }

    .modal {
        top: 30%;
    }

    .center-pane .img {
        width: 400px;
    }

    .center-pane.include-right-pane .img {
        width: 445px;
    }

    .include-right-pane #dvDynamicTable table.table > thead > tr > th, .include-right-pane #dvDynamicTable table.table > tbody > tr > th {
        padding: 8px 70px 8px 8px;
    }

    .include-right-pane #dvDynamicTable .table {
        width: 460px;
    }
}

@media screen and (min-width: 1200px) {

    .header {
        background-size: cover;
        /* background-position: center; */
        background-repeat: no-repeat;
        height: 120px;
        width: 100%;
    }

    .menu-ribbon {
        margin-top: 65px;
    }

    .menu-item {
        font-size: 13px;
    }

    .row-container {
        width: 740px;
    }

    .left-pane, .left-pane .left-pane-frame1 {
        width: 215px;
    }

    .center-pane {
        /*width: 940px;*/
        width: 922px;
    }

    .table-parent-lifecycle {
        width: 920px;
    }

    table.table > thead > tr > th > span {
        font-size: 16px;
        text-wrap-mode: nowrap;
    }

    .table-parent > .table {
        width: 100%;
    }

    .include-right-pane {
        width: 592px;
    }

    .table-parent {
        width: 48.5%;
    }

    #dvStaticTable {
        width: 935px;
    }

        #dvStaticTable .table-parent:last-child {
            margin-left: 15px;
        }

    #dvDynamicTable {
        width: 925px;
    }

    .pane-wrap.box {
        width: 315px;
    }

    .info__img {
        width: 313px;
    }

    .right-pane {
        width: 310px;
    }

    .include-right-pane #dvDynamicTable {
        width: 100%;
    }

    .right-pane-btn-container .label {
        width: 153px;
    }

    .right-pane-btn-container input:last-child {
        margin-left: 5px;
    }

    #tabContainer {
        width: 920px;
    }

    .include-right-pane #tabContainer {
        width: 592px;
    }

    .center-pane .img {
        width: 500px;
    }

    .center-pane.include-right-pane .img {
        width: 585px;
    }

    .include-right-pane #dvDynamicTable .table {
        width: 600px;
    }
}

@media screen and (min-width: 1350px) {

    .header {
        background-size: cover;
        /* background-position: center; */
        background-repeat: no-repeat;
        height: 140px;
        width: 100%;
    }

    .menu-ribbon {
        margin-top: 80px;
    }

    .menu-item {
        font-size: 15px;
    }

    .row-container {
        width: 740px;
    }

    .left-pane, .left-pane .left-pane-frame1 {
        width: 290px;
    }

    .center-pane {
        /*width: 1030px;*/
        width: 1014px;
    }

    .table-parent-lifecycle {
        width: 1010px;
    }

    table.table > thead > tr > th > span {
        font-size: 16px;
        text-wrap-mode: nowrap;
    }

    .table-parent > .table {
        width: 100%;
    }

    .include-right-pane {
        width: 665px;
    }

    .table-parent {
        width: 48.5%;
    }

    #dvStaticTable {
        width: 1024px;
    }

        #dvStaticTable .table-parent:last-child {
            margin-left: 15px;
        }

    #dvDynamicTable {
        width: 1010px;
    }

    .include-right-pane #dvDynamicTable {
        width: 660px;
    }

    .right-pane {
        width: 330px;
    }

    .pane-wrap.box {
        width: 330px;
    }

    .info__img {
        width: 328px;
    }

    #tabContainer {
        width: 1020px;
    }

    .include-right-pane #tabContainer {
        width: 800px;
    }

    .center-pane .img {
        width: 520px;
    }

    .center-pane.include-right-pane .img {
        width: 660px;
    }

    .include-right-pane #dvDynamicTable .table {
        width: 670px;
    }
}

@media screen and (min-width: 1450px) {
    .header {
        background-size: cover;
        /* background-position: center; */
        background-repeat: no-repeat;
        height: 155px;
        width: 100%;
    }

    .menu-ribbon {
        margin-top: 90px;
    }

    .menu-item {
        font-size: 16px;
    }

    .row-container {
        width: 740px;
    }

    .left-pane, .left-pane .left-pane-frame1 {
        width: 290px;
    }

    .center-pane {
        width: 1160px;
        /*width: 1320px;*/
    }

    .table-parent-lifecycle {
        width: 1160px;
    }

    table.table > thead > tr > th > span {
        font-size: 16px;
        text-wrap-mode: nowrap;
    }

    .table-parent > .table {
        width: 100%;
    }

    .include-right-pane {
        width: 770px;
    }

    .table-parent {
        width: 48.5%;
    }

    #dvStaticTable {
        width: 1180px;
    }

        #dvStaticTable .table-parent:last-child {
            margin-left: 15px;
        }

    #dvDynamicTable {
        /*  width: 86%;*/
        width: 1160px;
    }

    .include-right-pane #dvDynamicTable {
        width: 100%;
    }

    .right-pane {
        width: 363px;
    }

    .pane-wrap.box {
        width: 362px;
    }

    .info__img {
        width: 357px;
    }

    #tabContainer {
        width: 1160px;
    }

    .include-right-pane #tabContainer {
        width: 940px;
    }

    .center-pane .img {
        width: 600px;
    }

    .center-pane.include-right-pane .img {
        width: 770px;
    }

    .include-right-pane #dvDynamicTable .table {
        width: 770px;
    }
}

@media screen and (min-width: 1600px) {

    .header {
        background-size: cover;
        /* background-position: center; */
        background-repeat: no-repeat;
        height: 170px;
        width: 100%;
    }

    .menu-ribbon {
        margin-top: 105px;
    }

    .menu-item {
        font-size: 18px;
    }

    .row-container {
        width: 740px;
    }

    .left-pane, .left-pane .left-pane-frame1 {
        width: 290px;
    }

    .center-pane {
        /*width: 1526px;*/
        width: 1320px;
    }

    .table-parent-lifecycle {
        width: 1320px;
    }

    table.table > thead > tr > th > span {
        font-size: 16px;
        text-wrap-mode: nowrap;
    }

    .table-parent > .table {
        width: 100%;
    }

    .include-right-pane {
        width: 937px;
    }

    .table-parent {
        width: 48.5%;
    }

    #dvStaticTable {
        width: 1340px;
    }

        #dvStaticTable .table-parent:last-child {
            margin-left: 15px;
        }

    #dvDynamicTable {
        /*  width: 86%;*/
        width: 1320px;
    }

    .include-right-pane #dvDynamicTable {
        width: 100%;
    }

    .right-pane {
        width: 363px;
    }

    .pane-wrap.box {
        width: 362px;
    }

    .info__img {
        width: 357px;
    }

    #tabContainer {
        width: 1320px;
    }

    .include-right-pane #tabContainer {
        width: 940px;
    }

    .center-pane .img {
        width: 700px;
    }

    .center-pane.include-right-pane .img {
        width: 930px;
    }

    .include-right-pane #dvDynamicTable .table {
        width: 940px;
    }
}


@media screen and (min-width: 1920px) {
    .header {
        background-size: cover;
        /* background-position: center; */
        background-repeat: no-repeat;
        height: 170px;
        width: 100%;
    }

    .menu-ribbon {
        margin-top: 105px;
    }

    .menu-item {
        font-size: 18px;
    }

    .center-pane-main-title > .center-pane-title-txt, .center-pane-title > .center-pane-title-txt {
        font-size: 26px;
        font-weight: 600;
    }

    .menu-item-container, .menu-item-container.active {
        padding: 12px;
    }

    .row-container {
        width: 740px;
    }

    .left-pane {
        min-height: 80vh;
    }

    .scroll-center-pane {
        overflow-y: scroll;
        min-height: 80vh;
    }

    .left-pane, .left-pane .left-pane-frame1 {
        width: 320px;
    }

    .center-pane {
        /*width: 1900px;*/
        width: 1630px;
    }

    .table-parent-lifecycle, #dvStaticTable, #dvDynamicTable {
        width: 1510px;
    }

    .center-pane .img {
        width: 850px;
    }


    table.table > thead > tr > th > span {
        font-size: 16px;
        text-wrap-mode: nowrap;
    }

    .table-parent > .table {
        width: 100%;
    }

    .include-right-pane, .include-right-pane #dvDynamicTable .table {
        /*width: 1070px;*/
        width: 1194px;
    }

    .center-pane.include-right-pane .img {
        width: 900px;
    }

    .table-parent {
        width: 48.5%;
    }

    #dvStaticTable .table-parent:last-child {
        margin-left: 15px;
    }

    .include-right-pane #dvDynamicTable {
        width: 100%;
    }

    .right-pane, .pane-wrap.box {
        width: 415px;
    }

    /*    .pane-wrap.box {
        width: 362px;
    }
*/
    .info__img {
        width: 410px;
    }

    #tabContainer {
        width: 1320px;
    }

    .include-right-pane #tabContainer {
        width: 940px;
    }
}

@media screen and (min-width: 2220px) {
    .header {
        background-size: cover;
        /* background-position: center; */
        background-repeat: no-repeat;
        height: 170px;
        width: 100%;
    }

    .menu-ribbon {
        margin-top: 105px;
    }

    .menu-item {
        font-size: 18px;
    }

    .center-pane-main-title > .center-pane-title-txt, .center-pane-title > .center-pane-title-txt {
        font-size: 26px;
        font-weight: 600;
    }

    .menu-item-container, .menu-item-container.active {
        padding: 12px;
    }

    .row-container {
        width: 740px;
    }

    .left-pane {
        min-height: 80vh;
    }

    .scroll-center-pane {
        overflow-y: scroll;
        min-height: 80vh;
    }

    .left-pane, .left-pane .left-pane-frame1 {
        width: 320px;
    }

    .center-pane {
        /*width: 1900px;*/
        width: 1880px;
    }

    .table-parent-lifecycle, #dvStaticTable, #dvDynamicTable {
        width: 1800px;
    }

    .center-pane .img {
        width: 850px;
    }


    table.table > thead > tr > th > span {
        font-size: 16px;
        text-wrap-mode: nowrap;
    }

    .table-parent > .table {
        width: 100%;
    }

    .include-right-pane, .include-right-pane #dvDynamicTable .table {
        width: 1445px;
    }

    .center-pane.include-right-pane .img {
        width: 900px;
    }

    .table-parent {
        width: 48.5%;
    }

    #dvStaticTable .table-parent:last-child {
        margin-left: 15px;
    }

    .include-right-pane #dvDynamicTable {
        width: 100%;
    }

    .right-pane, .pane-wrap.box {
        width: 415px;
    }

    /*    .pane-wrap.box {
        width: 362px;
    }
*/
    .info__img {
        width: 410px;
    }

    #tabContainer {
        width: 1320px;
    }

    .include-right-pane #tabContainer {
        width: 940px;
    }
}

@media screen and (min-width: 2560px) {
    .header {
        height: 240px;
    }

    .menu-ribbon {
        margin-top: 145px;
    }

    .menu-item {
        font-size: 30px;
    }

    .center-pane-main-title > .center-pane-title-txt, .center-pane-title > .center-pane-title-txt {
        font-size: 26px;
        font-weight: 600;
    }

    .menu-item-container, .menu-item-container.active {
        padding: 12px;
    }

    .row-container {
        width: 740px;
    }

    .left-pane, .left-pane .left-pane-frame1 {
        width: 420px;
    }

    .center-pane {
        width: 2540px;
    }

    .table-parent-lifecycle, #dvStaticTable, #dvDynamicTable {
        width: 2500px;
    }

    .center-pane .img {
        width: 1350px;
    }

    .table.table > thead > tr > th, .table.table > tbody > tr > td {
        padding: 22px 24px;
    }

    table.table > thead > tr > th > span {
        font-size: 30px;
        text-wrap-mode: nowrap;
    }

    .table-parent > .table {
        width: 100%;
    }

    .include-right-pane, .include-right-pane #dvDynamicTable .table {
        width: 2040px;
    }

    .center-pane.include-right-pane .img {
        width: 1440px;
    }

    .table-parent {
        width: 48.5%;
    }

    #dvStaticTable .table-parent:last-child {
        margin-left: 15px;
    }

    .include-right-pane #dvDynamicTable {
        width: 100%;
    }

    .right-pane, .pane-wrap.box {
        width: 485px;
    }

    /*    .pane-wrap.box {
        width: 362px;
    }
*/
    .info__img {
        width: 480px;
    }

    #tabContainer {
        width: 1320px;
    }

    .include-right-pane #tabContainer {
        width: 940px;
    }
}

.scroll-center-pane {
    overflow-y: scroll;
    height: 515px;
}
