.select-add-type {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.select-add-type .item {
    width: 100%;
    background: var(--gift-pink-color);
    border-radius: 10px;
    padding: 42px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 400ms;
}

.select-add-type.select-add-type-modal .item {
    background: #ffffff;
}

.select-add-type .item-title {
    font-size: clamp(1rem, 0.25rem + 1.25vw, 1.5rem);
    text-wrap: balance;
}

.select-add-type .item-text {
    font-size: clamp(0.875rem, 0.6875rem + 0.3125vw, 1rem);
    margin-top: 10px;
}

.item-image {
    width: 66px;
    height: 66px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.add-type-manual .item-image {
    background-image: url(../../images/new-ui/image-manual.svg);
}

.add-type-file .item-image {
    background-image: url(../../images/new-ui/image-file.svg);
}

.add-type-saved .item-image {
    background-image: url(../../images/new-ui/image-saved.svg);
}

.item-content {
    width: calc(100% - 76px);
    flex: 1;
}

@media (hover: hover) {
    .select-add-type .item {
        transition: box-shadow 400ms;
    }

    .select-add-type .item:hover {
        /*box-shadow: 0 3px 20px 0 rgba(41, 38, 34, 0.1);*/
        background: #ffebec;
    }
}

@media (min-width: 960px) {
    .select-add-type:not(.select-add-type-modal) {
        flex-direction: row;
        column-gap: 25px;
    }

    .select-add-type:not(.select-add-type-modal) .item {
        width: calc(33.3333% - 50px / 3);
        flex-direction: column;
        align-items: center;
        padding: 65px 20px;
    }

    .select-add-type:not(.select-add-type-modal) .item-image {
        width: clamp(4.125rem, -1.0313rem + 8.5938vw, 7.5625rem);
        height: clamp(4.125rem, -1.0313rem + 8.5938vw, 7.5625rem);
    }

    .select-add-type:not(.select-add-type-modal) .item-content {
        width: 100%;
    }
}


/* add file modal */
.add-file-step {
    position: relative;
    margin-top: 50px;
    padding: 30px 20px;
    /*box-shadow: 0 3px 20px 0 rgba(41, 38, 34, 0.1);
    background: #ffffff;
    border-radius: 10px;*/
    font-size: 18px;
}

/*.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    border: 1px solid #FFEBEB;
    background: #FBF5F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}*/

.download-file-info-toggle {
    margin-top: 24px;
}

.download-file-info-toggle .toggle-element {
    margin-top: 12px;
    cursor: pointer;
}

.download-file-info-content {
    margin-top: 25px;
}

.step-btn-row,
.step-tips-row {
    margin-top: 15px;
}

.step-tips-row {
    display: flex;
    justify-content: center;
}

.step-tips-content {
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    margin-top: 15px;
}

.step-tips-list {
    padding: 20px 15px;
}

.step-tips-list ol li {
    font-size: 14px;
}

.step-tips-list ol li + li {
    margin-top: 5px;
}

.step-tips-list ol li::marker {
    color: var(--gift-color-orange-2);
}

.download-tips {
    display: inline-flex;
    align-items: center;
    column-gap: 9px;
    cursor: pointer;
}

.upload-xls-container {
    position: relative;
}

.add-file-btn {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 52px;
    opacity: 0;
}

.add-file-btn.v-text-field>.v-input__control>.v-input__slot {
    cursor: pointer;
}

.file-info {
    padding: 13px 20px;
    background: var(--gift-pink-color);
    border-radius: 10px;
    margin-top: 25px;
}

.file-info-wrap {
    display: flex;
    /*align-items: center;*/
    gap: 10px;
}

.file-info-icon {
    width: 24px;
}

.file-info-name {
    width: 200px;
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-info-count,
.file-info-loading {
    font-size: 0.75rem;
}

.reset-xls-file {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.reset-xls-file:hover {
    opacity: 0.8;
}

.file-info-error {
    color: red;
}

.add-file-continue {
    margin-top: 30px;
}

@media (min-width: 960px) {
    .add-file-step {
        padding: 45px 70px;
    }

    .add-file-step:nth-of-type(1) {
        padding-left: 42px;
        padding-right: 42px;
    }

    .add-file-step:nth-of-type(1) > div:not(.step-tips-content) {
        padding-left: 28px;
        padding-right: 28px;
    }

    .step-btn-row,
    .step-tips-row {
        margin-top: 25px;
    }

    .file-info-name {
        width: 270px;
    }
}

/* add saved */
.saved-lists {
    margin-top: 15px;
}

.saved-list-item {
    box-shadow: 0 3px 20px 0 #2926221A;
    padding: 25px 12px;
    margin-top: 15px;
    cursor: pointer;
    transition: all 400ms;
    border-radius: 10px;
}

.saved-list-item:hover {
    background: var(--gift-pink-color);
}

.saved-list-item:nth-of-type(1) {
    margin-top: 10px;
}


.empty-box-image {
    margin-bottom: 50px;
}

@media (max-width: 600px) {
    .saved-list-item {
        background: #ffffff;
    }
}

@media (min-width: 600px) {
    .saved-lists {
        margin-top: 40px;
    }

    .saved-list-item {
        margin-top: 30px;
        padding: 34px;
    }
}

.rtl .download-tips svg {
    transform: scale(-1, 1);
}