.back-link {
    width: 173px;
    height: 20px;

    position: absolute;
    top: 20%;
    left: 5%;

    background-color: transparent;
    color: grey;

    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: normal;

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

    cursor: pointer;
}

.back-button-field-mapper {
    width: 20px;
    height: 20px;
    background-image: url("./data_mapper_assets/back_arrow.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;

    margin-right: 5px;
}

.ratecard-filename {
    width: fit-content;
    height: fit-content;

    position: absolute;
    top: calc(22% + 20px);
    left: 5%;

    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--title-font-color);
}

.info-section {
    width: 100%;
    height: 120px;

    background-color: transparent;
    position: relative;
}

.info-title {
    position: absolute;

    top: 20%;
    left: 5%;

    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--title-font-color);
}

.info-description {
    position: absolute;
    top: calc(22% + 32px);
    left: 5%;

    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-2);
}

.data-mapping-section {
    width: 90%;
    height: 50%;

    background-color: transparent;
    overflow-x: auto;

    display: flex;
    flex-direction: row;
    align-items: top;

    overflow-x:auto;
    overflow-y:hidden;
}

.preview-column {
    width: 200px;
    height: 100%;

    padding: 5px;

    background-color: transparent;

    overflow:hidden;
}

.data-bottom-section {
    margin-top: 20px;
    height: fit-content;
    width: fit-content;
    position: relative;
}

.confirm-mapping-button {
    width: 165px;
    height: 48px;

    background-color: var(--dark-blue);
    color: white;

    font-family: "Inter", sans-serif;
    font-weight: normal;
    font-size: 16px;

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

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

.mapped-field {
    width: 100%;
    height: 32px;
    padding-left: 5px;
    padding-right: 5px;

    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);

    font-family: "Inter", sans-serif;
    font-weight: normal;
    font-size: 15px;

    border-style: none;
    outline: none;
}

.data-column {
    width: 100%;
    height: fit-content;

    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;

    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
    overflow-y:auto;
    overflow-x:hidden;

    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.original-field {
    width: 100%;
    height: 44px;

    padding: 10px;
    margin-top: 5px;

    background-color: rgba(0,0,0,0.3);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

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

    border-bottom: solid 1.5px grey;

    font-family: "Inter", sans-serif;
    font-weight: bold;
    font-size: 15px;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.preview-data-item {
    padding: 10px;
    width: 100%;
    height: 44px;
    padding: 10px;
    border-bottom: solid grey 1.5px;
    background-color: white;

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

    font-family: "Inter", sans-serif;
    font-weight: normal;
    font-size: 15px;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.last-item {
    border-style: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.upload-icon-data-mapper {
    width: 30px;
    height: 30px;
    background-image: url("./data_mapper_assets/upload_icon.png");
    background-repeat: no-repeat;
    background-size: contain;
}