.downloadContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 40px;
    max-width: 320px;
    min-height: 100vh;
    background-color: #fff;
}

.downloadContainer span {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 14px;
    font-family: sans-serif;
}

@media screen and (min-width: 568px) {
    .downloadContainer {
        max-width: 568px;
        min-height: 320px;
        flex-direction: row;
        gap: 100px;
    }
}

.downloadPage {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f0f4f8;
    font-family: sans-serif;
    font-size: 14px;
}

/* .progressElement.hidden {
    visibility: hidden;
} */

.loadRingContainer.hidden {
    visibility: hidden;
}

.loadRingContainer {
    fill: none;
    stroke-width: 10;
    transform: rotate(-90deg); 
}

.loadRingContainer.animated {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(270deg); }
}

.circleAll {
    stroke: #e6e9ef;
}

.circleFilled {
    stroke: #005cff;
}

.controlPanelForRingProgress {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.controlItemForRingProgress {
    display: flex;
    align-items: center;
    gap: 10px;
}

input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.controlItemForRingProgress input {
    width: 50px;
    height: 25px;
    margin: 0;
    padding: 0;
}

.controlItemForRingProgress input[type="number"] {
    border-radius: 15px;
    border: 1px solid #000;
    text-align: center;
}

.controlItemForRingProgress input[type="checkbox"] {
    appearance: none;
    background-color: #e6e9ef;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
}

.controlItemForRingProgress input[type="checkbox"]:checked {
    background-color: #005eff;
}

.controlItemForRingProgress input[type="checkbox"]::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
    top: 2.5px;
    left: 2px;
}


.controlItemForRingProgress input[type="checkbox"]:checked::before {
    transform: translateX(25px);
}