.input-group-append {
    position: relative;
}
.copyicon {
    font-size: 12px;
    width: 26px;
    position: absolute;
    right: 0;
    padding: 6px;
    height: 100%;
    display: flex;
    background: white;
    border: 1px solid;
    cursor: pointer;
}
#ConfigSelector {
    max-height: 425px;
    overflow-y: auto;
    padding: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
}
.sync_form_wrapper{
    min-height: 150px;
}
.select_all_wrapper {
    padding: 0 16px;
}

.backup_list{
    display: flex;
    flex-direction: row;
    gap: 8px;
    .backup_list_item{
        border: unset;
        padding: unset;
    }
}

#backupModal{
    // max-width: 600px;
    // width: max-content;
    .modal-dialog{
        max-width: 700px;
    }
    .modal-header{
        button{
            font-size: 24px;
        }
    }
    .modal-body{
        max-height: 500px;
        overflow: auto;
        // .notification-wrapper{
        //     position: sticky;
        //     top: 0px;
        //     left: 0px;
        // }
    }
    .modal-footer{
        display: flex;
        justify-content: space-between;
        flex-wrap: unset;
        gap: 24px;
        .info-wrapper{
            color: red;
            display: flex;
            font-size: 14px;
            font-weight: 400;
            line-height: 17px;
            justify-content: center;
            align-items: flex-start;
            span{
                margin-top: 2px;
            }

        }
    }
}

.syncprogresstracker{
    max-width: 210px;
    width: 100%;
}
.submittion-progress_wrapper{
    gap: 24px;
    .progress-bar{
        background-color:#28A745;
    }
}

.sitesync_key_toast{
    margin-top:110 !important;
    bottom: unset;
}

.connection-steps {
    .step-status {
        width: 20px;
        display: inline-block;
    }
    .spinner-border-sm {
        width: 1rem;
        height: 1rem;
    }
    .step {
        &-loading {
            & .fa-check, & .fa-times {
                display: none;
            }
            .step-text{
                color: #4c5a73;
            }
        }
        &-success {
            & .loading-spinner, & .fa-times {
                display: none;
            }
            .step-text{
                color: #4c5a73;
            }
        }
        &-failure {
            & .loading-spinner, & .fa-check {
                display: none;
            }
            .step-text{
                color: red;;
            }
        }
    }
}

.revisions-bar {
  font-family: Arial, sans-serif;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  max-width: 700px;
  background-color: #f9f9f9;
}

.revisions-bar h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #333;
}

// .revisions-slider {
//   position: relative;
//   margin-bottom: 20px;
// }

// #revisions-range {
//   width: 100%;
//   margin: 30px 0;
//   appearance: none;
//   background: #ccc;
//   height: 1px;
//   border-radius: 5px;
//   outline: none;
// }

// #revisions-range::-webkit-slider-thumb {
//   appearance: none;
//   width: 30px;
//   height: 30px;
//   background: #0073aa;
//   border-radius: 50%;
//   cursor: pointer;
// }

// .revisions-bullets {
//   list-style: none;
//   padding: 0;
//   margin: 0;
// }

// .revision-text {
//   font-size: 1em;
//   color: #666;
//   opacity: 0.5;
// }

// .revision-text.selected {
//   font-weight: bold;
//   color: #0073aa;
//   opacity: 1;
// }
// .revisions-ticks {
//   margin-top: 10px;
// }

.no-connection-overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    border-radius: 8px;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    .no-connection-overlay-content-wrapper{
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .local_sitesync{
        .tab-content {
            #Connection, #Sync{
                .row{
                    flex-direction: column-reverse;
                    #secureKeyGroup{
                        margin-bottom: 16px;
                    }
                }
            }
        }
    }
}
