@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Bold.eot");
    src: url("../fonts/Poppins-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Bold.woff2") format("woff2"), url("../fonts/Poppins-Bold.woff") format("woff"), url("../fonts/Poppins-Bold.ttf") format("truetype"), url("../fonts/Poppins-Bold.svg#Poppins-Bold") format("svg");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Medium.eot");
    src: url("../fonts/Poppins-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Medium.woff2") format("woff2"), url("../fonts/Poppins-Medium.woff") format("woff"), url("../fonts/Poppins-Medium.ttf") format("truetype"), url("../fonts/Poppins-Medium.svg#Poppins-Medium") format("svg");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Regular.eot");
    src: url("../fonts/Poppins-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.woff") format("woff"), url("../fonts/Poppins-Regular.ttf") format("truetype"), url("../fonts/Poppins-Regular.svg#Poppins-Regular") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans TC';
    src: url('../fonts/NotoSansTC-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}


:root {
    --color-white: #fff;
    --color-main: #f9f9fa;
    --color-darkblue: #2f455c;
    --color-dark: #152331;
    --color-brown: #212529;
    --color-cabbage: #3d4a39;
    --color-aqua: #f6faf9;
    --color-metal: #151e29;
    --color-lightblue: #1ccff9;
    --color-blue: #212868;
    --color-gray: #9193a6;
    --color-darkgrey: #6b7280;
    --color-cerulean: #02aee9;
    --color-matisse: #1f619a;
    --color-cerulean: #02aee9;
    --color-athens: #e5e7eb;
    --color-whitegrey: #f9fafb;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    background-color: var(--color-aqua);
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 700;
    height: 100%;
}

body.lock {
    overflow: hidden;
}

main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.container {
    width: 1232px;
    padding: 0 15px;
    margin: 0 auto;
}

.wrapper {
    overflow: hidden;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

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

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

a {
    text-decoration: none;
}

.btn-reset {
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.go-to-top {
    position: fixed;
    right: 15px;
    bottom: 5%;
    width: 70px;
    height: 70px;
    cursor: pointer;
    opacity: 0;
    border-radius: 50%;
    background: var(--color-darkblue);
    background-image: url("../images/arrow-top.svg");
    background-position: center;
    background-size: 27px 27px;
    background-repeat: no-repeat;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.go-to-top:hover {
    background: var(--color-dark);
    background-image: url("../images/arrow-top.svg");
    background-position: center;
    background-size: 27px 27px;
    background-repeat: no-repeat;
}

.go-to-top--show {
    opacity: 1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

@media (max-width: 900px) {
    .go-to-top {
        width: 50px;
        height: 50px;
        background-size: 17px 17px;
    }

    .go-to-top:hover {
        background-size: 17px 17px;
    }
}

.header {
    background-color: var(--color-white);
    -webkit-box-shadow: 11px 4px 10px rgba(47, 69, 92, 0.07);
    box-shadow: 11px 4px 10px rgba(47, 69, 92, 0.07);
    padding: 12px 0;
}

.header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__lefts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
    flex:1;
    padding: 0px 10px 0px 10px;
}

.header__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header__btn {
    display: inline-block;
    padding: 7px 12px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
    text-align: center;
    color: var(--color-aqua);
    background: var(--color-darkblue);
    border: 1px solid var(--color-darkblue);
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-right: 10px;
    height: 38px;
    transition: all 0.3s ease-in-out;
}

.header__btn.small{
    margin-right: 10px;
}

.header__btn:hover {
    background: var(--color-dark);
    border: 1px solid var(--color-dark);
}

.header__btn--exit {
    padding: 7px 25px;
}

.header__btn--history {
    padding: 4px 12px;
    border: 1px solid rgba(21, 30, 41, 0.2);
    border-radius: 4px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: -0.32px;
    color: var(--color-metal);
    background-color: var(--color-white);
    margin-right: 24px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header__btn--history:hover {
    border: 1px solid var(--color-darkblue);
    color: var(--color-darkblue);
}

.header .choices__list--dropdown .choices__item--selectable::after,
.header .choices__list[aria-expanded] .choices__item--selectable::after {
    display: none;
}

.header .choices[data-type*="select-one"] .choices__inner {
    padding-bottom: 3px;
}

.header .choices__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    margin: 0;
    min-height: 38px;
    padding: 3px 37px 3px 12px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
    border: 1px solid rgba(21, 30, 41, 0.2);
    border-radius: 4px;
    background-color: var(--color-white);
}

.header .choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: var(--color-main);
}

.header .choices__list--single {
    padding: 2px 0 2px 0;
}

.header .choices[data-type*="select-one"]:after {
    right: 12px;
    margin-top: 0;
    border: none;
    width: 16px;
    height: 16px;
    background-image: url("../images/arrow-down.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.header .choices[data-type*="select-one"].is-open:after {
    margin-top: 0px;
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.header .choices__list--dropdown {
    background-color: var(--color-white);
}

.header .choices__list--dropdown .choices__item--selectable,
.header .choices__list[aria-expanded] .choices__item--selectable {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
    color: var(--color-metal);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .choices__list--single .choices__item {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
    color: var(--color-metal);
    opacity: 1;
}

@media (min-width: 640px) {
    .header .choices__list--dropdown .choices__item--selectable {
        padding-right: 10px;
    }
}

.logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo__img {
    margin-right: 8.14px;
}

.logo__text {
    font-size: 22.3743px;
    line-height: 34px;
    color: var(--color-metal);
}

@media (max-width: 900px) {
    .header {
        padding: 10px 0;
    }

    .header__btn {
        font-size: 14px;
        line-height: 21px;
        padding: 4px 12px;
        margin-right: 14px;
        height: 29px;
    }

    .header .choices__inner {
        font-size: 14px;
        line-height: 21px;
        min-height: 29px;
        padding: 0px 37px 0px 12px;
    }

    .header .choices[data-type*="select-one"] .choices__inner {
        padding-bottom: 0px;
    }
}

.speed-test {
    padding: 0;
}

.speed-test__title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.5px;
    font-family: 'Segoe UI Symbol', 'Segoe UI', 'Noto Sans TC', sans-serif;
    background: linear-gradient(to bottom, #2A9FC4, #05497C);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 25px 0 25px 0;
}

.speed-test__info {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.test-info {
    display: inline-block;
    background: var(--color-white);
    -webkit-box-shadow: 11px 4px 10px rgba(47, 69, 92, 0.07);
    box-shadow: 11px 4px 10px rgba(47, 69, 92, 0.07);
    padding: 15px;
}

.test-info__text {
    margin: 0;
}

.test-info__text:not(:last-child) {
    margin: 0 0 12px 0;
}

.test-info__caption {
    display: inline-block;
    vertical-align: top;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
    color: var(--color-gray);
    margin-right: 10px;
    min-width: 70px;
}

.test-info__category {
    display: inline-block;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
    color: var(--color-darkblue);
    max-width: 375px;
}

@media (max-width: 900px) {
    .speed-test__title {
        font-size: 36px;
        line-height: 54px;
        margin: 0;
    }

    .test-info__caption {
        font-size: 14px;
        line-height: 21px;
        min-width: 38px;
    }

    .test-info__category {
        font-size: 14px;
        line-height: 21px;
        max-width: 325px;
    }
}

.test-results {
    text-align: center;
    padding: 30px 0 40px 0;
}

.test-results__page {
    padding: 0;
}

.test-results__title {
    margin: 0;
    font-size: 32px;
    line-height: 48px;
    text-align: center;
    color: var(--color-darkblue);
    margin-bottom: 20px;
}

.test-results__title span {
    margin-right: 10px;
}

.test-results__download {
    width: 24px;
    height: 24px;
    background-image: url("../images/download.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.test-table {
    background-color: var(--color-white);
    border-radius: 12px;
    display: -ms-grid;
    display: grid;
    padding: 30px 115px 30px 112px;
    -ms-grid-columns: 13.7% 1fr;
    grid-template-columns: 13.7% 1fr;
    margin-bottom: 10px;
}

.test-table__table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.test-table__captions-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    margin: 58px 0 25px 0;
}

.test-table__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.test-table__caption {
    font-size: 32px;
    line-height: 48px;
    color: var(--color-darkblue);
}

.test-table__title {
    font-size: 24px;
    line-height: 36px;
}

.test-table__title--ipv4 {
    color: var(--color-cerulean);
}

.test-table__title--ipv6 {
    color: var(--color-matisse);
}

.test-table__value {
    font-size: 40px;
    line-height: 60px;
}

.test-table__value--ipv4 {
    color: var(--color-cerulean);
    min-width: 180px;
}

.test-table__value--ipv6 {
    color: var(--color-matisse);
    min-width: 180px;
}

.test-table__unit {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: var(--color-darkblue);
}

.table-result {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 3fr;
    grid-template-rows: 3fr;
    -ms-grid-columns: 15% (1fr) [ 23 ];
    grid-template-columns: 15% repeat(23, 1fr);
    margin-bottom: 20px;
}

.table-result__caption-left {
    text-align: initial;
    display: block;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
    color: var(--color-metal);
    min-height: 45px;
    padding: 10px 12px 10px 20px;
    background: var(--color-white);
}

.table-result__caption-left:first-child {
    width: 100%;
    background-color: #e1e6f0;
    border-radius: 12px 0 0 0;
}

.table-result .caption-left {
    border-radius: 0 0 0 12px;
}

.table-result__caption {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 13px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
    color: var(--color-metal);
    background: #e1e6f0;
    min-height: 45px;
}

.table-result__caption:nth-of-type(24) {
    border-radius: 0 12px 0 0;
}

.table-result__value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 45px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
    padding: 10px 13px;
    color: var(--color-metal);
    background: var(--color-white);
    min-width: 24px;
}

.table-result__value.radius {
    border-radius: 0 0 12px 0;
}

.table-result__value:last-child {
    border-radius: 0 0 12px 0;
}

.graphs {
    display: -ms-grid;
    display: grid;
    gap: 24px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 60px;
}

.graphs__caption {
    margin: 0 0 15px 0;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
}

.graphs__caption--ipv4 {
    color: var(--color-cerulean);
}

.graphs__caption--ipv6 {
    color: var(--color-matisse);
}

.graphs__img {
    -webkit-box-shadow: 11px 4px 10px rgba(47, 69, 92, 0.07);
    box-shadow: 11px 4px 10px rgba(47, 69, 92, 0.07);
    border-radius: 12px;
    background-color: var(--color-white);
}

.test-memo__title {
    font-size: 32px;
    line-height: 48px;
    color: var(--color-darkblue);
    margin-bottom: 20px;
    text-align: center;
}

.test-memo__btn {
    margin-left: 10px;
    margin-right: auto;
    line-height: 24px;
    letter-spacing: -0.32px;
    color: var(--color-white);
    padding: 12px;
    background: linear-gradient(90.5deg, #1ccff9 -5.65%, #212868 101.74%);
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.test-memo__btn:hover {
    background: linear-gradient(90.5deg, #5ce0ff -5.65%, #2533b0 101.74%);
}

@media (max-width: 1300px) {
    .table-result {
        -ms-grid-columns: 15% (1fr) [ 23 ];
        grid-template-columns: 15% repeat(23, 1fr);
    }

    .table-result__caption-left {
        font-size: 14px;
        line-height: 21px;
        min-height: 41px;
        padding: 10px 12px;
    }

    .table-result__caption {
        padding: 10px 5px;
        font-size: 12px;
        line-height: 18px;
        min-height: 38px;
    }

    .table-result__value {
        font-size: 12px;
        line-height: 21px;
        padding: 10px 5px;
    }
}

@media (max-width: 900px) {
    .test-results__title {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .test-results__title span {
        margin-right: 10px;
    }

    .test-results__value {
        font-size: 12px;
    }

    .test-results__download {
        width: 18px;
        height: 18px;
    }

    .test-results__btn {
        padding: 10px 37px;
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 40px;
    }

    .graphs {
        display: -ms-grid;
        display: grid;
        row-gap: 10px;
        -webkit-column-gap: 24px;
        column-gap: 24px;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        margin-bottom: 40px;
    }

    .graphs__caption {
        margin: 0 0 15px 0;
        font-size: 20px;
        line-height: 30px;
    }

    .test-table {
        padding: 35px 67px 35px 67px;
        margin-bottom: 20px;
    }

    .test-table__col {
        gap: 4px;
    }

    .test-table__caption {
        font-size: 20px;
        line-height: 30px;
    }

    .test-table__caption-ipv4 {
        font-size: 20px;
        line-height: 30px;
    }

    .test-table__caption-ipv6 {
        font-size: 20px;
        line-height: 30px;
    }

    .test-table__value-ipv6 {
        font-size: 36px;
        line-height: 54px;
    }

    .test-table__value-ipv4 {
        font-size: 36px;
        line-height: 54px;
    }

    .test-memo__title {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 30px;
    }

    .test-memo__btn {
        font-size: 14px;
        line-height: 21px;
    }
}

@media (max-width: 600px) {
    .speed-test {
        padding: 20px 0 20px 0;
    }

    .speed-test__main-title {
        margin: 30px 0 30px 0 !important;
    }

    .test-table {
        padding: 15px;
        margin-bottom: 20px;
    }

    .test-table__col {
        gap: 4px;
    }

    .test-table__caption {
        font-size: 17px;
        line-height: 27px;
    }

    .test-table__title {
        font-size: 20px;
        line-height: 32px;
    }

    .test-table__captions-left {
        margin: 30px 0 28px 0;
    }

    .test-table__value {
        font-size: 24px;
        line-height: 34px;
    }
}

.server {
    padding: 20px 20px 20px 50px;
    max-width: 1000px;
    min-height: 150px;
    width: 100%;
}

.server_info {
    background: var(--color-white);
    border-radius: 10px;
    padding: 15px 50px 15px 50px;
    border: 1px solid #D4D4D4;
    max-width: 1000px;
    min-height: 150px;
    width: 100%;
}

.server__count {
    width: 61px;
    height: 61px;
    border: solid 2px transparent;
    border-radius: 50%;
    background-image: linear-gradient(var(--color-white), var(--color-white)), linear-gradient(90.5deg, var(--color-lightblue) -5.65%, var(--color-blue) 101.74%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    display: inline-block;
    position: relative;
}

.server__count::before {
    counter-increment: direction;
    content: counter(direction);
    font-size: 24px;
    line-height: 36px;
    background: linear-gradient(90.5deg, var(--color-lightblue) -5.65%, var(--color-blue) 101.74%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.server__list {
    counter-reset: direction;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

.server__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.server__caption {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: var(--color-darkblue);
    margin: 8px 0 10px 0;
}

.server__btn {
    padding: 12px 64.5px;
    background: linear-gradient(90.5deg, var(--color-lightblue) -5.65%, var(--color-blue) 101.74%);
    border-radius: 4px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.32px;
    color: var(--color-white);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.server__btn:hover {
    background: linear-gradient(90.5deg, #5ce0ff -5.65%, #2533b0 101.74%);
}

.server .choices__list--dropdown .choices__item--selectable::after,
.server .choices__list[aria-expanded] .choices__item--selectable::after {
    display: none;
}

.server .choices[data-type*="select-one"] .choices__inner {
    padding-bottom: 3px;
}

.server .choices__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    margin: 0;
    min-height: 48px;
    padding: 3px 37px 3px 12px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
    border: 1px solid rgba(21, 30, 41, 0.2);
    border-radius: 4px;
    background-color: var(--color-white);
    width: 193px;
}

.server .thread .choices__inner {
    padding: 3px 37px 3px 37px !important;
}

.server .choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: var(--color-main);
}

.server .choices__list--single {
    padding: 2px 0 2px 0;
}

.server .choices[data-type*="select-one"]:after {
    right: 12px;
    margin-top: 0;
    border: none;
    width: 16px;
    height: 16px;
    background-image: url("../images/arrow-down.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.server .choices[data-type*="select-one"].is-open:after {
    margin-top: 0px;
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.server .choices__list--dropdown {
    background-color: var(--color-white);
}

.server .choices__list--dropdown .choices__item--selectable,
.server .choices__list[aria-expanded] .choices__item--selectable {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
    color: var(--color-metal);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.server .choices__list--single .choices__item {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
    color: var(--color-metal);
    opacity: 1;
}

@media (min-width: 640px) {
    .server .choices__list--dropdown .choices__item--selectable {
        padding-right: 10px;
    }
}

@media (max-width: 900px) {
    .server__caption {
        font-size: 20px;
        line-height: 30px;
        margin: 8px 0 10px 0;
    }

    .server .choices__inner {
        min-height: 41px;
        padding: 3px 37px 3px 12px;
        font-size: 14px;
        line-height: 21px;
        width: 156px;
    }

    .server__btn {
        padding: 10px 57px;
        font-size: 14px;
        line-height: 21px;
    }
}

.group__title {
    display: flex;
    justify-content: center;
}

.thread .choices__item--selectable {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.setting__title {
    margin: 10px 0;
}

.setting__holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--color-white);
    padding: 40px 0;
    margin-bottom: 20px;
}

.setting__table {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 7 ];
    grid-template-columns: repeat(7, 1fr);
    -ms-grid-rows: 2fr;
    grid-template-rows: 2fr;
    margin-bottom: 40px;
    text-align: center;
}

.setting .table-result__value:last-child {
    border-radius: 0 0 0 0;
}

.setting .choices {
    margin-bottom: 10px;
}

.setting .choices__list--dropdown .choices__item--selectable::after,
.setting .choices__list[aria-expanded] .choices__item--selectable::after {
    display: none;
}

.setting .choices[data-type*="select-one"] .choices__inner {
    padding-bottom: 0;
}

.setting .choices__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    margin: 0;
    min-height: 48px;
    padding: 0px 0px 0px 0px;
    font-weight: 400;
    color: var(--color-metal);
    line-height: 24px;
    letter-spacing: -0.32px;
    border: 1px solid var(--color-darkblue);
    border-radius: 4px;
    background-color: var(--color-white);
    width: 193px;
    height: 48px;
}

.setting .choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: var(--color-main);
}

.setting .choices__list--single {
    padding: 0;
}

.setting .choices[data-type*="select-one"]:after {
    right: 12px;
    margin-top: 0;
    border: none;
    width: 16px;
    height: 16px;
    background-image: url("../images/arrow-down.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.setting .choices[data-type*="select-one"].is-open:after {
    margin-top: 0px;
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.setting .choices__list--dropdown {
    background-color: var(--color-white);
}

.setting .choices__list--dropdown .choices__item--selectable,
.setting .choices__list[aria-expanded] .choices__item--selectable {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
    color: var(--color-metal);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 48px;
    padding: 0;
}

.setting .choices__list--single .choices__item {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
    color: var(--color-metal);
    opacity: 1;
}

.setting .choices__item--selectable {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.settings__qr{
    width: 230px;
    height: 255px;
}

.setting-inputs__title {
    font-family: Arial, serif;
    font-weight: 700;
    text-align: center;
    font-size: 24px;
    line-height: 36px;
    color: #333333;
}


.setting-inputs__title_sub {
    font-size: 24px;
    line-height: 18px;
    text-align: center;
    color: var(--color-darkblue);
    margin: 0 0 10px 0;
}

.counters {
    font-size: 48px;
    line-height: 36px;
    text-align: center;
    color: var(--color-darkblue);
    margin: 0 0 10px 0;
}

.setting-inputs__input {
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
    color: var(--color-metal);
    opacity: 0.7;
    border: 1px solid var(--color-darkblue);
    border-radius: 4px;
    width: 193px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.setting-inputs__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
    color: var(--color-white);
    width: 193px;
    height: 48px;
    background: linear-gradient(90.5deg, #1ccff9 -5.65%, #212868 101.74%);
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.setting-inputs__btn:hover {
    background: linear-gradient(90.5deg, #5ce0ff -5.65%, #2533b0 101.74%);
}

.info {
    text-align: center;
}

.info__title {
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
    color: var(--color-gray);
    margin-bottom: 10px;
}

.info__text {
    font-family: Arial, serif;
    font-weight: 700;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    text-align: center;
    color: #333333;
    margin: 0;
}

@media (max-width: 900px) {
    .setting__title {
        margin-bottom: 30px;
    }

    .setting__qr-code {
        width: 212px;
        height: 212px;
    }

    .choices__inner {
        font-size: 14px;
        line-height: 21px;
    }

    .setting-inputs__input {
        font-size: 14px;
        line-height: 21px;
    }


    .info__title {
        font-size: 14px;
        line-height: 21px;
    }
}

.table-result-new {
    width: 100%;
    border-spacing: 0px;
    border-collapse: collapse;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: -0.32px;
    background-color: #fff;
    color: var(--color-dark);
    margin-bottom: 20px;
    margin-top: 5px;
}

.table-result-new th {
    background-color: #e1e6f0;
}


.table-result-new .table-main-title {
    width: 23%;
    font-weight: 600;
    padding: 10px 0 8px 0;
}

.table-result-new .table-title {
    background-color: #e1e6f0;
    font-weight: 600;
}

.pass-rate {
    width:40%
}

.table-result-new .table-title-main {
    background-color: #e1e6f0;
    font-weight: bold;
    font-size: 25px;
}

.table-result-new th,
.table-result-new td {
    padding: 8px 0;
    text-align: center;
}

.table-result-new thead tr:last-child th {
    font-size: 16px;
    color: var(--color-dark);
}

.history {
    padding-top: 70px;
}

.history__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.history__title {
    display: inline-block;
    text-align: start;
    margin: 0;
    margin-right: 68px;
}

.history__table {
    display: -ms-grid;
    display: grid;
    text-align: start;
    -ms-grid-columns: 13.0% 15.0% 10.0% 20.0% 12.0% 8.0% 22.0%;
    grid-template-columns: 13.0% 15.0% 10.0% 20.0% 12.0% 8.0% 22.0%;
}

.history__date {
    height: 48px;
    width: 233px;
    text-align: center;
    padding: 12px 15px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
    color: var(--color-brown);
    background: var(--color-white);
    border: 1px solid #cfd4d9;
    -webkit-box-shadow: 0px 0px 0px #cbdafc;
    box-shadow: 0px 0px 0px #cbdafc;
    border-radius: 4px;
    margin-right: 16px;
}

.history__arrows {
    width: 24px;
    height: 24px;
    background-image: url("../images/arrows.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.history-table__caption {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding: 10px 20px;
}

.history-table__caption:first-child {
    border-radius: 12px 0 0 0;
}

.history-table__caption:nth-of-type(7) {
    border-radius: 0 12px 0 0;
}

.history-table__value {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding: 10px 20px;
}

.daterangepicker .drp-selected {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    letter-spacing: -0.32px;
    color: var(--color-darkgrey);
}

.daterangepicker.show-calendar .drp-buttons {
    padding: 20px;
}

.daterangepicker .drp-buttons .btn {
    margin-left: 8px;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: -0.32px;
    color: var(--color-metal);
    background: var(--color-white);
    border: 1px solid var(--color-athens);
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    padding: 10px 12px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.daterangepicker .drp-buttons .btn:hover {
    background-color: var(--color-cerulean);
    color: var(--color-white);
    cursor: pointer;
}

.cancelBtn {
    margin-left: 20px !important;
}

.daterangepicker .ranges li {
    font-family: "Poppins", sans-serif;
    padding: 10px 15px;
    cursor: pointer;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.32px;
    color: var(--color-metal);
    border: 1px solid transparent;
    background: var(--color-whitegrey);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.daterangepicker .ranges li:hover {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.32px;
    color: var(--color-metal);
    background: var(--color-white);
    border: 1px solid var(--color-athens);
    border-radius: 6px;
}

.daterangepicker .ranges ul {
    width: 134px;
    margin-top: 16px;
    margin-bottom: 16px;
    background: var(--color-whitegrey);
}

.daterangepicker.show-calendar .ranges {
    margin-top: 0px;
}

.daterangepicker:after {
    border-bottom: 6px solid var(--color-whitegrey);
}

.daterangepicker .ranges {
    margin-top: 0px;
    width: 166px;
    background: var(--color-whitegrey);
    padding-bottom: 132px;
}

.daterangepicker .ranges li.active {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.32px;
    color: var(--color-metal);
    background: var(--color-white);
    border: 1px solid var(--color-athens);
    border-radius: 6px;
}

.daterangepicker th.month {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: var(--color-metal);
}

.daterangepicker .calendar-time {
    margin: 13px auto 13px auto;
}

.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.secondselect,
.daterangepicker select.ampmselect {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.32px;
    color: var(--color-metal);
    width: 57px;
    height: 27px;
    border: 1px solid var(--color-athens);
    border-radius: 6px;
    background: transparent;
}

thead tr:last-child th {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.32px;
    color: var(--color-darkgrey);
}

.daterangepicker td.off {
    color: rgba(145, 147, 166, 0.4);
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: var(--color-cerulean);
    border-color: transparent;
    color: var(--color-white);
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
    background-color: var(--color-cerulean);
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.32px;
    min-width: 46px;
    width: 46px;
    height: 46px;
}

.daterangepicker .drp-calendar {
    max-width: 342px;
}

@media (max-width: 900px) {
    .history {
        padding-top: 40px;
    }

    .history__date {
        width: 209px;
        line-height: 21px;
    }

    .drp-calendar.left {
        height: 465px;
    }

    .daterangepicker .drp-calendar.right .calendar-table {
        display: none;
    }

    .drp-calendar.right .calendar-time {
        position: absolute;
        left: 225px;
        bottom: 80px;
    }

    .drp-calendar.left .calendar-time:before {
        content: "From time:        ";
        font-family: "Poppins", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -0.32px;
        color: var(--color-metal);
    }

    .drp-calendar.right .calendar-time:before {
        content: "To time:        ";
        font-family: "Poppins", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -0.32px;
        color: var(--color-metal);
    }
}

.step__table {
    display: -ms-grid;
    display: grid;
    text-align: start;
    -ms-grid-columns: 4.86% 14.35% 11.49% 10.8% 10.9% 14.35% 11.49% 10.8% 10.95%;
    grid-template-columns: 4.86% 14.35% 11.49% 10.8% 10.9% 14.35% 11.49% 10.8% 10.95%;
}

.hidden {
    display: none;
}

.step__arrows {
    width: 24px;
    height: 24px;
    background-image: url("../images/filter.svg");
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.step-table__caption {
    padding: 10px;
}

.step-table__caption:first-child {
    border-radius: 0 0 0 0;
}

.step-table__caption:nth-of-type(9) {
    border-radius: 0 0 0 0;
}

.step-table__caption:nth-of-type(6) {
    border-radius: 0 0 0 0;
}

.history-table__value--even {
    background-color: rgba(225, 230, 240, 0.5);
}

@media (max-width: 900px) {
    .step-table__caption {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.textarea {
    position: absolute;
    top: -152px;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
}

.textarea__title {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.32px;
    color: var(--color-darkblue);
    margin-bottom: 5px;
    text-align: center;
}

@media (max-width: 768px) {
    .textarea {
        left: 15px;
        right: 15px;
        transform: translate(0);
    }

    textarea {
        width: 100%;
    }
}


.popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(47, 69, 92, 0.2);
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    overflow-x: hidden;
}

.popup.open {
    opacity: 1;
    visibility: visible;
}

.popup.open .popup__content {
    opacity: 1;
}

.popup__area {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.popup__body {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 10px;
}

.popup__content {
    background-color: var(--color-white);
    color: #000;
    min-width: 700px;
    padding: 60px;
    position: relative;
    border-radius: 14px;
    opacity: 0;
}

.popup__content.highspeed {
    padding:20px; box-shadow: 2px 10px 15px 5px rgba(0, 0, 0, 0.7);
}


.popup__close {
    width: 15px;
    height: 15px;
    background-image: url("../images/close.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    font-weight: 400;
    font-size: 30px;
    line-height: 20px;
    color: var(--color-metal);
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 14px;
    color: #000;
    text-decoration: none;
}

.popup__close.highspeed {
    position:static;
    width: 10px;
    height: 10px;
}

.popup__title {
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: var(--color-metal);
    margin-bottom: 24px;
}

.popup__title.highspeed {
    flex: 1; text-align:left; font-size:24px; margin: 0px;
}

.popup__highspeed {
    display: flex; justify-content: flex-start; align-items: center; margin-bottom: 12px;
}

.popup__highspeed__Line {
    border-top: 1px solid #999; height: 1px; margin-bottom: 10px;
}

.popup__highspeed__tip {
    margin-bottom: 5px;
}

.popup__highspeed__closeDiv {
    width: 24px;height: 24px;display: flex;justify-content: center;align-items: center;border: 1px solid;border-radius: 100%;
}

.form {
    text-align: center;
}

.form__input {
    margin: auto;
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.32px;
    color: var(--color-brown);
    background: var(--color-white);
    border: 1px solid #cfd4d9;
    -webkit-box-shadow: 0px 0px 0px #cbdafc;
    box-shadow: 0px 0px 0px #cbdafc;
    border-radius: 4px;
    padding: 6px 12px;
    margin-top: 10px;
}

.form__btn {
    display: block;
    width: auto;
    height: auto;
    padding: 7px 12px;
    background: var(--color-cerulean);
    border: 1px solid var(--color-cerulean);
    margin: 24px auto 10px auto;
}

.form__btn--id {
    border: 1px solid #cb9b15;
    background: #cb9b15;
    margin: 0 auto;
}

.form__btn--id:hover {
    background: #84691f;
    border: 1px solid #84691f;
}

.form__chekbox {
    cursor: pointer;
}

.form__chekbox:first-child {
    margin-bottom: 10px;
}

.form__chekbox label {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.32px;
    color: var(--color-brown);
}

.form__input:first-child {
    margin-bottom: 10px;
}

input::-webkit-input-placeholder {
    color: var(--color-gray);
}

input:-ms-input-placeholder {
    color: var(--color-gray);
}

input::-ms-input-placeholder {
    color: var(--color-gray);
}

input::placeholder {
    color: var(--color-gray);
}

.footer {
    position: relative;
    background-color: var(--color-white);
    padding: 10px 0;
    -webkit-box-shadow: 11px -4px 10px rgba(47, 69, 92, 0.07);
    box-shadow: 11px -4px 10px rgba(47, 69, 92, 0.07);
}

.footer--area {
    margin-top: 152px;
}

.footer__beta {
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.32px;
    color: var(--color-darkblue);
}

.footer__time {
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.32px;
    color: var(--color-darkblue);
}

@media (max-width: 900px) {
    .footer__beta {
        font-size: 14px;
        line-height: 21px;
    }

    .footer__time {
        font-size: 14px;
        line-height: 21px;
    }
}

.table-value__ipv4 {
    color: #1b1e21;
}

.table-value__ipv6 {
    color: #007bff;
}

.low-throughput {
    color: #b21f2d;
}

.setting-inputs {
    width: 379px;
}

.memo__container {
    display: flex;
    justify-content: center;
}

.memo__container > div {
    display: flex; justify-content: flex-start; align-items: flex-end;
}

.memo__container > div > span {
    margin-left: 8px; color: #9193a6;
}

.memo__input {
    margin-left: auto;
}

.dropdown {
    width: 38px;
    height: 38px;
    background: url("../images/userIcon.svg") no-repeat;
    background-size: contain;
    border: none;
    cursor: pointer;
    color: #ec0808;
}

.user__icon-dropdown {
    float: right;
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    margin-right: 15px;
}

.language__icon-dropdown {
    float: right;
    position: relative;
    display: none;
    margin-bottom: 0;
    margin-right: 15px;
}

.info__icon-button {
    width: 38px;
    height: 38px;
    background: url("../images/letter-i 1.svg") no-repeat;
    background-size: contain;
    border: none;
    cursor: pointer;
    margin-right: 15px;
}

.dropdown.language {
    width: 58px;
    height: 38px;
    background: url("../images/world-grid-off.svg") no-repeat;
    border: none;
    cursor: pointer;
    margin: 0px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 200px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
    right: 0;
    z-index: 1;
}

.login__clone{
    display: block;
}

.dropdown-content > h4 {
    text-align: center;
    border-bottom: 1px solid #dddddd;
    margin: 0;
    padding: 15px;
    background-color: #e3e3e3;
}

.dropdown-content a {
    color: var(--color-metal);
    padding: 16px 16px 12px 16px;
    display: block;
    font-weight: normal;
    border-bottom: 1px solid #dddddd;
}

.user__icon-dropdown a:hover {
    background-color: var(--color-main);
}

.languageIconDropdown a:hover {
    background-color: var(--color-main);
}

.show {
    display: block;
}

.select-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.select-group-info {
    white-space: pre-wrap;
    word-break: break-all;
    max-width: 350px;
    margin-top: 10px;
}

.select-label {
    margin-right: 10px;
    width: 80px;
    font-family: Arial, serif;
    font-weight: 400;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 100%;
    color: #333333;
}

.setting-inputs__select {
    font-family: Arial, serif;
    font-weight: 400;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 100%;
    color: #333333;
}

.flex-container-align-right {
    display: flex;
    justify-content: flex-end;
}

.select-group.align-right {
    margin-left: auto;
}

.left-align {
    text-align: left;
}

#pass_summary__table tr td:nth-child(2), #pass_summary__table tr td:nth-child(2) {
    background-color: #eceff4;
    width: 20%;
}

#pass_summary__table tr td:nth-child(2), #pass_summary__table tr td:nth-child(3) {
    background-color: #eceff4;
    width: 20%;
}

#pass_summary__table tr td:nth-child(1), #pass__summary_table th:nth-child(1),
#statistic__table tr td:nth-child(1), #statistic__table th:nth-child(1),
#result__table tr td:nth-child(1), #result__table th:nth-child(1) {
    width: 20%;
}

.web2web_input {
    width: 100%;
    margin: 5px 0;
}
.popup__warning_form {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.level-zone1 {
    width:200px; padding:4px 4px 4px 4px;
}

.level-zone1 > div:nth-child(1) {
    font-size:16px;
}

.level-zone1 > ul:nth-child(2) {
    padding-left:0px; line-height:23px; margin-top:4px; color:#383438; margin-bottom:12px;
}

.level-zone1 > ul:nth-child(2) > li {
    list-style-type:none; padding:4px; display:flex; cursor:pointer
}

.level-zone1 > ul:nth-child(2) > li:hover{
	color:#0000ff
}

.level-zone1 > ul:nth-child(2) > li > span {
	padding-right:4px
}

.level-zone1 > div:nth-child(3) {
    font-size:16px;
}

.level-zone1 > ul:nth-child(4) {
    padding-left:0px; line-height:23px; margin-top:4px; color:#383438
}

.level-zone1 > ul:nth-child(4) > li {
    list-style-type:none; padding:4px; display:flex; cursor:pointer
}

.level-zone1 > ul:nth-child(4) > li:hover{
	color:#0000ff
}

.level-zone1 > ul:nth-child(4) > li > span {
    padding-right:4px
}

.level-zone2 {
    flex:1; padding:4px 4px 4px 4px;
}

.level-zone2 > div:nth-child(1) {
    font-size:16px;
}

.level-zone2 > ul:nth-child(2) {
	padding-left:0px; line-height:23px; margin-top:4px; display:flex; flex-wrap:wrap; color:#383438
}

.level-zone2 > ul:nth-child(2) > li {
    list-style-type:none; padding:4px; display:flex; cursor:pointer;
}

.level-zone2 > ul:nth-child(2) > li:hover{
	color:#0000ff
}

.level-zone2 > ul:nth-child(2) > li > span {
    padding-right:4px
}

.level-zone2 > ul:nth-child(4) > li > span {
    padding-right:4px
}

.popup__warning_form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.popup__warning_btn {
    width: 100px;
    margin: 10px;
}
.popup__warning_btn {
    width: 100px;
    margin: 10px;
}

.server .choices__list--single.selectChoiceAdjust{
    font-size:16px;
    padding:8px
}

.setting .choices__list--single.selectChoiceAdjust{
    font-size:16px;
    padding:8px
}

.level-line1 {
    width:1px; margin:0px 4px 0px 4px; border-right:1px solid #d0d2d4;
}

.testmode__container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    background-color: #05497C;
    color: #FFFFFF;    
}

.testmode__button__div {
    border-width: 0px 0px 0px 1px;
    border-left-color: #FFF;
    border-style:solid;
    height: 40px;
    min-width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.testmode__button__div.right {
    border-right-width: 1px;
    border-right-color: #FFF;
}

.testmode__button__div>button[data-select="1"]  {
    background-color: #2A9FC4;
}

.testmode__button__div>button {
    width: 100%;
    height: 100%;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    position: relative;
    background-color: #05497C;
    padding: 0px 15px 0px 15px;
}

.testmode__button__div > button:focus {
    outline:none;
}

.testmode__button__div > button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #2A9FC4, #05497C);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.testmode__button__div > button[data-select="0"]:hover::after {
    opacity: 1;
}

.testmode__button__div > button[data-select="0"]:focus::after {
    opacity: 1;
}

.testmode__button__div>button>div {
    position: relative;
    font-size: 18px;
    z-index: 1;
}

.testmode__button__div>button:active>div {
    top:1px
}

.testmode__button__div > button[data-select="0"]:disabled {
    background-color: #999999;
    cursor: default;
    pointer-events: none;
}

.testmode__button__div > button[data-select="1"]:disabled {
    cursor: default;
    pointer-events: none;
}

.testmode__button__div > button:disabled::after {
    opacity: 0;
}

.server_info > div {
    display: flex; justify-content: center; align-items: center;
}

.server_info > div > div {
    min-height: 50px; display: flex; justify-content: flex-start; align-items: center;
}

.server_info > div > div img {
    margin: 0px 20px 0px 0px;
}

.tableTmp1 {
    border-collapse: collapse; width: 100%;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: normal;
    border-top:5px solid #FFF
}

.tableTmp1 tr:last-child th {
    font-size: 20px;
    border: 4px solid #FFF;
    padding: 8px; text-align: center;
    background-color: #F3F3F3;
    font-weight:bold;
    color: #000;
}

.tableTmp1 td {
    font-size: 20px;
    border: 4px solid #FFF;
    padding: 8px; text-align: center;
    background-color: #F3F3F3;
}

.tableTmp2 {
    border-collapse: collapse; width: 100%;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: normal;
    border-top:5px solid #EEF0F3
}

.tableTmp2 tr:last-child th {
    font-size: 20px;
    border: 4px solid #EEF0F3;
    padding: 8px; text-align: center;
    background-color: #E1E1E1;
    font-weight:bold;
    color: #000;
    text-align: left
}

.tableTmp2 th:nth-of-type(2) {
    width: 260px;
}

.tableTmp2 th:nth-of-type(3) {
    width: 220px;
}

.tableTmp2>tbody tr:nth-child(even) td {
    font-size: 20px;
    border: 4px solid #EEF0F3;
    padding: 8px;
    background-color: #F7F7F7;
}

.tableTmp2>tbody tr:nth-child(odd) td {
    font-size: 20px;
    border: 4px solid #EEF0F3;
    padding: 8px;
    background-color: #FFFFFF;
}

.tableTmp2>tfoot td {
    font-size: 20px;
    border: 4px solid #EEF0F3;
    padding: 8px; text-align: center;
    background-color: #FFFFFF;
}

.popup__highspeed__td_align_left{
    text-align: left;
}

.popup__highspeed__td_align_left span{
    word-break: break-all;
}

.popup__highspeed__div_manager{
    display:flex; justify-content: center; align-items: center; position: relative;
}

.popup__highspeed__div_manager > input {
    height:20px; width: 20px;
}

.popup__highspeed__div_manager > label {
    margin-left: 6px; position: relative; top:1px
}

.popup__highspeed__button_delete{
    font-size: 18px; padding-top: 3px;
}

.popup__highspeed__button_add{
    font-size: 18px; padding-top: 3px; border: none; outline: none; cursor: pointer;
    background-color: transparent;
    width: 24px;
}

.popup__highspeed__input_account{
    width: 100%; height: 100%; padding: 0px; outline:none; border: none;
}

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

.server_info > .top{
    margin-bottom: 12px;
}

.server_info > .top div:nth-child(1){
    width: 395px;
}

.server_info > .top div:nth-child(1) tr:nth-child(1) td:nth-child(2) {
    padding: 4px 0px 2px 0px;
}

.server_info > .top div:nth-child(1) tr:nth-child(2) td:nth-child(1) {
    padding: 2px 0px 4px 0px;
}

.server_info > .top div:nth-child(2){
    flex: 1;
}

.server_info > .top div:nth-child(2) tr:nth-child(1) td:nth-child(2) {
    padding: 4px 0px 2px 0px;
}

.server_info > .top div:nth-child(2) tr:nth-child(2) td:nth-child(1) {
    padding: 2px 0px 4px 0px;
}

.server_info > .bottom{
    margin-bottom: 12px;
}

.server_info > .bottom div:nth-child(1){
    width: 395px;
}

.server_info > .bottom div:nth-child(1) tr:nth-child(1) td:nth-child(2) {
    padding: 4px 0px 2px 0px;
}

.server_info > .bottom div:nth-child(2){
    flex: 1;
}

.server_info > .bottom div:nth-child(2) tr:nth-child(1) td:nth-child(2) {
    padding: 4px 0px 2px 0px;
}

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

.test_zone > div > ul > li:nth-child(2) > div:nth-child(3) {
    display: flex; position: relative;
}

.test_zone > div > ul > li:nth-child(2) > div:nth-child(3) > button {
    position: absolute; left:222px; cursor: pointer; border: none; background-color: transparent; width:38px; height:32px; top:8px; display: flex; align-items: center; justify-content: center;
}

.test_zone > div > ul > li:nth-child(2) > div:nth-child(3) > button.heightSpeed {
    left:193px;
}

.test_zone > div > ul > li:nth-child(2) > div:nth-child(3) > button > img {
    height: 24px;
    max-width:100%;
}

.test_zone > div > ul > li:nth-child(7) > input {
    height: 48px; margin: 0px;
}

.test_zone_line{
    margin: 10px 0px 10px 0px; width: 100%; display: flex; justify-content: center;
}

.test_zone_line > div{
    border-top: 1px solid #05497C; height: 1px; width: 100%;
}

div[data-id="ipv4"] #charts__ip_v4_s2w {
    margin-bottom:10px
}

div[data-id="ipv4"] > h2 {
    margin-bottom:10px
}

div[data-id="ipv4"] #label_icpm-IPv4_s2w {
    text-align: left; margin-top: 45px; margin-bottom: 10px; font-weight: normal;
    font-size: 20px;
}

div[data-id="ipv4"] #label_icpm-IPv4_s2w span:nth-child(1) {
    word-break: keep-all;
    white-space: nowrap;
    margin-right: 4px;
    color: #2E6D93;
    font-weight: bold;
}

div[data-id="ipv4"] #charts_icpm_ip_v4_s2w {
    margin-bottom:0px; margin-top:15px; display:block
}

div[data-id="ipv4"] #chart__icpm-IPv4__s2w {
    background-color:#F3F3F3; box-shadow:none
}

div[data-id="ipv4"] #label_route-IPv4_s2w {
    text-align: left; margin-top: 45px; margin-bottom: 10px; font-weight: normal;
    font-size: 20px;
}

div[data-id="ipv4"] #label_route-IPv4_s2w span:nth-child(1) {
    word-break: keep-all;
    white-space: nowrap;
    margin-right: 4px;
    color: #2E6D93;
    font-weight: bold;
}

div[data-id="ipv4"] tr[data-temp="1"] {
    display:none
}

div[data-id="ipv4"] td[colspan="4"] {
    text-align: left; font-weight: normal;
}

div[data-id="ipv6"] #charts__ip_v6_s2w {
    margin-bottom:10px
}

div[data-id="ipv6"] > h2 {
    margin-bottom:10px
}

div[data-id="ipv6"] #label_icpm-IPv6_s2w {
    text-align: left; margin-top: 10px; margin-bottom: 10px; font-weight: normal;
}

div[data-id="ipv6"] #charts_icpm_ip_v6_s2w {
    margin-bottom:0px; margin-top:15px; display:block
}

div[data-id="ipv6"] #chart__icpm-IPv6__s2w {
    background-color:#F3F3F3; box-shadow:none
}

div[data-id="ipv6"] #label_route-IPv6_s2w {
    text-align: left; margin-top: 10px; margin-bottom: 10px; font-weight: normal;
}

div[data-id="ipv6"] tr[data-temp="1"] {
    display:none
}

div[data-id="ipv6"] td[colspan="4"] {
    text-align: left; font-weight: normal;
}

.flex-visible {
    display: flex;
}

.single_sign-on{
    display: flex; justify-content: center; align-items: center; padding: 4px;
}

.single_sign-on a{
    padding-left: 4px;
}

.test-.popup__content {
    text-align: left; margin-top: 45px; margin-bottom: 10px; font-weight: normal; display: flex;
}

.test-table__description {
    display: flex;
    margin-top: 45px;
    margin-bottom: 10px;
}

.test-table__description > span {
    word-break: keep-all;
    white-space: nowrap;
    margin-right: 4px;
    color: #2E6D93;
    font-weight:bold;
    font-size: 20px;
}

.test-table__description > div {
    font-weight:normal;
    text-align: left;
    font-size: 20px;
}

.test-table__caption__wait {
    margin-bottom: 40px;
    font-size: 32px;
    line-height: 48px;
    color: var(--color-darkblue);
    display: none;
    flex-wrap: nowrap;
    justify-content: center;
}

.test-table__caption__wait > span:nth-child(2) {
    width: 40px;
    text-align: left;
}

.test-div__Threshold {
    margin: 0px 0px 40px 0px;
    text-align: left;
}

.test-div__Threshold > div {
    font-size: 18px;
    font-weight: normal;
    color: #2E6D93;
    margin-bottom: 8px;
}

.test-div__Threshold > table {
    border-collapse: collapse; 
    width: 100%;
    font-weight: normal;
    text-align: left;
}

.test-div__Threshold > table > thead > tr th {
    padding: 8px;
    font-size: 16px;
    color: #FFF;
    background-color: #2E6D93;
}

.test-div__Threshold > table > thead > tr th.left {
    border-top: 2px solid #2E6D93;
    border-right: 2px solid #ECEFF2;
    border-left: 2px solid #2E6D93;
    border-bottom: 2px solid #ECEFF2;
}

.test-div__Threshold > table > thead > tr th.middle {
    border-top: 2px solid #2E6D93;
    border-right: 2px solid #ECEFF2;
    border-left: 2px solid #ECEFF2;
    border-bottom: 2px solid #ECEFF2;
}

.test-div__Threshold > table > thead > tr th.right {
    border-top: 2px solid #2E6D93;
    border-right: 2px solid #2E6D93;
    border-left: 2px solid #ECEFF2;
    border-bottom: 2px solid #ECEFF2;
}

.test-div__Threshold > table > tbody > tr td {
    padding: 8px;
    font-size: 16px;
    background-color: #FFF;
    border: 2px solid #ECEFF2;
}

.popup__highspeed__tr_line{
    border:4px solid #EEF0F3;
}

.popup__highspeed__tr_line td[data-hidden="1"]{
    visibility: hidden;
}

.popup__highspeed__tr_line td[data-hidden="1"].norightLine{
    border-right-color: #FFF;
}

.table-result-dynamic {
    width:100%;
    border-collapse: collapse;
    font-weight: normal;
    margin-bottom: 20px;
    border-radius: 10px;
}

.table-result-dynamic > tbody > tr td {
    min-width: 38px; 
    padding:10px 4px 10px 4px;
    background-color: var(--color-white);
}

.table-result-dynamic > tbody > tr:first-child td {
    background-color: #e1e6f0;
}

.table-result-dynamic > tbody > tr td:first-child {
    padding-left: 10px;
}

.table-result-dynamic > tbody > tr:first-child td:first-child {
    width: 165px;
    border-radius:10px 0px 0px 0px;
}

.table-result-dynamic > tbody > tr:first-child td:last-child {
    width: 96px;
    border-radius:0px 10px 0px 0px;
}

.table-result-dynamic > tbody > tr:last-child td:first-child {
    width: 165px;
    border-radius:0px 0px 0px 10px;
}

.table-result-dynamic > tbody > tr:last-child td:last-child {
    width: 96px;
    border-radius:0px 0px 10px 0px;
}

.table-result-dynamic > tbody > tr td:nth-last-child(2) {
    width: 58px;
}

.table-result-dynamic > tbody > tr td:nth-last-child(3) {
    width: 53px;
}

.speedtest-summary-block {
    font-family: 'Segoe UI Symbol', 'Segoe UI', 'Noto Sans TC', sans-serif;
    background-color: #ffffff;
    border: 1px solid #f0efef;
    padding: 16px;
    border-radius: 0;
    margin: 0 auto;
    font-weight: 400;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
}

.summary-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    font-family: 'Segoe UI Symbol', 'Segoe UI', 'Noto Sans TC', sans-serif;
    color: #0C0C0C;
    position: relative;
}

.info-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.info-icon {
    width: 23.62px;
    height: 23.62px;
    cursor: pointer;
}

.tooltip {
    display: none;
    position: absolute;
    top: 32px;
    left: 0;
    z-index: 10;
}

.tooltip-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 496px;
    height: 200px;
    background: #ffffff;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
}

.tooltip-text {
    font-family: 'Noto Sans Math', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #454545;
    width: 460px;
    height: 120px;
    display: flex;
    align-items: center;
}

.info-wrapper:hover .tooltip {
    display: block;
}

.summary-status {
    display: flex;
    align-items: center;
    gap: 20px;
}

.status-circle {
    background: #139400;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
}

.collapsible-header {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 20px;
    line-height: 28px;
    color: #285192;
    cursor: pointer;
    padding: 8px 0;
    box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.1));
}

.collapsible-content {
    display: none;
    padding-top: 12px;
}

.collapsible.open .collapsible-content {
    display: block;
}

.chevron {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.collapsible.open .chevron {
    transform: rotate(180deg);
}

.scroll-container {
    overflow-x: auto;
}

.styled-table tbody tr.failed-row {
    background-color: #FFF3F3;
}

.styled-table tbody td.failed-item {
    color: #DC3434;
}

.styled-table tbody tr.incomplete-row {
    background-color: #F9F9F9;
}

.styled-table {
    border-collapse: collapse;
    width: 100%;
    min-width: 1168px;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    border: 1px solid #e5e7eb;
    margin-bottom: 20px;
}

.styled-table th, .styled-table td {
    border: 1px solid #e5e7eb;
    padding: 9px;
    text-align: center;
    font-family: 'Segoe UI Symbol', 'Segoe UI', 'Noto Sans TC', sans-serif;
}

.styled-table thead th {
    background: #f9f9f9;
    font-family: 'Segoe UI Symbol', 'Segoe UI', 'Noto Sans TC', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #030712;
}

.styled-table tbody tr {
    background-color: #ffffff;
}

.styled-table tbody td.metric-data {
    background-color: #f9f9f9;
    font-family: 'Segoe UI Symbol', 'Segoe UI', 'Noto Sans TC', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #030712;
}

.speedtest-summary-block .styled-table thead tr:last-child th {
    font-family: 'Segoe UI Symbol', 'Segoe UI', 'Noto Sans TC', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    letter-spacing: normal;
}

.status-icons-inline {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: auto;
}

.status-divider{
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #9D9D9D;
}


.status-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
    font-weight: 400;
    font-family: 'Segoe UI Symbol', 'Segoe UI', 'Noto Sans TC', sans-serif;
}

.status-item .circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #DC3434;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.status-item .circle.grey {
    background-color: #9D9D9D;
}

.choices__inner {
    width: 278px;
    height: 30px;
    border: 1px solid #CCCCCC;
    background-color: #FFFFFF;
    border-radius: 4px;
    padding: 0 30px 0 10px;
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #666666;
    box-shadow: none;
}

.choices__list--dropdown {
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.choices__item--selectable {
    padding: 8px 10px;
    color: #666666;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #F5F5F5;
    color: #333333;
}

.choices[data-type*="select-one"]::after {
    border-color: #666666 transparent transparent transparent;
    right: 12px;
}

.choices__list.choices__list--single .choices__item {
    padding-left: 0;
}

.dashboard-btn {
    width: 278px;
    height: 39px;
    margin: 0;
    font-family: 'Segoe UI Symbol', 'Segoe UI', 'Noto Sans TC', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    color: #FFFFFF;
}

.expand__collapse-btn{
    width: 140px;
    height: 48px;
    background-color: #02AEE8;
    font-family: 'Segoe UI Symbol', 'Segoe UI', 'Noto Sans TC', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 18px;
    horiz-align: center;
    color: #FFFFFF;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}