.checker-container {
    display: flex;
    justify-content: space-between;
    margin: 20px auto;
}

.block-left {
    margin-right: 20px;
    background-color: var(--card);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--bottom-line-table);
}

.block-left .header .title {
    font-weight: 700;
    font-size: 2em;
    margin-bottom: 20px;
    color: #813bde;
    text-align: center;
    box-shadow: 0 0 5px 4px rgb(129 59 222);
}

.block-left .content .text {
    margin-bottom: 10px;
    color: #b299f7;;
    position: relative;
    padding-left: 20px;
}

.block-left .content .text::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-custom);
}

.block-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.block {
    background-color: var(--card);
    padding: 100px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--bottom-line-table);
}

.block-header {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.download-icon {
    height: 60px;
    stroke: #f75353;
    fill: #813bde;
}

.block-title {
    font-size: 20px;
    color: var(--text-default);
    margin-top: 3px;
}

.block-description {
    font-size: 13px;
    color: var(--text-custom);
    margin-bottom: 20px;
}

.block .download-button,
.block .details-button {
    font-weight: 500;
    background-color: var(--button);
    color: var(--text-default);
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    width: 70%;
}

.block .download-button:hover,
.block .details-button:hover {
    background-color: var(--button-hover);
}

.slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: auto;
}

.slider-container {
    width: 0px;
    overflow: hidden;
    flex-grow: 1;
    height: 200px;
    scroll-behavior: smooth;
}

.slider {
    display: flex;
    transition: transform 0.3s ease-in-out;
    gap: 10px;
    height: 99%;
    margin-left: px;
}

.slider img {
    height: 99%;
    object-fit: cover; 
    flex-shrink: 0;
    width: auto; 
    border-radius: 14px;
    opacity: 0.7;
    filter: blur(1px);
    transition: opacity 0.7s ease, filter 0.7s ease;
}

.slider img:hover {
    opacity: 1;
    filter: blur(0px);
}

.slider-control-1 {
    height: 200px;
    background-color: #593a83;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 30px 0px 0px 30px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.slider-control-2 {
    height: 200px;
    background-color: #593a83;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 0px 30px 30px 0px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.slider-control-1:hover,
.slider-control-2:hover {
    background-color: var(--button-hover);
}

.modal {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    z-index: 9998;
    justify-content: center;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--card);
    margin: 15% auto;
    padding: 20px;
    border: none;
    width: 400px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 2px solid var(--bottom-line-table);
}

.modal-content h2 {
    color: var(--text-custom);
    margin-bottom: 20px;
}

.modal-content p {
    color: var(--text-default);
    margin: 10px 0;
}

.modal-info {
    display: flex;
    flex-direction: column;
    align-items: space-around;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--text-default);
}

.info-item span:first-child {
    color: var(--text-custom);
}

.download-btn,
.modal .download-button {
    background-color: var(--button); 
    color: white; 
    padding: 15px 25px; 
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase; 
    margin-top: 10px;
    width: 100%;
    font-size: 16px; 
    font-weight: 600; 
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

.download-btn:hover,
.modal .download-button:hover {
    background-color: var(--button-hover);
    transform: translateY(-2px); 
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); 
}

.download-btn:active,
.modal .download-button:active {
    background-color: #3e8e41; 
    transform: translateY(1px); 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}

.close {
    color: var(--text-default);
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: var(--text-custom);
    text-decoration: none;
    cursor: pointer;
}

.details-modal .modal-content {
    text-align: left;
}

.details-modal .modal-content h2 {
    color: var(--text-custom);
    margin-bottom: 10px;
    text-align: center;
}

.details-modal .modal-content ul {
    list-style-type: '+ ';
    color: var(--text-default);
}

.details-modal .modal-content ul li {
    margin-bottom: 5px;
    font-size: 14px;
}

.details-modal .modal-content ul li span {
    color: var(--text-custom);
}

.checker_card {
    background: var(--card);
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
    font-family: 'SF Pro Display', sans-serif;
}

.checker-installer:hover {
    background-color: #a446d0;
    transform: translateY(-5px);
    box-shadow: 0 0 10px transparent, 0 0 25px #57d5d3, 0 0 46px #578fd5;
}

.download-btns {
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.last_save {
    display: flex;
    font-weight: 500;
    font-size: 16px;
    align-items: center;
    gap: 7px;
    justify-content: center;
    cursor: help;
}

.last_save>svg {
    height: 21px;
    fill: var(--red);
}
.download-button>svg {
    height: 22px;
}

@media (max-width:713px) {
  .download-btns {
    flex-direction: column;
    width: 100%;
  }
}