/* Export Popup */
div.export-popup-header {
    margin-block-start: 30px;
    background-color: aliceblue;
    color: rgb(0, 174, 239); /* @primary */
}
div.export-popup-header h4 {
    font-weight: bold;
}
div.export-popup-content {
    padding: 20px;
}
div.export-popup-content .input-field {
    width: 100%;
}
span.export-import-error {
    padding-inline: 20px;
    padding-block-end: 10px;
    color: red;
}

/* import popup */
.import-popup-header {
    margin-block-start: 30px;
    background-color: aliceblue;
}
.import-popup-header .steps {
    display: flex;
    justify-content: center;
    margin-block: 12px;
    gap: 35px;
    position: relative;
}
.import-popup-header .steps:after {
    content: "";
    width: 180px;
    height: 3px;
    position: absolute;
    background-color: #ccefff;
    top: 14px;
    z-index: 0;
}
.import-popup-header .steps span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ccefff;
    color: white;
    font-weight: bold;
    z-index: 1;
}
.import-popup-header .steps span.active {
    background-color: #29c6ff;
}
.import-popup-content .import-step .step-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: aliceblue;
    color: rgb(0, 174, 239); /* @primary */
    padding-block-end: 5px;
    margin-block-end: 10px;
}
.import-popup-content .import-step .step-header h4 {
    margin-block: 5px 10px;
    font-weight: bold;
}
.import-popup-content .import-step .step-header p {
    text-align: center;
}
.update-code-popup-content,
.import-popup-content .import-step .step-content {
    max-height: 550px;
    overflow: auto;
    padding: 20px;
}
.import-popup-content .import-step .step-content .upload-input-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border: 1px dashed #a6a6a6;
    border-radius: 20px;
    padding-block: 40px 60px;
    cursor: pointer;
}
.import-popup-content .import-step .step-content .upload-input-container.active {
    background-color: #f5faff;
}
.import-popup-content .import-step .step-content .upload-input-container:hover {
    border-color: #020202;
}
.import-popup-content .import-step .step-content .upload-input-container .upload-icon {
    font-size: 40px;
    color: #020202;
}
.import-popup-content .import-step .step-content .upload-input-container .upload-title {
    font-size: 18px;
    color: #020202;
}
.import-popup-content .import-step .step-content .upload-input-container .upload-desc {
    font-weight: normal;
    width: 360px;
    text-align: center;
    color: #aeaeae;
}
.update-code-popup-content .input-field.full-width,
.import-popup-content .import-step .step-content .input-field.full-width {
    width: 100%;
}
.import-popup-content .import-step .step-content .input-field .capitalize {
    text-transform: capitalize;
}
.update-code-popup-content .input-field .error,
.import-popup-content .import-step .step-content .input-field .error {
    color: red;
    font-size: 12px;
}