@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /*  Accent Colours */
    --mainAccentColour: #8c38db;
    --mainAccentColourHover: rgba(140, 56, 219, 0.1);

    /*  Borders */
    --thinBorder: rgb(210, 210, 210);

    /*  Text Colours */
    --paragraphTextColour: rgb(119, 119, 119);

    /*  Text Sizes */
    --paragraphTextSize: 0.9rem;

    /*  Box Shadows */
    --smallBoxShadow: inset 0 1px 2px #ffffff00, 0 1px 2px #00000030, 0 2px 4px #00000015;
    --mediumBoxShadow: inset 0 1px 2px #ffffff10, 0 1px 2px #00000030, 0 2px 4px #00000015;
    --LargeBoxShadow: inset 0 1px 2px #ffffff30, 0 1px 2px #00000030, 0 2px 4px #00000015;
}

* {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    color: black;
}

body {
    position: relative;
    overflow-x: hidden;
}

p {
    font-size: var(--paragraphTextSize);
    font-weight: 350;
    letter-spacing: 0.2px;
    color: var(--paragraphTextColour);
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

button {
    cursor: pointer;
}

/*  Common Classes */

.main_header h2 {
    width: max-content;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: var(--paragraphTextSize);
    font-weight: 500;
    box-shadow: var(--smallBoxShadow);
    background-color: white;
}

.main_header h1 {
    margin: 0.5rem 0 0 1rem;
    font-size: 2rem;
    font-weight: 600;
}

.main_header p {
    margin-left: 1rem;
}

.text_shimmer {
    background: linear-gradient(to right, #d9b0ff, #b57fe7, #8c38db, #8c38db, #b57fe7, #d9b0ff);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 2.5s linear infinite;
}

.hover_label_container {
    padding: 0.4rem 0.6rem;
    position: absolute;
    transform: scale(0.6);
    transform-origin: center;
    z-index: 10000;
    opacity: 0;
    border-radius: 0.25rem;
    background-color: black;
    transition: opacity 0.15s ease, transform 0.15s ease;
    pointer-events: none;
}

.hover_label_container.active {
    opacity: 1;
    transform: scale(1);
}

.hover_label_container .hover_label_text {
    position: relative;
    top: -2px;
    font-size: 0.7rem;
    font-weight: 500;
    color: white;
}

.hover_label_arrow {
    width: 8px;
    height: 8px;
    position: absolute;
    transform: rotate(45deg);
    background-color: black;
}

.hover_label_container[data-position="top"] .hover_label_arrow {
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.hover_label_container[data-position="bottom"] .hover_label_arrow {
    top: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.hover_label_container[data-position="left"] .hover_label_arrow {
    right: -4px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hover_label_container[data-position="right"] .hover_label_arrow {
    left: -4px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.qr_preview_loader_container {
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
}

.qr_preview_loader {
    width: 45px;
    height: 45px;
    border: 5px solid white;
    border-radius: 50%;
    border-bottom-color: transparent;
    animation: qr_preview_loader_rotation 1s linear infinite;
}

/* //////////////////////////////////////////////// */

.main_top_nav {
    width: 100%;
    padding: 1rem 1rem 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.main_top_nav_container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 2rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(5px);
    box-shadow: var(--LargeBoxShadow);
    background-color: rgba(255, 255, 255, 0.75);
}

.main_top_nav_left {
    padding: 0.75rem 0 0.75rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.main_top_nav_left_hamburger {
    display: none;
    cursor: pointer;
}

.main_top_nav_left_hamburger svg {
    transform: translateY(2px)
}

.main_top_nav_left_logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main_top_nav_left_logo svg {
    width: 35px;
    height: 35px;
}

.main_top_nav_left_logo div h1 {
    font-size: 1.25rem;
    font-weight: 500;
}

.main_top_nav_left_logo div p {
    font-size: 0.7rem;
    font-weight: 350;
}

.main_top_nav_middle {
    padding: 0 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_top_nav_middle_links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.main_top_nav_middle_link {
    position: relative;
    top: 3px;
}

.main_top_nav_middle_link a {
    height: 61px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_top_nav_middle_link a:hover p {
    color: var(--mainAccentColour);
}

.main_top_nav_middle_link a p {
    font-size: 0.8rem;
    font-weight: 350;
    color: black;
}

.main_top_nav_middle_link_underline {
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 1px;
    left: 0;
    z-index: 100;
    border-radius: 3rem;
    background-color: var(--mainAccentColour);
    transition: width 0.2s ease;
}

.main_top_nav_middle_link:hover .main_top_nav_middle_link_underline {
    width: 100%;
}

.main_top_nav_right {
    padding: 0.75rem 0.75rem 0.75rem 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.main_top_nav_right_unsigned {
    display: none;
    align-items: center;
    gap: 1rem;
}

.main_top_nav_right_unsigned a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main_top_nav_right_unsigned p {
    color: var(--mainAccentColour);
    cursor: pointer;
}

.main_top_nav_right_unsigned button {
    padding: 0.3rem 0.6rem;
    border: 1px solid var(--mainAccentColour);
    border-radius: 0.25rem;
    background-color: white;
    color: var(--mainAccentColour);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.main_top_nav_right_unsigned button:hover {
    background-color: var(--mainAccentColourHover);
}

.main_top_nav_right_signed {
    display: none;
    align-items: center;
    gap: 1rem;
}

.main_top_nav_right_signed a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main_top_nav_right_signed_dashboard {
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--mainAccentColour);
    border-radius: 0.5rem;
    background-color: var(--mainAccentColourHover);
    cursor: pointer;
}

.main_top_nav_right_signed_dashboard p {
    color: var(--mainAccentColour);
}

.main_top_nav_right_signed_dashboard svg {
    fill: var(--mainAccentColour);
}

.main_top_nav_right_signed_avatar {
    width: 35px;
    height: 35px;
    position: relative;
    border-radius: 50%;
    background-color: var(--thinBorder);
    cursor: pointer;
}

.main_top_nav_right_signed_avatar img {
    border-radius: 50%;
}

.main_top_nav_right_signed_avatar_dropdown {
    width: 20rem;
    padding: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    border-radius: 0.5rem;
    box-shadow: var(--LargeBoxShadow);
    background-color: white;
}

.main_top_nav_right_signed_avatar_dropdown.active {
    display: flex;
}

.main_top_nav_right_signed_avatar_dropdown_header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.main_top_nav_right_signed_avatar_dropdown_header_avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--thinBorder);
}

.main_top_nav_right_signed_avatar_dropdown_header_user_info h3 {
    font-weight: 500;
}

.main_top_nav_right_signed_avatar_dropdown_bottom {
    padding-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-top: 1px solid var(--thinBorder);
    cursor: pointer;
}

.main_top_nav_right_signed_avatar_dropdown_bottom h2 {
    font-size: var(--paragraphTextSize);
    font-weight: 500;
    color: var(--paragraphTextColour);
}

.main_top_nav_right_signed_avatar_dropdown_bottom svg {
    fill: var(--paragraphTextColour);
}

.hero_section {
    padding-top: 8rem;
}

.hero_section_header {
    padding: 0 3rem 10rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    text-align: center;
}

.hero_section_header_top_new_additions {
    padding: 0.4rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    border-radius: 0.3rem;
    box-shadow: var(--LargeBoxShadow);
    background-color: white;
}

.hero_section_header_top_new_additions p {
    font-size: 0.7rem;
}

.hero_section_header_top_new_additions p span {
    color: var(--paragraphTextColour);
}

.hero_section_header_top_new_additions svg {
    fill: rgb(255, 174, 0);
}

.hero_section_header_top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.hero_section_header_top h1 {
    max-width: 50rem;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.1;
}

.hero_section_header_top p {
    max-width: 28rem;
    letter-spacing: 0.2px;
    line-height: 20px;
}

.hero_section_header_top p:last-child {
    color: var(--mainAccentColour);
}

.hero_section_header h2 {
    max-width: 50rem;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.1;
}

.hero_section_header_pills {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero_section_header_pill {
    padding: 0.3rem 0.6rem 0.3rem 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.25rem;
    box-shadow: var(--smallBoxShadow);
    background-color: rgb(255, 255, 255);
}

.hero_section_header_pill:nth-child(1) svg path {
    stroke: rgb(255, 174, 0);
}

.hero_section_header_pill:nth-child(2) svg path {
    fill: rgb(79, 211, 255);
}

.hero_section_header_pill:nth-child(3) svg path {
    fill: rgb(34, 255, 0);
}

.hero_section_header_pill svg {
    width: 17px;
    height: 17px;
}

.hero_section_header_pill p {
    font-size: 0.8rem;
    font-weight: 400;
    color: black;
}

.hero_section_main_container {
    width: 100vw;
    position: relative;
}

.hero_section_main_track {
    width: 300vw;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero_section_main_container.show_main .hero_section_main_track {
    transform: translateX(0);
}

.hero_section_main_container.show_customise .hero_section_main_track {
    transform: translateX(calc(-100vw - 35px));
}

.hero_section_main_container.show_dynamic_settings .hero_section_main_track {
    transform: translateX(calc(-200vw - 67.5px));
}

.hero_section_main_customise,
.hero_section_main,
.hero_section_main_dynamic_settings {
    width: calc(100vw - 15px);
    padding: 0 3rem 1rem 3rem;
    flex-shrink: 0;
}

.hero_section_main_customise {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero_section_main_customise_templates {
    width: 100%;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--LargeBoxShadow);
    background-color: white;
}

.hero_section_main_customise_templates_header {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.hero_section_main_customise_templates_header div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero_section_main_customise_templates_header div svg {
    fill: var(--mainAccentColour);
}

.hero_section_main_customise_templates_header div h1 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--mainAccentColour);
}

.hero_section_main_customise_bottom {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 2rem;
    position: relative;
}

.hero_section_main_customise_bottom_preview {
    max-height: 37.1rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
    border-radius: 1rem;
    box-shadow: var(--LargeBoxShadow);
    background-color: white;
}

.hero_section_main_customise_bottom_preview_header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: start;
}

.hero_section_main_customise_bottom_preview_header_back button {
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    border: none;
    border-radius: 0.5rem;
    background-color: var(--mainAccentColour);
}

.hero_section_main_customise_bottom_preview_header_back button p {
    color: white;
}

.hero_section_main_customise_bottom_preview_header h2 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--paragraphTextColour);
}

.hero_section_main_customise_bottom_preview_content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border-radius: 0.5rem;
}

.hero_section_main_customise_bottom_preview_img {
    width: 100%;
    height: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    border: 2px dashed var(--thinBorder);
    border-radius: 0.5rem;
    text-align: center;
}

.hero_section_main_customise_bottom_preview_img svg {
    stroke: var(--paragraphTextColour);
}

.hero_section_main_customise_bottom_preview_img p {
    max-width: 9rem;
}

.hero_section_main_customise_bottom_preview_img img {
    object-fit: contain;
}

.hero_section_main_customise_bottom_preview_img_proper {
    max-height: 14rem;
    display: none;
    object-fit: contain;
}

.hero_section_main_customise_bottom_preview_actions {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.hero_section_main_customise_bottom_preview_actions button {
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--thinBorder);
    border-radius: 0.5rem;
    background-color: white;
}

.hero_section_main_customise_bottom_preview_actions button:first-child {
    border: 1px solid var(--thinBorder);
}

.hero_section_main_customise_bottom_preview_actions button:hover {
    border: 1px solid var(--mainAccentColour);
    background-color: var(--mainAccentColourHover);
}

.hero_section_main_customise_bottom_preview_actions button svg {
    width: 27px;
    height: 27px;
    fill: var(--paragraphTextColour);
}

.hero_section_main_customise_bottom_preview_actions button:hover svg {
    fill: var(--mainAccentColour);
}

.hero_section_main_customise_bottom_preview_actions_download {
    position: relative;
}

.hero_section_main_customise_bottom_preview_actions_download_left {
    padding: 0.5rem;
    display: flex;
    align-items: center;
}

.hero_section_main_customise_bottom_preview_actions_download_left p {
    color: white;
}

.hero_section_main_customise_bottom_preview_actions_download_right {
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid var(--thinBorder);
    border-radius: 0 0.5rem 0.5rem 0;
}

.hero_section_main_customise_bottom_preview_actions button:hover .hero_section_main_customise_bottom_preview_actions_download_right {
    border-left: 1px solid var(--mainAccentColour);
}

.hero_section_main_customise_bottom_preview_actions_download_formats {
    width: 12.5rem;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 4rem;
    left: 0;
    z-index: 100;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: var(--LargeBoxShadow);
    background-color: white;
}

.hero_section_main_customise_bottom_preview_actions_download_formats.active {
    display: flex;
}

.hero_section_main_customise_bottom_preview_actions_download_format {
    height: 2.5rem;
    padding: 0 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    border: 1px solid transparent;
}

.hero_section_main_customise_bottom_preview_actions_download_format:first-child {
    border-radius: 0.5rem 0.5rem 0 0;
}

.hero_section_main_customise_bottom_preview_actions_download_format:last-child {
    border-radius: 0 0 0.5rem 0.5rem;
}

.hero_section_main_customise_bottom_preview_actions_download_format.active {
    border: 1px solid rgb(200, 200, 200);
}

.hero_section_main_customise_bottom_preview_actions_download_format.active svg {
    display: block;
    fill: var(--mainAccentColour);
}

.hero_section_main_customise_bottom_preview_actions_download_format:hover {
    background-color: rgb(230, 230, 230);
}

.hero_section_main_customise_bottom_preview_actions_download_format div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero_section_main_customise_bottom_preview_actions_download_format div h3 {
    font-size: var(--paragraphTextSize);
    font-weight: 500;
}

.hero_section_main_customise_bottom_preview_actions_download_format div p {
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.2px;
}

.hero_section_main_customise_bottom_preview_actions_download_format svg {
    display: none;
}

.hero_section_main_customise_bottom_preview_actions_save p {
    color: white;
}

.hero_section_main_customise_bottom_preview_actions_dynamic_settings p {
    color: white;
}

.hero_section_main_customise_bottom_settings {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero_section_main_customise_bottom_setting {
    height: 3.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: var(--LargeBoxShadow);
    background-color: white;
    transition: height 0.3s ease;
}

.hero_section_main_customise_bottom_setting.active {
    height: 10rem;
}

.hero_section_main_customise_bottom_settings_qr_styles {
    border-radius: 1rem 1rem 0.5rem 0.5rem;
}

.hero_section_main_customise_bottom_setting_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    cursor: pointer;
}

.hero_section_main_customise_bottom_setting_header_top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero_section_main_customise_bottom_setting_header_top h2 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--paragraphTextColour);
}

.hero_section_main_customise_bottom_setting_header svg {
    fill: var(--paragraphTextColour);
    transition: transform 0.3s ease;
}

.hero_section_main_customise_bottom_setting.active .hero_section_main_customise_bottom_setting_header svg:last-child {
    transform: rotate(180deg);
}

.hero_section_main_customise_bottom_setting_header_element {
    width: calc(100% + 2rem);
    height: calc(100% + 2rem);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 100;
}

.hero_section_main_customise_bottom_settings_qr_styles_container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero_section_main_customise_bottom_settings_qr_style {
    width: 3.75rem;
    height: 3.75rem;
    cursor: pointer;
}

.hero_section_main_customise_bottom_settings_qr_style img {
    padding: 0.25rem;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, background-color 0.3s ease, border 0.3s ease;
}

.hero_section_main_customise_bottom_settings_qr_style.active img {
    transform: scale(110%);
    border: 1px solid var(--mainAccentColour);
    background-color: var(--mainAccentColourHover);
}

.hero_section_main_customise_bottom_settings_qr_borders_container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero_section_main_customise_bottom_settings_qr_border {
    cursor: pointer;
}

.hero_section_main_customise_bottom_settings_qr_border_proper {
    width: 3.5rem;
    height: 3.5rem;
    padding: 0.25rem;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, background-color 0.3s ease, border 0.3s ease;
}

.hero_section_main_customise_bottom_settings_qr_border_proper div {
    width: 100%;
    height: 100%;
    background-color: white;
}

.hero_section_main_customise_bottom_settings_qr_border.active .hero_section_main_customise_bottom_settings_qr_border_proper {
    transform: scale(110%);
    border: 1px solid var(--mainAccentColour);
    background-color: var(--mainAccentColourHover);
}

.hero_section_main_customise_bottom_settings_qr_border:nth-child(1) .hero_section_main_customise_bottom_settings_qr_border_proper div {
    border: none;
}

.hero_section_main_customise_bottom_settings_qr_border:nth-child(2) .hero_section_main_customise_bottom_settings_qr_border_proper div {
    border: 2px solid black;
}

.hero_section_main_customise_bottom_settings_qr_border:nth-child(3) .hero_section_main_customise_bottom_settings_qr_border_proper div {
    border: 2px dashed black;
}

.hero_section_main_customise_bottom_settings_qr_border:nth-child(4) .hero_section_main_customise_bottom_settings_qr_border_proper div {
    border: 2px dotted black;
}

.hero_section_main_customise_bottom_settings_qr_border p {
    margin-top: 0.25rem;
}

.hero_section_main_customise_bottom_settings_colour_picker_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.hero_section_main_customise_bottom_settings_colour div:first-child {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero_section_main_customise_bottom_settings_colour div:first-child input {
    width: 100%;
    cursor: pointer;
}

.hero_section_main_customise_bottom_settings_colour div:first-child span {
    width: 5.5rem;
    padding: 0.3rem 0.5rem;
    border: 1px solid var(--thinBorder);
    border-radius: 0.25rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--paragraphTextColour);
}

.hero_section_main_customise_bottom_settings_colour div:last-child {
    display: flex;
    align-items: end;
    gap: 0.5rem;
}

.hero_section_main_customise_bottom_settings_colour div:last-child button {
    width: 1.65rem;
    height: 1.65rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--thinBorder);
    border-radius: 0.25rem;
    background-color: white;
    transition: background-color 0.3s ease, border 0.3s ease;
}

.hero_section_main_customise_bottom_settings_colour div:last-child button.active {
    border: 1px solid var(--mainAccentColour);
    background-color: var(--mainAccentColourHover);
}

.hero_section_main_customise_bottom_settings_colour div:last-child button svg {
    width: 20px;
    height: 20px;
    transition: fill 0.3s ease;
}

.hero_section_main_customise_bottom_settings_colour div:last-child button.active svg {
    fill: var(--mainAccentColour);
}

.hero_section_main_customise_bottom_settings_colour p {
    margin-top: 0.25rem;
}

.hero_section_main_customise_bottom_settings_sliders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.hero_section_main_customise_bottom_setting_slider {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero_section_main_customise_bottom_setting_slider span {
    padding: 0.3rem 0.5rem;
    border: 1px solid var(--thinBorder);
    border-radius: 0.25rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--paragraphTextColour);
}

.hero_section_main_customise_bottom_settings_sliders_margin,
.hero_section_main_customise_bottom_settings_sliders_size {
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: var(--LargeBoxShadow);
    background-color: white;
}

.hero_section_main_customise_bottom_setting_slider {
    margin-top: 1.25rem;
}

.hero_section_main {
    display: flex;
    flex-direction: column;
    align-items: center;
    place-self: center;
}

.hero_section_main_background_container {
    width: 100%;
    height: 50rem;
    position: absolute;
    bottom: -12.5rem;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.hero_section_main_background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.hero_section_main_background_graphic {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero_section_main_background_gradient {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: linear-gradient(white 40%, var(--mainAccentColourHover), white);
}

.hero_section_main_templates_container {
    width: 100%;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--smallBoxShadow);
    background-color: white;
}

.hero_section_main_templates_header {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.hero_section_main_templates_header div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero_section_main_templates_header div svg {
    fill: var(--mainAccentColour);
}

.hero_section_main_templates_header div h1 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--mainAccentColour);
}

.hero_section_main_templates {
    width: 100%;
    max-height: 15rem;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    overflow-y: auto;
}

.hero_section_main_template {
    padding: 1rem;
    border: 1px solid var(--thinBorder);
    border-radius: 0.5rem;
    background-color: white;
    user-select: none;
    cursor: pointer;
}

.hero_section_main_template:hover {
    border: 1px solid var(--mainAccentColour);
    background-color: var(--mainAccentColourHover);
}

.hero_section_main_template h2 {
    font-weight: 500;
    font-size: 0.9rem;
}

.hero_section_main_template p {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

.hero_section_main_bottom {
    width: 100%;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: minmax(0, 2.5fr) minmax(0, 1fr);
    gap: 2rem;
}

.hero_section_main_bottom_nav {
    width: 100%;
    padding: 0.4rem;
    display: grid;
    grid-auto-columns: minmax(7.75rem, 1fr);
    grid-auto-flow: column;
    overflow-x: auto;
    border-radius: 0.5rem;
    box-shadow: var(--LargeBoxShadow);
    background-color: rgb(248, 248, 248);
    scrollbar-width: none;
}

.hero_section_main_bottom_nav::-webkit-scrollbar {
    display: none;
}

.hero_section_main_bottom_nav_item {
    min-width: 7.75rem;
    padding: 0.4rem 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.3rem;
    cursor: pointer;
}

.hero_section_main_bottom_nav_item.active {
    box-shadow: var(--smallBoxShadow);
    background-color: white;
}

.hero_section_main_bottom_nav_item svg {
    width: 20px;
    height: 20px;
}

.hero_section_main_bottom_nav_item p {
    font-weight: 500;
    color: black;
}

.hero_section_main_bottom_forms {
    width: 100%;
    min-width: 0;
    position: relative;
}

.hero_section_main_bottom_form_container {
    width: 100%;
    margin-top: 2rem;
    display: none;
    gap: 1rem;
}

.hero_section_main_bottom_form_container.active {
    display: block;
}

.hero_section_main_bottom_form {
    height: 100%;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--LargeBoxShadow);
    background-color: white;
}

.hero_section_main_bottom_form_header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero_section_main_bottom_form_header div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero_section_main_bottom_form_header div svg {
    width: 25px;
    height: 25px;
    fill: var(--mainAccentColour);
}

.hero_section_main_bottom_form_header div h1 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--mainAccentColour);
}

.hero_section_main_bottom_form_socials {
    margin-top: 1.5rem;
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.hero_section_main_bottom_form_socials.active {
    display: flex;
}

.hero_section_main_bottom_form_social {
    width: max-content;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid transparent;
    border-radius: 0.5rem;
    cursor: pointer;
}

.hero_section_main_bottom_form_social.active {
    border: 2px solid var(--mainAccentColour);
}

.hero_section_main_bottom_form_social:hover {
    background-color: var(--mainAccentColourHover);
}

.hero_section_main_bottom_form_input_group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.hero_section_main_form_input_block {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero_section_main_bottom_form_container_2_link_block {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.hero_section_main_bottom_form_container_2_link_block:nth-child(n + 3) {
    margin-top: 1.25rem;
}

.hero_section_main_bottom_form_container_2_link_block:last-child {
    margin-bottom: 1.5rem;
}

.hero_section_main_bottom_form_container_2_link_block input,
.hero_section_main_bottom_form_container_2_link_block textarea {
    width: 100%;
}

.hero_section_main_form_input_block_url_notice {
    display: none;
    align-items: center;
    gap: 0.3rem;
    position: absolute;
    z-index: 100;
    bottom: -20px;
    left: 0;
}

.hero_section_main_form_input_block_url_notice.active {
    display: flex;
}

.hero_section_main_form_input_block_url_notice svg {
    width: 17px;
    height: 17px;
    fill: red;
}

.hero_section_main_form_input_block_url_notice p {
    font-size: 0.7rem;
    color: red;
}

.hero_section_main_bottom_form_container_2_link_block_actions {
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero_section_main_bottom_form_container_2_link_block_actions button {
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgb(245, 245, 245);
    border-radius: 0.5rem;
    background-color: white;
}

.hero_section_main_bottom_form_container_2_link_block_actions button:hover {
    border: 2px solid var(--mainAccentColour);
}

.hero_section_main_bottom_form_container_2_link_block_actions button:hover svg {
    fill: var(--mainAccentColour);
}

.hero_section_main_bottom_form_container_2_link_block_actions button svg {
    width: 20px;
    height: 20px;
    fill: var(--paragraphTextColour);
}

.hero_section_main_bottom_form_input {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero_section_main_bottom_form_input label {
    font-size: var(--paragraphTextSize);
    font-weight: 500;
}

.hero_section_main_bottom_form_input input,
.hero_section_main_bottom_form_input textarea {
    margin-top: 0.25rem;
    padding: 0.75rem 0.5rem;
    border: 2px solid rgb(245, 245, 245);
    border-radius: 0.5rem;
    background-color: white;
}

.hero_section_main_bottom_form_input textarea {
    max-height: 7.5rem;
    min-height: 2.675rem;
    resize: vertical;
}

.hero_section_main_bottom_form_input input:focus,
.hero_section_main_bottom_form_input textarea:focus {
    outline: 1px auto var(--mainAccentColour);
}

.hero_section_main_bottom_form_premium_options {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero_section_main_bottom_form_premium_option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero_section_main_bottom_form_premium_option_switch {
    width: 2.5rem;
    height: 1.2rem;
    display: inline-block;
    position: relative;
}

.hero_section_main_bottom_form_premium_option_switch input {
    width: 0;
    height: 0;
    opacity: 0;
}

.hero_section_main_bottom_form_premium_option_slider {
    position: absolute;
    inset: 0;
    border-radius: 3rem;
    background-color: rgb(200, 200, 200);
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.hero_section_main_bottom_form_premium_option_slider::before {
    content: "";
    width: 0.95rem;
    height: 0.95rem;
    position: absolute;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    border-radius: 50%;
    box-shadow: var(--LargeBoxShadow);
    background-color: white;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
}

.hero_section_main_bottom_form_premium_option_switch input:checked+.hero_section_main_bottom_form_premium_option_slider {
    background-color: var(--mainAccentColour);
}

.hero_section_main_bottom_form_premium_option_switch input:checked+.hero_section_main_bottom_form_premium_option_slider::before {
    transform: translateX(20px) translateY(-50%);
}

.hero_section_main_bottom_form_premium_option:has(input:checked) p {
    background: linear-gradient(to right, #c384ff, #b57fe7, #8c38db, #8c38db, #b57fe7, #c384ff);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 2.5s linear infinite;
}

.hero_section_main_bottom_form_premium_option div {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

.hero_section_main_bottom_form_premium_option div svg {
    transform: translateY(-5px);
    fill: rgb(255, 174, 0);
}

.hero_section_main_form_container_bottom_preview {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 4fr;
    align-items: center;
    gap: 2rem;
}

.hero_section_main_bottom_qr_preview_container {
    max-height: 24.2rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 1rem;
    box-shadow: var(--LargeBoxShadow);
    background-color: white;
}

.hero_section_main_bottom_qr_preview_header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero_section_main_bottom_qr_preview_header h1 {
    font-size: 1.1rem;
    font-weight: 500;
}

.hero_section_main_bottom_qr_preview {
    height: 100%;
    margin-top: 2rem;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 2px dashed var(--thinBorder);
    border-radius: 0.5rem;
}

.hero_section_main_bottom_qr_preview_img {
    max-height: 14rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    text-align: center;
}

.hero_section_main_bottom_qr_preview_img svg {
    stroke: var(--paragraphTextColour);
}

.hero_section_main_bottom_qr_preview_img p {
    max-width: 9rem;
}

.hero_section_main_bottom_qr_preview_img img {
    display: none;
}

.hero_section_main_bottom_form_bottom_actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.hero_section_main_bottom_form_bottom_actions button {
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--thinBorder);
    border-radius: 0.5rem;
    background-color: white;
}

.hero_section_main_bottom_form_bottom_actions button:first-child {
    border: 1px solid var(--thinBorder);
}

.hero_section_main_bottom_form_bottom_actions button:nth-child(5) {
    display: none;
}

.hero_section_main_bottom_form_bottom_actions button:nth-child(5).active,
.hero_section_main_customise_bottom_preview_actions_dynamic_settings.active {
    display: flex;
}

.hero_section_main_customise_bottom_preview_actions_dynamic_settings {
    display: none;
}

.hero_section_main_bottom_form_bottom_actions button:hover {
    border: 1px solid var(--mainAccentColour);
    background-color: var(--mainAccentColourHover);
}

.hero_section_main_bottom_form_bottom_actions button svg {
    width: 27px;
    height: 27px;
    fill: var(--paragraphTextColour);
}

.hero_section_main_bottom_form_bottom_actions button:hover svg {
    fill: var(--mainAccentColour);
}

.hero_section_main_bottom_form_bottom_actions_download {
    position: relative;
}

.hero_section_main_bottom_form_bottom_actions_download_left {
    padding: 0.5rem;
    display: flex;
    align-items: center;
}

.hero_section_main_bottom_form_bottom_actions_download_right {
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid var(--thinBorder);
    border-radius: 0 0.5rem 0.5rem 0;
}

.hero_section_main_bottom_form_bottom_actions button:hover .hero_section_main_bottom_form_bottom_actions_download_right {
    border-left: 1px solid var(--mainAccentColour);
}

.hero_section_main_bottom_form_bottom_actions_download_formats {
    width: 12.5rem;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 4rem;
    left: 0;
    z-index: 100;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: var(--LargeBoxShadow);
    background-color: white;
}

.hero_section_main_bottom_form_bottom_actions_download_formats.active {
    display: flex;
}

.hero_section_main_bottom_form_bottom_actions_download_format {
    height: 2.5rem;
    padding: 0 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    border: 1px solid transparent;
}

.hero_section_main_bottom_form_bottom_actions_download_format:first-child {
    border-radius: 0.5rem 0.5rem 0 0;
}

.hero_section_main_bottom_form_bottom_actions_download_format:last-child {
    border-radius: 0 0 0.5rem 0.5rem;
}

.hero_section_main_bottom_form_bottom_actions_download_format.active {
    border: 1px solid rgb(200, 200, 200);
}

.hero_section_main_bottom_form_bottom_actions_download_format.active svg {
    display: block;
}

.hero_section_main_bottom_form_bottom_actions_download_format:hover {
    background-color: rgb(230, 230, 230);
}

.hero_section_main_bottom_form_bottom_actions_download_format div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero_section_main_bottom_form_bottom_actions_download_format div h3 {
    font-size: var(--paragraphTextSize);
    font-weight: 500;
}

.hero_section_main_bottom_form_bottom_actions_download_format div p {
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.2px;
}

.hero_section_main_bottom_form_bottom_actions_download_format svg {
    display: none;
}








.hero_section_main_dynamic_settings_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.hero_section_main_dynamic_settings_header div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero_section_main_dynamic_settings_header div svg {
    fill: var(--mainAccentColour);
}

.hero_section_main_dynamic_settings_header div h1 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--mainAccentColour);
}

.hero_section_main_dynamic_settings_preview {
    height: 100%;
    max-height: 36.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
    border-radius: 1rem;
    box-shadow: var(--LargeBoxShadow);
    background-color: white;
}

.hero_section_main_dynamic_settings_preview_header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: start;
}

.hero_section_main_dynamic_settings_preview_header_back button {
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    border: none;
    border-radius: 0.5rem;
    background-color: var(--mainAccentColour);
}

.hero_section_main_dynamic_settings_preview_header_back button p {
    color: white;
}

.hero_section_main_dynamic_settings_preview_header h2 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--paragraphTextColour);
}

.hero_section_main_dynamic_settings_preview_content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border-radius: 0.5rem;
}

.hero_section_main_dynamic_settings_preview_img {
    width: 100%;
    height: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    border: 2px dashed var(--thinBorder);
    border-radius: 0.5rem;
    text-align: center;
}

.hero_section_main_dynamic_settings_preview_img svg {
    stroke: var(--paragraphTextColour);
}

.hero_section_main_dynamic_settings_preview_img p {
    max-width: 9rem;
}

.hero_section_main_dynamic_settings_preview_img img {
    object-fit: contain;
}

.hero_section_main_dynamic_settings_preview_img_proper {
    height: 8rem;
    display: none;
    object-fit: contain;
}

.hero_section_main_dynamic_settings_preview_actions {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.hero_section_main_dynamic_settings_preview_actions button {
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--thinBorder);
    border-radius: 0.5rem;
    background-color: white;
}

.hero_section_main_dynamic_settings_preview_actions button:first-child {
    border: 1px solid var(--thinBorder);
}

.hero_section_main_dynamic_settings_preview_actions button:hover {
    border: 1px solid var(--mainAccentColour);
    background-color: var(--mainAccentColourHover);
}

.hero_section_main_dynamic_settings_preview_actions button svg {
    width: 27px;
    height: 27px;
    fill: var(--paragraphTextColour);
}

.hero_section_main_dynamic_settings_preview_actions button:nth-child(2) svg {
    fill: none;
    stroke: var(--paragraphTextColour);
}

.hero_section_main_dynamic_settings_preview_actions button:hover svg {
    fill: var(--mainAccentColour);
}

.hero_section_main_dynamic_settings_preview_actions button:nth-child(2):hover svg {
    fill: none;
    stroke: var(--mainAccentColour);
}

.hero_section_main_dynamic_settings_preview_actions_download {
    position: relative;
}

.hero_section_main_dynamic_settings_preview_actions_download_left {
    padding: 0.5rem;
    display: flex;
    align-items: center;
}

.hero_section_main_dynamic_settings_preview_actions_download_left p {
    color: white;
}

.hero_section_main_dynamic_settings_preview_actions_download_right {
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid var(--thinBorder);
    border-radius: 0 0.5rem 0.5rem 0;
}

.hero_section_main_dynamic_settings_preview_actions button:hover .hero_section_main_dynamic_settings_preview_actions_download_right {
    border-left: 1px solid var(--mainAccentColour);
}

.hero_section_main_dynamic_settings_preview_actions_download_formats {
    width: 12.5rem;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 4rem;
    right: 0;
    z-index: 100;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: var(--LargeBoxShadow);
    background-color: white;
}

.hero_section_main_dynamic_settings_preview_actions_download_formats.active {
    display: flex;
}

.hero_section_main_dynamic_settings_preview_actions_download_format {
    height: 2.5rem;
    padding: 0 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    border: 1px solid transparent;
}

.hero_section_main_dynamic_settings_preview_actions_download_format:first-child {
    border-radius: 0.5rem 0.5rem 0 0;
}

.hero_section_main_dynamic_settings_preview_actions_download_format:last-child {
    border-radius: 0 0 0.5rem 0.5rem;
}

.hero_section_main_dynamic_settings_preview_actions_download_format.active {
    border: 1px solid rgb(200, 200, 200);
}

.hero_section_main_dynamic_settings_preview_actions_download_format.active svg {
    display: block;
    fill: var(--mainAccentColour);
}

.hero_section_main_dynamic_settings_preview_actions_download_format:hover {
    background-color: rgb(230, 230, 230);
}

.hero_section_main_dynamic_settings_preview_actions_download_format div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero_section_main_dynamic_settings_preview_actions_download_format div h3 {
    font-size: var(--paragraphTextSize);
    font-weight: 500;
}

.hero_section_main_dynamic_settings_preview_actions_download_format div p {
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.2px;
}

.hero_section_main_dynamic_settings_preview_actions_download_format svg {
    display: none;
    fill: var(--mainAccentColour);
}

.hero_section_main_dynamic_settings_preview_actions_save p {
    color: white;
}

.hero_section_main_dynamic_settings_options {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    border-radius: 1rem;
    box-shadow: var(--LargeBoxShadow);
    background-color: white;
}

.hero_section_main_dynamic_settings_options_header {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero_section_main_dynamic_settings_options_header div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero_section_main_dynamic_settings_options_header div svg {
    width: 25px;
    height: 25px;
    fill: var(--mainAccentColour);
}

.hero_section_main_dynamic_settings_options_header div h1 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--mainAccentColour);
}

.hero_section_main_dynamic_settings_options_container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero_section_main_dynamic_settings_option_group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 1rem;
}

.hero_section_main_dynamic_settings_option_header,
.hero_section_main_dynamic_settings_option_header div:first-child {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero_section_main_dynamic_settings_option_header {
    position: relative;
}

.hero_section_main_dynamic_settings_option_header svg {
    width: 18px;
    height: 18px;
}

.hero_section_main_dynamic_settings_option_header h2 {
    font-size: var(--paragraphTextSize);
    font-weight: 450;
}

.hero_section_main_dynamic_settings_option_input {
    width: 100%;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero_section_main_dynamic_settings_option_input input {
    width: 100%;
    padding: 0.75rem 0.5rem;
    border: 2px solid rgb(245, 245, 245);
    border-radius: 0.5rem;
    background-color: white;
}

.hero_section_main_dynamic_settings_option_input_switch {
    width: 2.5rem;
    height: 1.2rem;
    display: inline-block;
    position: relative;
}

.hero_section_main_dynamic_settings_option_input_switch input {
    width: 0;
    height: 0;
    opacity: 0;
}

.hero_section_main_dynamic_settings_option_slider {
    position: absolute;
    inset: 0;
    border-radius: 3rem;
    background-color: rgb(200, 200, 200);
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.hero_section_main_dynamic_settings_option_slider::before {
    content: "";
    width: 0.95rem;
    height: 0.95rem;
    position: absolute;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    border-radius: 50%;
    box-shadow: var(--LargeBoxShadow);
    background-color: white;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
}

.hero_section_main_dynamic_settings_option_input_switch input:checked+.hero_section_main_dynamic_settings_option_slider {
    background-color: var(--mainAccentColour);
}

.hero_section_main_dynamic_settings_option_input_switch input:checked+.hero_section_main_dynamic_settings_option_slider::before {
    transform: translateX(20px) translateY(-50%);
}

.hero_section_main_dynamic_settings_option_expiry_switcher_header {
    padding: 0.3rem 0.75rem;
    position: absolute;
    top: -12.5px;
    right: 0;
    z-index: 100;
    border: 2px solid rgb(245, 245, 245);
    border-radius: 0.5rem;
    background-color: white;
    cursor: pointer;
}

.hero_section_main_dynamic_settings_option_expiry_switcher_header svg {
    margin-left: 1rem;
    fill: var(--paragraphTextColour);
}

.hero_section_main_dynamic_settings_option_expiry_switcher_header h3 {
    font-size: 0.8rem;
    font-weight: 450;
    color: var(--paragraphTextColour);
}

.hero_section_main_dynamic_settings_option_expiry_switcher_dropdown {
    display: none;
}

















.services_section {
    padding: 5rem 3rem 0 3rem;
    position: relative;
    z-index: -1;
}

.services_section_header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.services_section_header h2 {
    max-width: 6rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--paragraphTextColour);
}

.services_section_header div {
    transform: translateY(0.9rem);
}

.services_section_header div h1 {
    font-size: 2.25rem;
    font-weight: 500;
}

.services_section_header div p {
    margin-left: 3rem;
    font-weight: 400;
}

.services_section_cards {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, 25rem);
    justify-content: center;
    gap: 1rem;
}

.services_section_card {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--thinBorder);
    border-radius: 0.5rem;
}

.services_section_card div h3 {
    font-weight: 550;
}

.services_section_card p {
    font-size: 0.8rem;
}

.signup_inter_section {
    width: 100%;
    margin-top: 5rem;
    padding: 0 3rem;
    display: flex;
    justify-content: center;
}

.signup_inter_section_container {
    max-width: 60rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    border-radius: 2rem;
    text-align: center;
    background-color: rgb(245, 245, 245);
    background-color: black;
}

.signup_inter_section h1 {
    max-width: 45rem;
    font-size: 2rem;
    font-weight: 600;
    color: white;
}

.signup_inter_section h1 strong {
    font-size: 2rem;
    font-weight: 600;
    color: white;
}

.signup_inter_section button {
    border: none;
    border-radius: 0.5rem;
    background-color: white;
}

.signup_inter_section button a {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.signup_inter_section button a p {
    color: black;
}

.pricing_section {
    width: 100%;
    padding: 5rem 3rem 0 3rem;
}

.pricing_section_container {
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: var(--LargeBoxShadow);
    background-color: rgb(245, 245, 245);
}

.pricing_section_cards {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 2rem;
}

.pricing_section_card {
    height: 20rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border: 1px solid rgb(206, 206, 206);
    border-radius: 1rem;
    background-color: white;
}

.pricing_section_card.active {
    transform: scale(110%);
    border: 2px solid black;
}

.pricing_section_card_header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing_section_card_header h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.pricing_section_card_header h1 {
    font-size: 2rem;
}

.pricing_section_card_header h1 strong {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--paragraphTextColour);
}

.pricing_section_card_header p {
    padding: 0.3rem 2rem;
    position: absolute;
    top: -13px;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
    border-radius: 0.5rem;
    font-size: 0.8rem;
    background-color: black;
    color: white;
}

.pricing_section_card_stats {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing_section_card_stat {
    display: grid;
    grid-template-columns: 1fr 20fr;
    gap: 0.5rem;
}

.pricing_section_card_stat svg {
    fill: green;
}

.pricing_section_card_stat p {
    font-size: 0.8rem;
    font-weight: 400;
    color: black;
}

.main_footer {
    margin-top: 3rem;
    padding: 2rem 1.5rem 1.5rem;
    background-color: #000000;
}

.main_footer_top {
    padding-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.main_footer_top_left_header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main_footer_top_left_header div {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
}

.main_footer_top_left_header div svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

.main_footer_top_left_header div h2 {
    font-size: 1.25rem;
    font-weight: 450;
    color: white;
}

.main_footer_top_left_header p {
    max-width: 17.5rem;
    color: var(--paragraphTextColour);
}

.main_footer_top_right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    gap: 1rem;
}

.main_footer_top_right_column_header {
    margin-bottom: 1rem;
}

.main_footer_top_right_column_header h3 {
    font-size: 1.1em;
    font-weight: 450;
    color: white;
}

.main_footer_top_right_column_links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.main_footer_top_right_column_link a {
    font-size: var(--paragraphTextSize);
    font-weight: 400;
    color: var(--paragraphTextColour);
    transition: color 0.3s ease;
}

.main_footer_top_right_column_link a:hover {
    color: white;
}

.main_footer_top_right_column div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main_footer_top_right_column div p {
    font-weight: 400;
    color: var(--paragraphTextColour);
}

.main_footer_bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--paragraphTextColour);
}

.main_footer_bottom p {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--paragraphTextColour);
}

.main_footer_bottom p span {
    color: var(--paragraphTextColour);
}

@keyframes textShimmer {
    to {
        background-position: 200%;
    }
}

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

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

@media(width < 66rem) {
    .hero_section_main_bottom {
        display: flex;
        flex-direction: column;
    }

    .hero_section_main_templates {
        grid-template-columns: repeat(auto-fill, 145.325px);
    }

    .hero_section_main_bottom_form_input_group {
        display: block;
    }

    .hero_section_main_customise_bottom,
    .hero_section_main_dynamic_settings_container {
        display: flex;
        flex-direction: column;
    }

    .hero_section_main_customise_bottom_preview_content,
    .hero_section_main_dynamic_settings_preview_content {
        display: grid;
        grid-template-columns: 10fr 1fr;
        align-items: start;
    }

    .hero_section_main_customise_bottom_preview_actions,
    .hero_section_main_dynamic_settings_preview_actions {
        display: flex;
        flex-direction: column;
        align-items: end;
        gap: 0.5rem;
    }

    .hero_section_main_customise_bottom_preview_actions button,
    .hero_section_main_dynamic_settings_preview_actions button {
        margin-top: 0;
    }
}

@media(width < 51rem) {
    .main_top_nav_container {
        grid-template-columns: 1fr 1fr;
    }

    .main_top_nav_left_hamburger {
        display: block;
    }

    .main_top_nav_middle {
        display: none;
    }
}

@media(width < 47.8125rem) {
    .hero_section_main_templates {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(width < 38.1875rem) {
    .hero_section_main_templates {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(width < 28.5625rem) {
    .hero_section_main_templates {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Dashboard Overlay Redesign */

.dashboard_panel_show_qr_overlay {
    width: 60rem;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0;
    gap: 0;
}

.dashboard_panel_show_qr_overlay_header_cancel {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    cursor: pointer;
    background: white;
    border-radius: 50%;
    padding: 0.25rem;
}

.dashboard_panel_show_qr_overlay_columns {
    display: flex;
    width: 100%;
    height: 100%;
}

.dashboard_panel_show_qr_overlay_left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f7f7f7;
    padding: 2rem;
    border-radius: 1rem 0 0 1rem;
}

.dashboard_panel_show_qr_overlay_right {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.dashboard_panel_show_qr_overlay_qr_image {
    width: 100%;
    max-width: 25rem;
    height: auto;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 0.5rem;
    box-shadow: var(--mediumBoxShadow);
    padding: 1rem;
}

/* Header inside Right Column */
.dashboard_panel_show_qr_overlay_header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dashboard_panel_show_qr_overlay_header p {
    font-size: 0.8rem;
}

.dashboard_panel_show_qr_overlay_header_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.dashboard_panel_show_qr_overlay_header_top div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dashboard_panel_show_qr_overlay_header_top div h1 {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Content Area */
.dashboard_panel_show_qr_overlay_content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background-color: white;
    border: 1px solid var(--thinBorder);
    border-radius: 0.5rem;
    margin: 0;
}

/* Actions Footer */
.dashboard_panel_show_qr_overlay_actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.dashboard_panel_show_qr_overlay_action_download_container {
    position: relative;
    flex-grow: 1;
}

.dashboard_panel_show_qr_overlay_action_download {
    width: 100%;
    display: flex;
    padding: 0;
    border: 1px solid var(--thinBorder);
    border-radius: 0.5rem;
    background: white;
    overflow: hidden;
}

.dashboard_panel_show_qr_overlay_action_download:hover {
    border-color: var(--mainAccentColour);
    background-color: var(--mainAccentColourHover);
}

.dashboard_panel_show_qr_overlay_action_download:hover .dashboard_panel_show_qr_overlay_action_download_right {
    border-left-color: var(--mainAccentColour);
}

.dashboard_panel_show_qr_overlay_action_download_left {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    font-weight: 500;
}

.dashboard_panel_show_qr_overlay_action_download_right {
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--thinBorder);
    cursor: pointer;
}

.dashboard_panel_show_qr_overlay_action_copy {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    border: 1px solid var(--thinBorder);
    border-radius: 0.5rem;
    background: white;
}

.dashboard_panel_show_qr_overlay_action_copy:hover {
    border-color: var(--mainAccentColour);
    background-color: var(--mainAccentColourHover);
    fill: var(--mainAccentColour);
    color: var(--mainAccentColour);
}

.dashboard_panel_show_qr_overlay_action_copy:hover svg {
    fill: var(--mainAccentColour);
}

/* Format Selector Dropdown */
.dashboard_panel_show_qr_overlay_action_download_formats {
    display: none;
    position: absolute;
    bottom: calc(100% + 0.5rem);
    left: 0;
    width: 100%;
    flex-direction: column;
    background: white;
    border-radius: 0.5rem;
    box-shadow: var(--LargeBoxShadow);
    z-index: 100;
    overflow: hidden;
}

.dashboard_panel_show_qr_overlay_action_download_formats.active {
    display: flex;
}

.dashboard_panel_show_qr_overlay_action_download_format {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    cursor: pointer;
    border: 1px solid transparent;
}

.dashboard_panel_show_qr_overlay_action_download_format:hover {
    background-color: #f0f0f0;
}

.dashboard_panel_show_qr_overlay_action_download_format.active {
    background-color: #f9f9f9;
    font-weight: 600;
}

.dashboard_panel_show_qr_overlay_action_download_format.active svg {
    display: block;
    fill: var(--mainAccentColour);
}

.dashboard_panel_show_qr_overlay_action_download_format svg {
    display: none;
    fill: var(--mainAccentColour);
}

.dashboard_panel_show_qr_overlay_action_download_format div h3 {
    font-size: 0.9rem;
    font-weight: inherit;
}


/* Responsive Layout */
@media (max-width: 900px) {
    .dashboard_panel_show_qr_overlay {
        width: 90vw;
        max-height: 90vh;
        overflow-y: auto;
    }

    .dashboard_panel_show_qr_overlay_columns {
        flex-direction: column;
    }

    .dashboard_panel_show_qr_overlay_left {
        width: 100%;
        padding: 2rem 1rem;
        border-radius: 1rem 1rem 0 0;
        background-color: #f7f7f7;
    }

    .dashboard_panel_show_qr_overlay_right {
        width: 100%;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .dashboard_panel_show_qr_overlay_qr_image {
        max-width: 15rem;
    }
}


/* Pricing Section */
.pricing_section {
    width: 100%;
    padding: 3rem 0;
    display: flex;
    justify-content: center;
}

.pricing_section_container {
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.pricing_section_header {
    text-align: center;
    align-items: center;
}

.pricing_section_cards {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing_section_card {
    width: 100%;
    max-width: 22rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--LargeBoxShadow);
    background-color: white;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
}

.pricing_section_card.active {
    border-color: var(--mainAccentColour);
    transform: scale(1.05);
}

.pricing_section_card:hover {
    transform: translateY(-5px);
}

.pricing_section_card.active:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing_section_card_header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--thinBorder);
}

.pricing_section_card_header h2 {
    font-size: 1.25rem;
    font-weight: 500;
}

.pricing_section_card_header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--mainAccentColour);
}

.pricing_section_card_header h1 strong {
    font-size: 1rem;
    font-weight: 400;
    color: var(--paragraphTextColour);
}

.pricing_section_card_header p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--mainAccentColour);
}

.pricing_section_card_stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing_section_card_stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing_section_card_stat svg {
    fill: var(--mainAccentColour);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.pricing_section_card_stat p {
    font-size: 0.95rem;
}

.pricing_section_card_button {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: var(--mainAccentColour);
    color: white;
    border: none;
    margin-top: auto;
}

.pricing_section_card_button:hover {
    background-color: rgb(110, 40, 180);
}

.pricing_section_card:not(.active) .pricing_section_card_button {
    background-color: transparent;
    border: 1px solid var(--mainAccentColour);
    color: var(--mainAccentColour);
}

.pricing_section_card:not(.active) .pricing_section_card_button:hover {
    background-color: var(--mainAccentColourHover);
}