@charset "utf-8";

* {
    margin: 0;
    padding: 0;
}
html {
    font-size: 12px !important;
}

.term_layout {
    /* border: 1px solid black; */
    margin: 0 auto;
    width: 100%;
    max-width: 768px;
    /* max-width: 360px; */
    height: 100vh;
    max-height: 100vh;
    box-sizing: border-box;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}
.term_layout header {
    /* border: 1px solid tomato; */
    box-sizing: border-box;
    height: 30px;
    margin-bottom: 1rem;
}
.tab_list_telco {
    /* border: 1px solid red; */
    display: flex;
    list-style: none;
    background-color: #eef2f5;
    height: 100%;
    border-radius: 1.5rem;
}
.tab_list_telco li {
    /* border: 1px solid violet; */
    flex: 1;
}
.tab_list_telco li button {
    font-size: 1.4rem;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: transparent;
    color: #111;
    border: none;
    cursor: pointer;
}
.tab_list_telco li.on button {
    background-color: #2f3bff;
    color: #fff;
    border-radius: 1.5rem;
}
.term_layout section {
    border: 1px solid #ccc;
    box-sizing: border-box;
    overflow-x: hidden;
    height: 100%;
    border-radius: 4px;
}

.scroll {
    width: 100%;
    overflow-y: auto;
    /* float: left; */
    /* overflow-y: auto; */
    /* margin: 0 10px; */
}
.scroll-custom::-webkit-scrollbar {
    height: 4px;
    width: 8px;
}

.scroll-custom::-webkit-scrollbar-track {
    background: #eee;
}

.scroll-custom::-webkit-scrollbar-thumb {
    background: #666;
}
