body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    height: 100vh;
}

.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
}

.logo-section {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
  width: 22px;
  margin-right: 3px;
}

.icon img {
    width: 35px;
}

.container {
    background-color: #fff;
    border-radius: 8px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    border-bottom: 1px solid #e8eaef;
}

.step {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-family: "Inter";
    font-weight: bold;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #fff;
    margin-right: 8px;
    font-weight: bold;
}

.step.active .step-number {
    background-color: #007bff;
}

.step-divider {
    font-size: 16px;
    color: #ddd;
}

h3 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 10px;
    font-family: "Inter";
    font-weight: bold;
}

p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.next-button {
    background-color: #000;
    color: #fff;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: "Inter";
}

.next-button:hover {
    background-color: #0056b3;
}

.blue-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.blue-link:hover {
    text-decoration: underline;
}

/* Styling for the header*/



.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.header-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    max-width: 36rem;
    background-color: rgba(255, 255, 255, 0);
    z-index: 1000;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    margin: auto;
}

.header-sticky-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-sticky-content-logo {
    font-weight: 700;
    font-size: 19px;
    color: black;
    font-family: "Inter", sans-serif;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
}

.nav-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-sticky-content {
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        font-size: 14px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .header-sticky {
        width: auto;
    }
    .main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 100px;
    margin:15px;
    width: auto;
}
}


.divider {
    height: 1px;
    background-color: #ddd;
    margin: 0;
}

@media (max-width: 768px) {
    .dropdown-content {
        right: 0;
        /* Aligns the dropdown to the right edge of the button */
        left: auto;
        /* Resets left positioning */
        max-width: 100vw;
        /* Ensures the dropdown doesn’t exceed the screen width */
    }
}

/* Step transitions */
.step-content {
    display: none;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 50px;
}

.step-content.active {
    display: block;
    text-align: left;
}

/* Features List */
.features {
    text-align: left;
    font-size: 14px;
    color: #333;
    display: none;
    background: #f7f8fa;
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.features.active {
    display: block;
}

.features ul {
    padding: 0;
    list-style: none;
}

.features ul li {
    margin-bottom: 5px;
    font-size: 13px;
}

.features ul li:before {
    content: '\f00c';
    /* Font Awesome checkmark */
    font-family: 'Font Awesome 5 Free';
    /* Ensure you're using the correct Font Awesome family */
    font-weight: 900;
    /* Solid weight for checkmark icon */
    margin-right: 8px;
}

/* Custom radio buttons */
.package-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    /* Dodato zbog pozicioniranja checkmark-a */
}

.package-option:hover {
    border-color: #007bff;
}

.package-option input {
    display: none;
}

.package-option input:checked+label {
    border: 1px solid #007bff;
    /* Border oko celog paketa */
    background-color: #eef6ff;
    position: relative;
}

svg.size-2 {
    width: 25px;
    height: 25px;
}

.package-option input:checked+label .icon {
    color: #007bff;
}

.package-option input:checked+label:before {
    content: '\f00c';
    /* Font Awesome checkmark */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: white;
    background-color: #007bff;
    border-radius: 50%;
    padding: 5px;
    display: inline-block;
    position: absolute;
    right: 15px;
    font-size: 14px;
}

.package-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    border-radius: 8px;
    padding: 15px;
    border: 2px solid transparent;
}

.package-option label .icon {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding: 5px;
}

.package-option label .content {
    flex-grow: 1;
}

.package-option label .title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000000;
    font-family: "Inter";
}

.package-option label .description {
    font-size: 14px;
    color: #666;
}

/* Styling for form inputs on step 2 */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    display: block;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    background-color: #f7f7f7;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #007bff;
    background-color: #fff;
}

/* Fix for responsive layout on smaller screens */
@media (max-width: 768px) {
    .form-group input {
        padding: 10px;
        font-size: 14px;
    }
}

/*Form CSS*/
.left-section {
    max-width: 550px;
    flex: 1 1 100%;
    margin-bottom: 30px;
}

.left-section h1 {
    font-size: 27;
    margin: auto;
    line-height: 1.2;
    color: #333;
    text-align: center;
    width: 100%;
    font-family: 'Encode Sans';
    font-weight: 900;
}

.left-section p {
    font-size: 16px;
    margin: 20px 0 30px 0;
    color: #212121;
    text-align: center;
    width: 100%;
    max-width: 300px;
    margin: auto;
    padding-bottom: 20px;
    padding-top: 10px;
    line-height: 25px;
}

.badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid #f7f7f7;
    margin-bottom: 25px;
}

.badge {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 14px;
    color: #9d9d9d;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.badge svg {
    margin-right: 7px;
    width: 20px;
    height: 20px;
}


.avatars-logo img {
    width: 80%;
    margin: auto;
    display: flex;
    margin-top: 20px;
}

img.payment-icons {
    width: 90%;
    padding-top: 20px;
    margin: auto;
    display: flex;
}

img.checkout-logo {
    width: 90px;
    padding-bottom: 20px;
    margin: auto;
    display: flex;
    margin-top: -70px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14.6px;
    background-color: #f7f7f7;
    box-sizing: border-box;
    font-family: 'Inter';
}

.form-group.inline-group {
    display: flex;
    gap: 10px;
}

.form-group .inline-group input {
    flex: 1;
}

.payment-options {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 20px;
    background: #f7f7f7;
    border-radius: 10px;
    padding: 5px;
    position: relative;
}

.payment-options button {
    padding: 12px 20px;
    border: none;
    background-color: transparent;
    color: #818181;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    width: 48%;
    font-family: 'Inter';
    position: relative;
}

.payment-options button.active {
    background-color: #ffffff;
    color: #1e1e1e;
    --tw-shadow: 0px 0px 0px 1px rgba(10, 10, 46, .16) inset, 0px 1px 1px rgba(10, 10, 11, .06);
    --tw-shadow-colored: inset 0px 0px 0px 1px var(--tw-shadow-color), 0px 1px 1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.card-details,
.epin-details {
    display: none;
    margin-top: 15px;
}

.card-details .form-group,
.epin-details .form-group {
    margin-bottom: 10px;
}

.form-group.card-input {
    position: relative;
}

.form-group.card-input img {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 24px;
}

.contact-button {
    background-color: #007bff;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    text-align: center;
    margin-top: 15px;
    font-family: 'Inter';
}

.contact-button:hover {
    background-color: #0056b3;
}

.checkout-summary {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 16px;
    color: #333;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dddddd6b;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 18px;
    margin-top: 15px;
    padding-top: 15px;
    color: #000;
}
.support_text.pt-10 {
  color: #0b0b0b6b;
  margin-top: 10px;
  font-size: 12px;
}
.agreement-text {
    font-size: 12px;
    color: #000000bf !important;
    text-align: center;
    margin-top: 15px;
}
p.agreement-text a {
  color: #000000bf;
  text-decoration: none;
}
p.agreement-text {
    max-width: 100%;
    font-size: 12px;
}

.agreement-text .link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.agreement-text .link:hover {
    text-decoration: underline;
}

.discount-label {
    display: none;
    position: absolute;
    top: -7px;
    right: -20px;
    background: #ffead8;
    padding: 3px 5px;
    border-radius: 3px;
    color: #ed7b15;
    border: 1px solid #ed7b15;
    font-size: 9px;
    font-weight: bold;
    z-index: 10;
}

.epin-input {
    position: relative;
}

.epin-input img.epin-icon {
    position: absolute;
    right: 10px;
    top: 65%;
    transform: translateY(-50%);
    height: 25px;
    pointer-events: none;
    /* Omogućava unos teksta bez uticaja slike */
}

@media (max-width: 768px) {
    .form-group.inline-group {
        flex-direction: column;
        gap: 10px;
    }

    .payment-options {
        flex-direction: column;
        gap: 10px;
    }

    .payment-options button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .left-section h1 {
        font-size: 28px;
    }

    .right-section {
        padding: 25px
    }

    .left-section p {
        font-size: 16px;
    }

    .form-group input,
    .form-group select {
        padding: 10px;
        font-size: 14px;
    }

    .contact-button {
        font-size: 14px;
        padding: 10px;
    }

    img.checkout-logo {
        width: 85px;
    }

    .badges {
        justify-content: center;
    }

    p.agreement-text {
        max-width: 100%;
        font-size: 12px;
        line-height: normal;
    }

    .badge {
        padding: 8px 10px;
        font-size: 12px;
    }
}

.steps .step {
    cursor: pointer !important;
}

.d-none {
    display: none;
}

.text--danger {
    color: #cf0f0f;
}

.text--success {
    color: #168124;
}

.card-js input:focus,
.card-js select:focus {
    box-shadow: unset;
    -webkit-box-shadow: unset;

}

.card-details .icon {
    display: none;
}

.card-details input {
    padding-left: 12px !important;
}

.pt-10 {
    padding-top: 10px;
}

.mail-to {
    text-decoration: none;
    color: unset;
}

