/* #region trustedEnterprises */
.trustedEnterprises {
    text-align: center;
    padding: 60px 0 20px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
}

.trustedEnterprises .sectionTitle {
    color: #1a3a60;
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 12px;
}

.trustedEnterprises .sectionSubtitle {
    color: #4a4a4a;
    font-size: 16px;
    margin-bottom: 8px;
}

.trustedEnterprises .sectionHighlightText {
    color: #111111;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 36px;
}

.trustedEnterprises .logoContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0 auto;
}

.trustedEnterprises .logoItem {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trustedEnterprises .logoItem img {
    max-width: fit-content;
    height: auto;
    object-fit: contain;
}

/* #endregion */

/* #region pricingSection */
.pricingSection {
    background-color: #ffffff;
    padding: 20px 0 60px 0;
    font-family: Arial, Helvetica, sans-serif;
}

.pricingControlsWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 50px;
}

.pricingLabel {
    font-size: 26px;
    font-weight: 600;
    color: #1a3a60;
}

/* Custom Dropdown */
.customDropdownWrap {
    position: relative;
    user-select: none;
    min-width: 160px;
}

.dropdownSelected {
    display: flex;
    align-items: center;
    border: 1.5px solid #0065FF;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    height: 40px;
    overflow: hidden;
}

.dropdownSelectedText {
    flex: 1;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    white-space: nowrap;
}

.dropdownDivider {
    width: 1px;
    height: 100%;
    background: #0065FF;
    flex-shrink: 0;
}

.dropdownArrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    transition: transform 0.2s;
}

.customDropdownWrap.open .dropdownArrow {
    transform: rotate(180deg);
}

.dropdownList {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #dde3ef;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 6px 0;
    margin: 0;
    list-style: none;
    z-index: 100;
    max-height: 240px;
    overflow-y: auto;
}

.customDropdownWrap.open .dropdownList {
    display: block;
}

.dropdownItem {
    padding: 10px 16px;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    transition: background 0.15s;
}

.dropdownItem:hover {
    background: #f0f5ff;
    color: #0065FF;
}

.dropdownItem.active {
    background: #0065FF;
    color: #fff;
    font-weight: 600;
}

.billingToggle {
    display: flex;
    border: 1px solid #0065FF;
    border-radius: 4px;
    overflow: hidden;
    padding: 5px;
}

.toggleBtn {
    padding: 8px 16px;
    font-size: 14px;
    border: none;
    background: #fff;
    color: #0065FF;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 5px;
}

.toggleBtn.active {
    background-color: #0065FF;
    color: #fff;
}

.pricingCardsWrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.floatingTrial {
    position: absolute;
    left: 40px;
    top: -20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.trialText {
    font-style: italic;
    font-weight: 600;
    font-size: 16px;
    color: #111;
}

.trialIcon {
    width: 30px;
    height: auto;
}

.btnTrial {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 24px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 32px;
    background: #6644F0;
}

.btnTrial:hover {
    color: #fff;
    opacity: 0.9;
}

.pricingCardsContainer {
    display: flex;
    gap: 30px;
    align-items: stretch;
    max-width: 860px;
    width: 100%;
}

.pricingCard {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.cardProfessional {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: 36px;
    border-color: #e0e0e0;
}

.cardProfessional .cardInner {
    padding: 30px;
    flex-grow: 1;
}

.cardStandard {
    padding: 30px;
    margin-top: 36px;
}

.cardRecommendedBanner {
    position: absolute;
    top: -36px;
    left: -1px;
    right: -1px;
    background: #FF821E;
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 8px 0;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.cardTier {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #111;
}

.cardPriceBlock {
    text-align: center;
    min-height: 80px;
    margin-bottom: 24px;
}

.priceValue {
    font-size: 42px;
    font-weight: 700;
    color: #0065FF;
    line-height: 1.2;
}

.priceValue.priceContact {
    font-size: 24px;
    margin-top: 10px;
}

.priceUnit {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

.btnBuy {
    display: block;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 0;
    margin-bottom: 24px;
    transition: all 0.2s;
}

.btnBuy:hover {
    color: #fff;
    opacity: 0.9;
}

.btnBuyStandard {
    border-radius: 20px;
    background: #0065FF;
}

.btnBuyRecommended {
    border-radius: 20px;
    background: #FF821E;
}

.freeAddon {
    text-align: center;
    font-size: 14px;
    color: #333;
    padding-bottom: 24px;
    /* border-bottom: 1px solid #797979; */
    border-top: 1px solid #797979;
    padding-top: 24px;
}

.badgeHot {
    display: inline-block;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 2px;
    background: #FF3939;
    vertical-align: middle;
    margin-top: -12px;
    margin-left: 4px;
    border-radius: 5px;
}

.featureGroup {
    margin-bottom: 20px;
    border-top: 1px solid #797979;
    padding-top: 40px;
}

.featureGroupTitle {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px;
    padding-bottom: 16px;
}

.featureList {
    list-style: none;
    padding: 0;
    margin: 0;
}

.featureList li {
    font-size: 14px;
    color: #444;
    /* margin-bottom: 12px; */
    padding-left: 24px;
    position: relative;
    line-height: 1.4;
}

.iconCheck {
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
}

.iconCross {
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    background: #e4e6eb;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.iconCross::before,
.iconCross::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 2px;
    background: #8b929e;
    border-radius: 1px;
}

.iconCross::before {
    transform: rotate(45deg);
}

.iconCross::after {
    transform: rotate(-45deg);
}

.featureList li.disabled {
    color: #8b929e;
}

.pricingFooterNote {
    margin-top: 50px;
    text-align: center;
}

.footerNoteTitle {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 24px;
    padding-bottom: 24px;
}

.footerActionButtons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btnConsult,
.btnDownload {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.2s;
}

.btnConsult {
    background: #FF821E;
}

.btnConsult:hover {
    color: #fff;
    opacity: 0.9;
}

.btnDownload {
    background: #0065FF;
    gap: 8px;
}

.btnDownload:hover {
    color: #fff;
    opacity: 0.9;
}

.footerRemarks {
    text-align: left;
    max-width: 860px;
    margin: 0 auto;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

/* #endregion */

/* #region trialBannerSection */
.trialBannerContent {
    background-image: url('/sites/amis/images/pages/bao-gia-hrm-v2/bg-trial.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
    text-align: center;
}

.trialBannerSection a.btnRegister {}

.trialBannerTitle {
    color: #FFF;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 24px;
    padding-bottom: 20px;
}

.trustedEnterprises .btnRegister,
.trialBannerSection a.btnRegister {
    display: inline-block;
    padding: 12px 40px;
    border-radius: 30px;
    background: linear-gradient(90deg, #FF961E 0%, #F30 100%);
    color: #FFF;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 23px;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    transition: transform 0.2s;
}

.btnRegister:hover {
    color: #FFF;
    text-decoration: none;
    transform: scale(1.05);
}

/* #endregion */

/* #region aiFeaturesSection */
.aiFeaturesSection {
    background-color: #fcfcfc;
    padding: 80px 0;
    font-family: Arial, sans-serif;
}

.aiFeaturesRow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.aiSectionSubTitle {
    font-size: 30px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.aiSectionTitle {
    font-size: 35px;
    font-weight: 700;
    color: #111;
    margin-top: 0;
    margin-bottom: 40px;
    padding-bottom: 32px;
}

.textGradient {
    background: linear-gradient(94deg, #0932F1 3.82%, #468AFE 98.63%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.aiFeatureList {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 44px;
}

.aiFeatureItem {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.aiTickIcon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.aiFeatureItemTitle {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 6px;
}

.aiFeatureItemDesc {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.aiActionButtons {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btnAiTrial {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px 10px 24px;
    border-radius: 40px;
    background: linear-gradient(104deg, #0025EF -2.11%, #4D93FF 91.9%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
}

.btnAiTrial:hover {
    color: #fff;
    opacity: 0.9;
}

.iconCircle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
}

.iconCircle img {
    filter: invert(24%) sepia(90%) saturate(2891%) hue-rotate(211deg) brightness(101%) contrast(106%);
}

.btnAiConsult {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0065FF;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
}

.btnAiConsult:hover {
    opacity: 0.8;
}

.btnAiConsult img {
    filter: invert(24%) sepia(90%) saturate(2891%) hue-rotate(211deg) brightness(101%) contrast(106%);
}

.btnAiConsult:hover img {
    transform: translateX(4px);
    transition: transform 0.2s;
}

.aiImageWrap img {
    max-width: 100%;
    height: auto;
    display: block;
}

.play-video-item {
    position: relative;
    cursor: pointer;
}

/* #endregion */

/* #region clientLogosSection */
.clientLogosSection {
    background-color: #fff;
    padding: 60px 0;
    font-family: Arial, Helvetica, sans-serif;
}

.clientLogosR {
    display: grid;
    margin-bottom: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px
}

.industryCol {
    padding-bottom: 0;
}

.industryCol img {
    width: 100%;
}


.industryFooterWrap {
    text-align: center;
    margin-top: 10px;
}

.industryNote {
    color: #555;
    font-size: 16px;
    font-style: italic;
    margin-bottom: 24px;
}

.industryNote .starIcon {
    color: #FFB800;
    font-style: normal;
    margin-right: 4px;
}

.btnExperienceAction {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px 10px 24px;
    border-radius: 40px;
    background: linear-gradient(104deg, #0025EF -2.11%, #4D93FF 91.9%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
    margin-bottom: 20px;
}

.btnExperienceAction:hover {
    color: #fff;
    opacity: 0.9;
}

.experienceLinkWrap {
    font-size: 15px;
    color: #333;
}

.experienceLink {
    color: #2459F6;
    font-family: "Google Sans", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    margin-left: 4px;
    text-transform: uppercase;
}

.experienceLink:hover {
    text-decoration: underline;
    color: #1a42bc;
}

@media screen and (max-width: 979px) {
    .industryFooterWrap br {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .clientLogosR {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 0 15px;
    }
}

/* #endregion */

/* #region supportSection */
.supportSection {
    background-color: #fff;
    padding: 60px 0;
    font-family: Arial, Helvetica, sans-serif;
}

.supportTitle {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    padding-bottom: 24px;
}

.supportHighlight {
    background: linear-gradient(90deg, #0A33F1 0%, #4286FD 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.supportRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.supportCol {
    padding: 0 20px;
    position: relative;
    margin-bottom: 30px;
}

.supportCol:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 1px;
    background-color: #1877F1;
}

@media screen and (max-width: 991px) {
    .supportCol:not(:last-child)::after {
        display: none;
    }
}

.supportItem {
    text-align: center;
    max-width: 260px;
    margin: 0 auto;
}

.supportHeader {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    justify-content: center;
}

.supportHeader img {
    width: 24px;
    height: 24px;
}

.supportHeader h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.supportBody {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* #endregion */

/* #region registerSection */
.registerSection {
    /* background-color: #f5f8ff; */
    padding: 60px 0;
    font-family: Arial, Helvetica, sans-serif;
}

.registerSectionTitle {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.registerSectionTitle span {
    color: #2459F6;
}

.registerSectionSubtitle {
    text-align: center;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

.registerRow {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.registerFormCol {
    padding-right: 30px;
}

.registerInfoCol {
    padding-left: 20px;
}

.registerInfoWrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.registerInfoTitle {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.registerInfoList {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.registerInfoList li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #333;
    flex-wrap: wrap;
}

.registerInfoList li img {
    flex-shrink: 0;
}

.badgeHotRed {
    display: inline-block;
    background: #FF3939;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.registerImgWrap {
    margin: 8px 0;
}

.registerImgWrap img {
    max-width: 100%;
    height: auto;
    display: block;
}

.registerRating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    position: absolute;
    bottom: 9%;
    left: 0;
}

.registerStars {
    display: flex;
    gap: 2px;
}

.registerRatingText {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.registerRow .registerFormWrap {
    filter: drop-shadow(2.5px 18px 46px rgba(24, 119, 241, 0.25));
    background: #fff;
    padding: 24px;
    border-radius: 16px;
}

.registerRow form[lz-id='3b0bc7c6-c02c-4b47-b695-010c19afb990'] .btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px 10px 24px;
    border-radius: 50px !important;
    background: linear-gradient(104deg, #0025EF -2.11%, #4D93FF 91.9%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
    margin-bottom: 0px;
}

.registerRow .registerFormTitle {
    color: #2459F6;
    font-family: "Inter";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    padding-bottom: 8px
}

.registerRow .registerFormSubtitle {
    text-align: center;
}

.registerRow form[lz-id='3b0bc7c6-c02c-4b47-b695-010c19afb990'].private-form {
    padding: 24px 0 0 0 !important;
}

/* #endregion */

/* ============================================================
   #region Responsive - Tablet (max-width: 991px)
   ============================================================ */
@media screen and (max-width: 991px) {

    /* trustedEnterprises */
    .trustedEnterprises .sectionTitle {
        font-size: 22px;
    }

    /* pricingSection */
    .pricingControlsWrap {
        flex-wrap: wrap;
        gap: 12px;
    }

    .pricingLabel {
        font-size: 20px;
        text-align: center;
        width: 100%;
    }

    .pricingCardsContainer {
        flex-direction: column;
        align-items: center;
    }

    .pricingCard {
        width: 100%;
        max-width: 500px;
    }

    .cardProfessional {
        margin-top: 50px;
    }

    .floatingTrial {
        display: none;
    }

    .footerActionButtons {
        flex-wrap: wrap;
        gap: 12px;
    }

    /* trialBannerSection */
    .trialBannerTitle {
        font-size: 28px;
    }

    .trustedEnterprises .btnRegister,
    .trialBannerSection a.btnRegister {
        font-size: 18px;
        padding: 10px 28px;
    }

    /* aiFeaturesSection */
    .aiFeaturesSection {
        padding: 50px 0;
    }

    .aiSectionSubTitle {
        font-size: 22px;
    }

    .aiSectionTitle {
        font-size: 26px;
    }

    .aiFeaturesRow {
        flex-direction: column;
    }

    .aiFeaturesRow .col-md-10,
    .aiFeaturesRow .col-md-14 {
        width: 100%;
    }

    .aiImageWrap {
        margin-top: 30px;
    }

    /* clientLogosSection */
    .clientLogosR {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .industryFooterWrap {
        padding: 0 15px;
    }

    /* supportSection */
    .supportTitle {
        font-size: 26px;
    }

    .supportRow {
        justify-content: flex-start;
    }

    .supportCol {
        width: 50%;
    }

    .supportCol:nth-child(2)::after {
        display: none;
    }

    .supportCol:nth-child(4)::after {
        display: none;
    }

    /* registerSection */
    .registerSection {
        padding: 40px 0;
    }

    .registerRow {
        flex-direction: column;
    }

    .registerFormCol,
    .registerInfoCol {
        width: 100%;
        padding: 0;
    }

    .registerFormCol {
        margin-bottom: 30px;
    }

    .registerInfoCol {
        padding-left: 0;
    }

    .registerRating {
        position: static;
    }

    .registerInfoWrap {
        gap: 12px;
    }
}

/* ============================================================
   #region Responsive - Mobile (max-width: 767px)
   ============================================================ */
@media screen and (max-width: 767px) {

    /* trustedEnterprises */
    .trustedEnterprises {
        padding: 40px 0;
    }

    .trustedEnterprises .sectionTitle {
        font-size: 18px;
    }

    .trustedEnterprises .sectionHighlightText {
        font-size: 15px;
    }

    .trustedEnterprises .logoItem img {
        max-width: 80px;
    }

    /* pricingSection */
    .pricingSection {
        padding: 20px 0 40px;
    }

    .pricingLabel {
        font-size: 17px;
    }

    .priceValue {
        font-size: 32px;
    }

    .footerNoteTitle {
        font-size: 17px;
    }

    .btnConsult,
    .btnDownload {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* trialBannerSection */
    .trialBannerTitle {
        font-size: 22px;
    }

    .trustedEnterprises .btnRegister,
    .trialBannerSection a.btnRegister {
        font-size: 16px;
        padding: 10px 24px;
    }

    /* aiFeaturesSection */
    .aiSectionSubTitle {
        font-size: 18px;
    }

    .aiSectionTitle {
        font-size: 22px;
    }

    .aiFeatureItemTitle {
        font-size: 16px;
    }

    .aiActionButtons {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    /* clientLogosSection */
    .clientLogosSection {
        padding: 40px 0;
    }

    .clientLogosR {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        padding: 0 15px;
    }

    .industryNote {
        font-size: 14px;
    }

    .btnExperienceAction {
        font-size: 14px;
    }

    .experienceLinkWrap {
        font-size: 14px;
    }

    /* supportSection */
    .supportSection {
        padding: 40px 0;
    }

    .supportTitle {
        font-size: 20px;
    }

    .supportRow {
        flex-direction: column;
        align-items: center;
    }

    .supportCol {
        width: 100%;
        padding: 0;
    }

    .supportCol:not(:last-child)::after {
        display: none;
    }

    .supportCol:not(:last-child) {
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .supportItem {
        max-width: 100%;
    }

    .supportHeader {
        justify-content: center;
    }

    /* registerSection */
    .registerSectionTitle {
        font-size: 22px;
    }

    .registerSectionSubtitle {
        font-size: 14px;
    }

    .registerSectionSubtitle br {
        display: none;
    }

    .registerInfoTitle {
        font-size: 15px;
    }

    .registerInfoList li {
        font-size: 14px;
    }

    .registerStars img {
        width: 18px;
        height: 18px;
    }

    .registerRatingText {
        font-size: 13px;
    }
}

/* #endregion */