﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter',-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    font-size: 16px;
    min-width: 320px;
}

.container {
    margin: 0 auto;
    padding: 20px;
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.main-grid > * {
    width: 100%;
}

.insertLicense > * {
    margin-bottom: 10px;
}
.h1 {
    font-weight: bold;
    white-space:nowrap
}

.btn {
    position: relative;
    border-radius: 8px;
    padding: 10px 15px;
    cursor: pointer;
    min-width: 155px;
    font-weight: 600;
    font-size: inherit;
    box-shadow: 4px 4px 0px 0px #000000;
}

.btn-primary {
    background-color: #26F4F5;
    border: 1px solid black;
}

.btn-secondary {
    background-color: #FFFFFF;
    border: 1px solid black;
}

.btn:hover {
    box-shadow: unset;
    top: 4px;
    left: 4px;
}

.input-container {
    position: relative;
    margin-bottom: 20px;
    margin-top: 10px;
}

.input-container input,
.input-container textarea,
.input-container select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    border-radius: 5px;
    font-size: inherit;
    border: 2px solid black;
}

.input-container textarea {
    min-height: 200px;
    resize: vertical;
}

.input-container label {
    position: absolute;
    left: 10px;
    top: 7px;
    color: #999;
    transition: all 0.2s ease-out;
    pointer-events: none;
    padding: 0px 5px;
}

.input-container input:focus+label,
.input-container input:not(:placeholder-shown)+label,
.input-container textarea:focus+label,
.input-container textarea:not(:placeholder-shown)+label,
.input-container select+label {
    top: -11px;
    font-size: 14px;
    color: #333;
    background: #fff;
    border-radius: 8px;
}

.billingInfoAndPayment,
.selectLicenseForm,
.availablePreReleasesPanel,
.availableStableReleasesPanel {
    padding: 20px;
}

.insertLicense {
    padding: 0px 20px;
}

.selectLicenseForm,
.availablePreReleasesPanel,
.availableStableReleasesPanel {
    background-color: #F5F5F5;
}

.table { display: table; table-layout: fixed; width: 100%;}
.table-head { display: table-header-group; }
.table-body { display: table-row-group; }
.table-row { display: table-row; text-decoration: none; cursor: pointer; color: black; }
.table-cell { display: table-cell; }

.table-head .table-cell:nth-child(3) {
    width: 100%;
}

.table-head .table-cell {
    border-bottom: 1px solid #D9D9D9;
    font-weight: bold;
}

.table-cell {
    text-align: center;
    padding: 12px;
    width: 100px;
}

.table-hoverable .table-body .table-row:hover {
    background-color: #cfcfcf;
}

.table-hoverable .table-body .table-row:hover .table-cell {
    text-decoration: underline;
}

.input-group {
    display: flex;
    gap: 10px;
}

.input-group > * {
    flex-grow: 1;
}

.btn-group {
    display: flex;
    gap: 15px;
    flex-direction: row-reverse;
}

.availableLicenseHead {
    text-align: center;
}

.bold-success {
    color: #3EAF3F
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.text-red {
    color: #D90B30;
}

.summary-row:last-child {
    font-size: 20px;
}

.currency {
    font-size: 16px;
}

.product-description p {
    display: inline;
}

.footer-bg-color {
    background: #00202E;
    color: white;
    padding: 0;
}

.footer-container {
    max-width: min(100%, 1443px);
    margin: 0 auto;
    padding: 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    min-height: 90px;
    gap: 20px;
}

.footer-left {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
}

.footer-links {
    flex: 1 1 0;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

    .footer-links a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
        white-space: nowrap;
    }

        .footer-links a:hover {
            color: white;
        }

.brand-and-social {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 8px;
}

.logo{
    width: 250px;
}

.copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    flex-shrink: 0;
    white-space: nowrap;
}

.social-links {
    display: flex;
    gap: 23px;
    align-items: center;
}

    .social-links a {
        width: 28px;
        height: 28px;
        border-radius: 3px;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.2s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

        .social-links a:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .social-links a svg {
            width: 14px;
            height: 14px;
            fill: currentColor;
        }

@media (max-width: 1024px) {
    .footer-links {
        gap: 30px;
    }

        .footer-links a {
            font-size: 13px;
        }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

        .footer-links a {
            font-size: 12px;
        }

    .footer-left {
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: auto;
        gap: 25px;
    }

    .brand-and-social {
        order: 1;
        align-items: center;
        width: 100%;
    }

    .footer-links {
        order: 2;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 25px;
        width: 100%;
    }

    .footer-left {
        order: 3;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 15px;
    }

    .footer-content {
        gap: 20px;
    }

    .footer-links {
        gap: 12px 20px;
    }

        .footer-links a {
            font-size: 12px;
        }

    .social-links {
        gap: 8px;
    }

        .social-links a {
            width: 32px;
            height: 32px;
        }

            .social-links a svg {
                width: 16px;
                height: 16px;
            }

    .copyright {
        font-size: 11px;
    }
}

@media (max-width: 320px) {
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

        .footer-links a {
            font-size: 11px;
        }
}

.img-responsive {
    width: 100%;
    height: auto;
    max-width: 250px;
}

.content {
    grid-area: content;
}

body {
    min-height: 100vh;
    background: #FFF;
}

main {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "header" "content" "footer";
    height: 100vh;
}

footer {
    grid-area: footer;
}

.release-notice {
    color: #000000;
    background-color: #fcf8e3;
    border: 1.5px solid #d9534f;
    padding: 14px 16px 14px 48px;
    margin-top: 16px;
    margin-bottom: 12px;
    position: relative;
    font-size: 1.08em;
    border-radius: 6px;
}

.release-notice:before {
    content: "\26A0";
    position: absolute;
    left: 16px;
    top: 25%;
    transform: translateY(-50%);
    font-size: 1.3em;
    color: #d9534f;
    font-weight: bold;
}

.release-notice strong {
    color: #d9534f;
    margin-right: 4px;
    font-size: 1.12em;
}

.release-notice a:hover {
    color: #d9534f;
    text-decoration: underline;
}

