.gtea_history * {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.gtea_history {
    font-family: sans-serif;
    font-size: 10px;

    overflow: hidden;
}

@media screen and (min-width: 1024px) {
    .gtea_history {
        padding: 6em 2.4em;
    }
}

@media screen and (max-width: 1023.5px) {
    .gtea_history {
        padding: 4em 2em;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1366px) {
    .gtea_history {
        font-size: calc(100vw / 1366 * 10);
    }
}

.gtea_history__container {
    max-width: 120em;
    margin: 0 auto;
}

.gtea_history__title {
    color: #18191e;
    font-weight: 600;
    text-align: center;
}

@media screen and (min-width: 1024px) {
    .gtea_history__title:not(:last-child) {
        margin-bottom: 2em;
    }
}

@media screen and (max-width: 1023px) {
    .gtea_history__title:not(:last-child) {
        margin-bottom: 3em;
    }
}

@media screen and (min-width: 1024px) {
    .gtea_history__title {
        font-size: 4.8em;
        line-height: 1.3;
    }
}

@media screen and (max-width: 1023px) {
    .gtea_history__title {
        font-size: 2.8em;
        line-height: 1.3;
    }
}

.gtea_history__main {
    position: relative;
}

@media screen and (min-width: 1024px) {
    .gtea_history__main {
        padding-top: 5em;
        margin-bottom: 14.6em;
    }
}

@media screen and (max-width: 1023px) {
    .gtea_history__main {
        margin-bottom: 5em;
    }
}

.gtea_history__chart_wrap {
    position: absolute;
    top: 0;
    left: 50%;
    width: 192em;
    transform-origin: 50% 0%;
    transform: translateX(-50%);
    z-index: -1;
}

.gtea_history__chart {
    display: block;
    width: 100%;
    overflow: hidden;
}

@media screen and (max-width: 1023px) {
    .gtea_history__chart {
        display: none;
    }
}

.gtea_history__chart_in {
    width: 100%;
}

.gtea_history__chart_img {
    display: block;
    width: 100%;
}

.gtea_history__cols {
    display: flex;
    flex-wrap: wrap;

    list-style: none;
}

@media screen and (min-width: 1024px) {
    .gtea_history__cols {
        margin: 0 -2em -2em 0;
    }
}

@media screen and (min-width: 1024px) {
    .gtea_history__col {
        width: 33.33%;
        padding: 0 2em 2em 0;
    }

    .gtea_history__col:nth-child(1) {
        padding-top: 12.2em;
    }

    .gtea_history__col:nth-child(2) {
        padding-top: 4em;
    }
}

@media screen and (max-width: 1023px) {
    .gtea_history__col {
        width: 100%;
    }

    .gtea_history__col:not(:last-child) {
        margin-bottom: 8em;
    }
}

.gtea_history__col_title {
    margin-bottom: 2.6em;
    font-size: 2em;
    text-align: center;
    color: #747578;
}

@media screen and (min-width: 1024px) {
    .gtea_history__col_title {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.gtea_history__col_icon {
    position: relative;
    width: 2.4em;
    height: 2.4em;
    margin: 0 auto 1em;
    padding: 0.4em;
    color: #fff;
    z-index: 2;
    text-align: center;
}

.gtea_history__col_icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.gtea_history__col_icon:before,
.gtea_history__col_icon:after {
    content: "";
    position: absolute;
}

.gtea_history__col_icon:after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #3aae0f;
    z-index: -1;
}

.gtea_history__col_icon:before {
    content: "";
    position: absolute;
    top: -0.5em;
    bottom: -0.5em;
    left: -0.5em;
    right: -0.5em;
    border-radius: 50%;
    background-color: #fff;
    z-index: -2;
}

.gtea_history__col_list {
    position: relative;
}

@media screen and (min-width: 1024px) {
    .gtea_history__col_list {
        padding-top: 4.8em;
    }

    .gtea_history__col:nth-child(1) .gtea_history__col_list {
        padding-top: 3em;
    }

    .gtea_history__col:nth-child(2) .gtea_history__col_list {
        padding-top: 2.8em;
    }
}

.gtea_history__col_list_decor {
    position: absolute;
    top: 0;
    bottom: 2.8em;
    left: 50%;
    width: 1px;
    margin-left: -0.5px;
    background-image: linear-gradient(
            0deg,
            #3aae0f,
            #3aae0f 50%,
            transparent 50%,
            transparent 100%
    );
    background-size: 1em 1em;
}

.gtea_history__col_item {
    position: relative;
    display: flex;
    align-items: center;
    width: 50%;
    min-height: 6em;
    font-size: 1.4em;
    line-height: 1.4;
}

.gtea_history__col_item:not(:last-child) {
    margin-bottom: -2em;
}

.gtea_history__col_item:nth-child(odd) {
    margin-left: auto;
    padding-left: 2.4em;
}

.gtea_history__col_item:nth-child(even) {
    text-align: right;
    padding-right: 2em;
    justify-content: flex-end;
}

.gtea_history__col_item_circle {
    position: absolute;
    top: 50%;
    width: 1.2em;
    height: 1.2em;
    margin-top: -0.6em;
    background-color: #3aae0f;
    border-radius: 50%;
}

.gtea_history__col_item:nth-child(odd) .gtea_history__col_item_circle {
    left: 0;
    margin-left: -0.6em;
}

.gtea_history__col_item:nth-child(even) .gtea_history__col_item_circle {
    right: 0;
    margin-right: -0.6em;
}

.gtea_history__col_item:last-child .gtea_history__col_item_circle:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    height: 4em;
    width: 2px;
    margin-left: -1px;
}
