.editor-menu {
    width: 100%;
    height: 5px;
    min-height: 50px;

    padding-left: 10px;
    padding-right: 10px;

    border-top: 2px rgba(0, 0, 0, 0.1) solid;

    background-color: white;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
}

.matched-data {
    width: 118.5px;
    height: 28px;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;

    display: flex;
    flex-direction: row;
    align-items: center;
}

.stack-icon {
    width: 14px;
    height: 14px;
    margin-right: 5px;

    background-image: url("./editor_assets/stacks.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.quick-expand-toggle {
    width: 260px;
    height: 39px;

    margin-left: 10px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    background-color: rgba(200, 200, 200, 1.0);

    border-radius: 5px;
}

.quick-view,
.expanded-view {
    height: 27px;
    width: 120px;

    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 12px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    border-radius: 5px;
    cursor: pointer;
}

.quick-view.active,
.expanded-view.active {
    background-color: white;
}

.ratecard-main-section {
    width: 100%;
    height: 50%;

    display: flex;
    flex-direction: column;
    align-items: top;
    justify-content: flex-start;

    overflow-y: auto;
    overflow-x: auto;

    background-color: transparent;
}

.ratecard-data-section {
    width: fit-content;
    height: fit-content;

    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;

    position:relative;
}

.column-heading {
    color: white;
    position:sticky;
    top:0px;
}

.ratecard-hidden-column {
    display: none;
}

.hidden-cell {
    display: none;
}

.index-cell {
    width: 50px;
    height: 50px;

    background-color: white;
    word-wrap: break-word;

    padding: 5px;

    overflow: hidden;
    text-align: left;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px rgba(0, 0, 0, 0.1) solid;
}

.match-cell {
    width: 100px;
    height: 50px;

    background-color: white;
    word-wrap: break-word;

    padding: 5px;

    overflow: hidden;
    text-align: left;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px rgba(0, 0, 0, 0.1) solid;
}

.description-cell::-webkit-scrollbar {
    display: none;
}

.description-cell {
    width: 200px;
    height: 50px;

    background-color: white;
    word-wrap: break-word;

    padding: 5px;

    overflow-y: scroll;
    text-align: left;

    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;

    border: 1px rgba(0, 0, 0, 0.1) solid;
}

.wide-description-cell {
    width: 300px;
    height: 50px;

    background-color: white;
    word-wrap: break-word;

    padding: 5px;

    overflow-y: scroll;
    text-align: left;

    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;

    border: 1px rgba(0, 0, 0, 0.1) solid;
}

.cell {
    width: 200px;
    height: 50px;

    background-color: white;
    word-wrap: break-word;

    padding: 5px;

    overflow: hidden;
    text-align: left;

    display: flex;
    align-items: center;
    justify-content: start;

    border: 1px rgba(0, 0, 0, 0.1) solid;
}

.wide-cell {
    width: 300px;
    height: 50px;

    background-color: white;
    word-wrap: break-word;

    padding: 5px;

    overflow: hidden;
    text-align: left;

    display: flex;
    align-items: center;
    justify-content: start;

    border: 1px rgba(0, 0, 0, 0.1) solid;
}

.from-ratecard {
    background-color: #0052b4;
}

.from-rightspend {
    background-color: #0070ff;
}

.ratecard-bottom-section {
    width: 270px;
    height: 56px;
    margin-top: auto;
    margin-bottom: auto;

    display: flex;
    align-items: center;
    justify-content: space-evenly;

    border-radius: 10px;
    background-color: white;

    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.ratecard-confirm-button {
    width: 148px;
    height: 40px;

    border-radius: 10px;
    color: white;
    background-color: var(--dark-blue);

    display: flex;
    align-items: center;
    justify-content: space-evenly;

    cursor: pointer;
}

.check-icon {
    width: 16px;
    height: 16px;

    background-image: url("./editor_assets/check_icon.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.ratecard-reset-button {
    width: 89px;
    height: 40px;

    border-radius: 10px;
    color: grey;
    background-color: transparent;

    display: flex;
    align-items: center;
    justify-content: space-evenly;

    cursor: pointer;
}

.reset-icon {
    width: 24px;
    height: 24px;

    background-image: url("./editor_assets/reset_icon.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/*classes used for color codes*/
.similar-match {
    color: transparent;

    background-image: url("./editor_assets/similar.png");
    background-repeat: no-repeat;
    background-color: white;
    background-position: center;
    background-size: 20px 20px;
}

.manual-match {
    color: transparent;
    background-image: url("./editor_assets/manual.png");
    background-repeat: no-repeat;
    background-color: white;
    background-position: center;
    background-size: 20px 20px;
}

.approved-cell {
    color: transparent;
    background-image: url("./editor_assets/approved.png");
    background-repeat: no-repeat;
    background-color: white;
    background-position: center;
    background-size: 20px 20px;
}

.not-approved-cell {
    color: transparent;
    background-image: url("./editor_assets/not_approved.png");
    background-repeat: no-repeat;
    background-color: white;
    background-position: center;
    background-size: 20px 20px;
}

.pin-button{
    height:20px;
    width:20px;
    background-color: transparent;
    background-image:url("./editor_assets/lock_open.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}