.ui.input.round {
    border-top-left-radius: var(--radius-4xl);
    border-bottom-left-radius: var(--radius-4xl);
}

.ui.input.square {
    border-radius: 0px;
}

.ui.input.size-xl {
    height: 58px;
    padding-left: var(--space-5xl);
    padding-right: var(--space-5xl);
    font-size: 16px;
}

.ui.input.size-sm {
    height: 44px;
    padding-left: var(--space-5xl);
    padding-right: var(--space-5xl);
    font-size: 16px;
}

.ui.input.size-lg {
    height: 43px;
    padding-left: var(--space-5xl);
    padding-right: var(--space-5xl);
    font-size: 16px;
}


.ui.input.size-xs {
    height: 38px;
    padding-left: var(--space-4xl);
    padding-right: var(--space-4xl);
    font-size: 14px;
}

.ui.input.size-md {
    height: 48px;
    padding-left: var(--space-5xl);
    padding-right: var(--space-5xl);
    font-size: 20px;
}

.ui.input.fill.white {
    background-color: var(--white);
    color: var(--green);
}

.ui.input.fill.gray_50 {
    background-color: var(--gray_50);
    color: var(--green);
}

.ui.input.fill.blue_gray_50 {
    background-color: var(--blue_gray_50);
    color: var(--green);
}

.ui.input.fill.white_a700_1c {
    background-color: var(--color_white_a700_1c);
    color: var(--color_white_a700_a0);
}

.ui.input {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: text;
}

.ui.button.square {
    border-radius: 0px;
}

.ui.button.circle {
    border-radius: 50%;
}

.ui.button.round {
    border-radius: var(--radius-4xl);
}

.ui.button.size-xs {
    height: 20px;
}

.ui.button.size-4xl {
    height: 48px;
    padding-left: var(--space-6xl);
    padding-right: var(--space-11xl);
    font-size: 22px;
}

.ui.button.size-6xl {
    height: 36px;
}

.ui.button.size-5xl {
    height: 48px;
    padding-left: var(--space-5xl);
    padding-right: var(--space-5xl);
    font-size: 16px;
}

.ui.button.size-9xl {
    height: 92px;
    padding-left: var(--space-9xl);
    padding-right: var(--space-9xl);
}

.ui.button.size-8xl {
    height: 58px;
    font-size: 16px;
}

.ui.button.size-2xl {
    height: 38px;
    padding-left: var(--space-3xl);
    padding-right: var(--space-3xl);
}

.ui.button.size-7xl {
    height: 52px;
    padding-left: var(--space-11xl);
    padding-right: var(--space-11xl);
    font-size: 16px;
}

.ui.button.size-xl {
    height: 38px;
    padding-left: var(--space-11xl);
    padding-right: var(--space-11xl);
    font-size: 16px;
}

.ui.button.size-md {
    height: 28px;
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
    font-size: 16px;
}

.ui.button.size-sm {
    height: 24px;
    padding-left: var(--space-xs);
    padding-right: var(--space-xs);
}

.ui.button.size-3xl {
    height: 44px;
    padding-left: 28px;
    padding-right: 28px;
    font-size: 16px;
}

.ui.button.size-lg {
    height: 30px;
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
}

.ui.button.fill.white {
    background-color: var(--white);
    box-shadow: var(--shadow-xs);
}

.ui.button.fill.red_700 {
    background-color: var(--red_700);
    color: var(--white);
}

.ui.button.gradient.deep_orange_400_purple_400 {
    background: linear-gradient(40deg, #ff8a35, #ff3891, #ce2ebb);
    color: var(--white);
}

.ui.button.outline.green {
    color: var(--green);
    border: 2px solid var(--green);
}

.ui.button.fill.green {
    background-color: var(--green);
    color: var(--white);
}

.ui.button.fill.gray_50 {
    background-color: var(--gray_50);
    color: var(--green);
}

.ui.button.outline.white {
    border: 4px solid var(--white);
}

.ui.button.fill.cyan_900 {
    background-color: var(--cyan_900);
    color: var(--white);
}

.ui.button.fill.green_a700 {
    background-color: var(--color_green_a700);
    color: var(--white);
}

.ui.button.fill.blue_500 {
    background-color: var(--blue_500);
    color: var(--white);
}

.ui.button.fill.red_700_01 {
    background-color: var(--red_700_01);
    color: var(--white);
}

.ui.button.fill.gold {
    background-color: var(--gold);
    color: var(--white);
}

.ui.button.fill.black_900_33 {
    background-color: var(--black_900_33);
    color: var(--white);
}

.ui.button {
    text-align: center;
    display: flex;
    cursor: pointer;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.ui.selectbox.square {
    border-radius: 0px;
}

.ui.selectbox.round {
    border-radius: var(--radius-xl);
}

.ui.selectbox.size-md {
    height: 38px;
    padding-left: var(--space-4xl);
    padding-right: var(--space-4xl);
    font-size: 14px;
}

.ui.selectbox.size-sm {
    height: 34px;
    padding-left: var(--space-4xl);
    padding-right: var(--space-4xl);
    font-size: 16px;
}

.ui.selectbox.size-xs {
    height: 18px;
    padding-left: var(--space-2xl);
    font-size: 16px;
}

.ui.selectbox.fill.white {
    background-color: var(--white);
    color: var(--gold);
}

.ui.selectbox {
    display: flex;
}

.ui.text.size-textxs {
    font-size: 10px;
    font-weight: 400;
}

.ui.text.size-texts {
    font-size: 12px;
    font-weight: 400;
}

.ui.text.size-textmd {
    font-size: 14px;
    font-weight: 400;
}

.ui.text.size-textlg {
    font-size: 16px;
    font-weight: 400;
}

.ui.text.size-textxl {
    font-size: 18px;
    font-weight: 400;

    @media only screen and (max-width: 550px) {
        font-size: 15px;
    }
}

.ui.text.size-text2xl {
    font-size: 20px;
    font-weight: 400;
    width: 70%;

    @media only screen and (max-width: 550px) {
        font-size: 17px;
    }
}

.ui.text.size-text3xl {
    font-size: 21px;
    font-weight: 400;

    @media only screen and (max-width: 1440px) {
        font-size: 21px;
    }

    @media only screen and (max-width: 550px) {
        font-size: 17px;
    }
}






.ui.text.size-text6xl {
    font-size: 26px;
    font-weight: 400;

    @media only screen and (max-width: 1440px) {
        font-size: 26px;
    }

    @media only screen and (max-width: 1050px) {
        font-size: 24px;
    }

    @media only screen and (max-width: 550px) {
        font-size: 22px;
    }
}

.ui.text.size-text8xl {
    font-size: 41px;
    font-weight: 400;

    @media only screen and (max-width: 1440px) {
        font-size: 41px;
    }

    @media only screen and (max-width: 1050px) {
        font-size: 37px;
    }

    @media only screen and (max-width: 550px) {
        font-size: 34px;
    }
}

.ui.text {
    color: var(--green);
    font-family: Roboto;
}

.ui.heading.size-text4xl {
    font-size: 22px;
    font-weight: 500;

    @media only screen and (max-width: 1440px) {
        font-size: 22px;
    }

    @media only screen and (max-width: 550px) {
        font-size: 18px;
    }
}

.ui.heading.size-text5xl {
    font-size: 16px;
    font-weight: 500;

    @media only screen and (max-width: 1440px) {
        font-size: 24px;
    }

    @media only screen and (max-width: 1050px) {
        font-size: 22px;
    }

    @media only screen and (max-width: 550px) {
        font-size: 20px;
    }
}

.ui.heading.size-text7xl {
    font-size: 30px;
    font-weight: 500;

    @media only screen and (max-width: 1440px) {
        font-size: 30px;
    }

    @media only screen and (max-width: 1050px) {
        font-size: 28px;
    }

    @media only screen and (max-width: 550px) {
        font-size: 25px;
    }
}

.ui.heading.size-headingxs {
    font-size: 16px;
    font-weight: 600;

    @media only screen and (max-width: 550px) {
        font-size: 13px;
    }
}

.ui.heading.size-headings {
    font-size: 18px;
    font-weight: 700;

    @media only screen and (max-width: 550px) {
        font-size: 15px;
    }
}

.ui.heading.size-headingmd {
    font-size: 20px;
    font-weight: 600;

    @media only screen and (max-width: 550px) {
        font-size: 17px;
    }
}

.ui.heading.size-headinglg {
    font-size: 22px;
    font-weight: 900;

    @media only screen and (max-width: 1440px) {
        font-size: 22px;
    }

    @media only screen and (max-width: 550px) {
        font-size: 18px;
    }
}

.ui.heading.size-headingxl {
    font-size: 24px;
    font-weight: 900;

    @media only screen and (max-width: 1440px) {
        font-size: 24px;
    }

    @media only screen and (max-width: 1050px) {
        font-size: 22px;
    }

    @media only screen and (max-width: 550px) {
        font-size: 20px;
    }
}

.ui.heading.size-heading2xl {
    font-size: 30px;
    font-weight: 900;

    @media only screen and (max-width: 1440px) {
        font-size: 30px;
    }

    @media only screen and (max-width: 1050px) {
        font-size: 28px;
    }

    @media only screen and (max-width: 550px) {
        font-size: 25px;
    }
}

.ui.heading.size-heading3xl {
    font-size: 31px;
    font-weight: 900;

    @media only screen and (max-width: 1440px) {
        font-size: 31px;
    }

    @media only screen and (max-width: 1050px) {
        font-size: 29px;
    }

    @media only screen and (max-width: 550px) {
        font-size: 26px;
    }
}

.ui.heading.size-heading4xl {
    font-size: 32px;
    font-weight: 900;

    @media only screen and (max-width: 1440px) {
        font-size: 32px;
    }

    @media only screen and (max-width: 1050px) {
        font-size: 30px;
    }

    @media only screen and (max-width: 550px) {
        font-size: 27px;
    }
}

.ui.heading.size-heading5xl {
    font-size: 40px;
    font-weight: 900;

    @media only screen and (max-width: 1440px) {
        font-size: 40px;
    }

    @media only screen and (max-width: 1050px) {
        font-size: 38px;
    }

    @media only screen and (max-width: 550px) {
        font-size: 34px;
    }
}

.ui.heading.size-heading6xl {
    font-size: 41px;
    font-weight: 900;

    @media only screen and (max-width: 1440px) {
        font-size: 41px;
    }

    @media only screen and (max-width: 1050px) {
        font-size: 37px;
    }


    @media only screen and (max-width: 550px) {
        font-size: 34px;
    }
}

.ui.heading.size-heading7xl {
    font-size: 45px;
    font-weight: 700;

    @media only screen and (max-width: 1440px) {
        font-size: 45px;
    }

    @media only screen and (max-width: 1050px) {
        font-size: 41px;
    }

    @media only screen and (max-width: 550px) {
        font-size: 38px;
    }
}

.ui.heading.size-heading8xl {
    font-size: 64px;
    font-weight: 700;

    @media only screen and (max-width: 1440px) {
        font-size: 64px;
    }

    @media only screen and (max-width: 1050px) {
        font-size: 48px;
    }
}

.ui.heading {
    color: var(--green);
    font-family: 'Roboto';
}

.ui.table.size-xs tbody td {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.ui.table.size-sm tbody td {
    padding-top: var(--space-2xl);
}

.ui.table.simple tbody tr {
    background-color: var(--gray_50);
}

.container-xs {
    max-width: 1254px;
    width: 100%;
}

.container-spesifications{
    max-width: 1233px;
    width: 100%;
}
