body{
background-color: rgb(231, 230, 227);
}
.download-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50vh;
    background: radial-gradient(95% 180% at 5% 100%, #e35c5d, #701616);
    color: white;
    padding-left: 300px;
}

.download-header h1 {
    border-top-width: 50px;
    padding-top: 50px;
    font-size: 4rem;
    font-weight: 800;
    font-style: italic;
    font-family: "Public Sans", sans-serif;
    margin: 0;
    color: white;
    text-align: left;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}

.download-content {
    padding-top: 0;
}

.download-subheader {
    padding-left: 300px;
    padding-top: 100px;
    padding-bottom: 5px;
    margin: 0;
    background-color: rgb(231, 230, 227);
}

.download-subheader h2.download-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3333;
    text-transform: uppercase;
    padding-bottom: 40px;
    margin: 0;
    color: rgb(0, 0, 0);
    text-align: left;
}

.download-container {
    width: 1300px;
    margin-left: 300px;
    color: #fff;
    font-family: "Public Sans", sans-serif;
}

.header-row {
    display: flex;
    background-color: #121111;
    color: #fff;
    font-weight: bold;
    border-bottom: 2px solid #fff;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 0;
}

.header-row>div {
    flex: 1;
    border-right: 1px solid #ccc;
    padding: 50px 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.header-row>div.desc {
    flex: 2;
    text-align: center;
}

.header-row>div:last-child {
    border-right: none;
}

.note-row {
    font-size: 1rem;
    text-transform: uppercase;
    text-align: center;
    padding: 16px;
    color: #ffffff;
    margin-bottom: 0px;
    background-color: #121111;
}

.dl {
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #b32d2d;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(46, 50, 54, 1);
}

.circle-loader {
    width: 48px;
    height: 48px;
    border: 6px solid #fff;
    border-top: 6px solid #ff0000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.data-row {
    display: flex;
    background-color: #f1f1f1;
    color: #000;
    font-weight: 500;
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    border-top: none;
}

.data-row>div {
    flex: 1;
    border-right: 1px solid #ccc;
}

.data-row>div:last-child {
    border-right: none;
}

.data-row>div {
    flex: 1;
    border-right: 1px solid black;
    padding: 16px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}

.data-row>div.Description {
    flex: 2;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-left: 24px;
}

.data-row>div.Description h3 {
    margin: 0;
    font-size: 1.5em;
    font-weight: bold;
    color: #000000;
    text-align: left;
}

.data-row>div.Description p {
    margin: 4px 0 0 0;
    font-size: 1em;
    color: #000000;
    font-weight: bold;
}

.data-row>div:last-child {
    border-right: none;
}

.data-row .Download a {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    font-weight: 700;
    line-height: 1.71429;
    font-size: 0.9375rem;
    text-transform: capitalize;
    font-family: "Public Sans", sans-serif;
    min-width: 64px;
    color: rgb(255, 255, 255);
    background-color: rgb(194, 72, 73);
    box-shadow: rgba(194, 72, 73, 0.24) 0px 8px 16px 0px;
    height: 48px;
    outline: 0px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    margin: 0px;
    text-decoration: none;
    padding: 8px 22px;
    border-radius: 8px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1), color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.data-row .Download a:hover {
    background-color: #701616;
}

.data-row>div.Version {
    flex: 1;
    border-right: 1px solid black;
    padding: 16px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: #000;
    font-weight: 600;
    gap: 4px;
}

.data-row>div.Version span {
    display: block;
    font-size: 0.9rem;
    color: #444;
    font-weight: 400;
}