#manage-bucket {
    position: relative;
}

#manage-bucket.loading:before {
    content: '';
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    position: absolute;
    background-color: rgba(255, 255, 255, 0.6);
    z-index: 9;
}

.enpoint-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.enpoint-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #FFFFFF;
    border: 1px solid #D9DADD;
    border-radius: 8px;
    flex: 1 1 calc((100% - 48px) / 4);
    max-width: calc((100% - 48px) / 4);
    cursor: pointer;
}

.enpoint-item:hover {
    background: #F0F4F7;
}

.enpoint-item.enpoint-selected {
    background: #DFF7EE;
    border-color: #017B4C;
}

.enpoint-item a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    position: relative;
    font-weight: bold;
    font-size: 14px;
    flex-direction: column;
    text-decoration: none;
    color: #404852;
    outline: 0 !important;
    box-shadow: none;
    border: 0 !important;
}

.enpoint-selected a {
    color: #ff8726;
}

.enpoint-wrap h3 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.provider_icon {
    position: absolute !important;
    right: 10px;
    top: 10px;
    width: auto !important;
    z-index: 99;
}

.provider_change_icon {
    position: relative !important;
    color: #ff8726;
    margin-left: 5px;
    top: auto;
    right: auto;
    outline: 0 !important;
    box-shadow: none !important;
}

.enpoint-item input {
    display: none;
}

.enpoint-item img {
    height: 64px;
    width: 64px;
    object-fit: cover;
    padding: 0;
    border-radius: 4px;
}

.enpoint-item .enpoint-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.enpoint-item .enpoint-name {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: #636470;
}

.enpoint-item .enpoint-connect-btn {
    display: flex;
    gap: 4px;
    border: 1px solid #0173AB;
    border-radius: 4px;
    color: #0173AB;
    background: #FFFFFF;
    cursor: pointer;
    padding: 8px 16px;
    height: 32px;
    width: fit-content;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
}

.enpoint-item.enpoint-selected .enpoint-connect-btn {
    background: #01AB6A;
    border-color: #01AB6A;
    color: #FFFFFF;
}

.enpoint-item.enpoint-selected .enpoint-connect-btn img {
    width: 16px;
    height: 16px;
}

.aws3-connect-wrap {
    display: flex!important;
    flex-wrap: wrap;
    justify-content: space-between;
}

.aws3-connect-wrap .aws3-client-wrap {
    width: calc(50% - 12px);
    margin-bottom: 12px;
}

.ju-settings-option {
    position: relative;
}

.ju-settings-option.loading:before {
    background: rgba(255, 255, 255, 0.4);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    content: '';
}
.bucket_error_msg {
    font-size: 12px;
    color: #f00;
}

.copy_section_wrap {
    margin: 10px 0 20px 0; width: 100%; display: inline-block
}

.copy_section_wrap > button {
    padding: 12px 15px;
}

.wpmf-modal {
    position: fixed;
    z-index: 9999;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
}
.wpmf-modal-content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 6px;
    max-width: 400px;
    text-align: center;
    margin: 10% auto;
}
.wpmf-modal-actions {
    margin-top: 20px;
}
.wpmf-modal-actions button {
    margin: 0 5px;
    padding: 8px 16px;
    cursor: pointer;
    outline: 0 !important;
    border: 1px solid #0173AB;
    border-radius: 8px;
    box-shadow: none !important;
}

#confirmChangeProvider {
    background-color: #0173AB;
    color: #FFFFFF;
}
#cancelChangeProvider {
    color: #0173AB;
    background: #FFFFFF;
}

@media (max-width: 1480px) {
    .enpoint-item {
        flex: 1 1 calc((100% - 32px) / 3);
        max-width: calc((100% - 32px) / 3);
    }
}

@media (max-width: 1200px) {
    .enpoint-item {
        flex: 1 1 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
}

@media (max-width: 768px) {
    .enpoint-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}