.fullscreen_layout {
    display: flex; 
    justify-content: flex-end; 
    padding: 10px; 
    padding-bottom: 0px;
}
.fullscreen_btn { 
    width: 102px;
    height: 34px;
    border: 0px;
    border-radius: 5px;
    background-image: url("https://random.thaiware.com/images/Next-Gen-Random/full_screen.png?v=1");
    background-size: cover;
    opacity: 0.85;
    cursor: pointer;
}
.social-shared-container { 
    margin-top: -15px; 
    display: flex; 
    justify-content: flex-end;
}

.wrapper-container {
    width: 100%; 
    background-color: #fff; 
    border: 1px solid #efefef; 
    border-radius: 7px; 
    font-family: Kanit;
}
.wrapper-layout {
    display: flex; 
    justify-content: center; 
    padding: 10px;
}
.wrapper {
    width: 100%; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    font-size: 16px;
}
.tool_icon_layout {
    display: grid; 
    justify-content: center; 
    margin: 10px;
}
.tool_link {
    color: #555;
    text-decoration: none;
    font-weight: 400 !important;
    text-align: center;
}
.badge_new {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #ff0000;
    padding: 5px 8px;
    border-radius: 20px;
    font-size: 14px;
    color: #fff;
}
table.tool_lists {
    width:100%;
}
table.tool_lists td {
    width:33.33%;
    text-align:center;
    font-weight:bold;
    font-size:16px;
}
/* Responsive */
@media screen and (max-width: 1126px){
    /* * {
        max-width: 100% !important;
    } */
    .menu {
        max-width: none !important;
    }
}
@media screen and (min-width: 320px) and (max-width: 665px){
    .wrapper {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
    }
}
@media screen and (min-width: 666px) and (max-width: 1195px){
    .wrapper {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    }
}
/* Responsive Grid System */
.grid3Column {
    display: grid; 
    padding: 0;
    margin: 0;
    list-style-type: none;
    grid-template-columns: repeat(auto-fill,minmax(33.33%, 1fr));
}
.grid3Column li {
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
}
.grid3Column li a {
    width: 100%;
    box-sizing: border-box;
    padding: 0.5em;
    text-align: center;
    display: inline-block;
}
@media (min-width: 421px) and (max-width: 920px) {
    .grid3Column.odd li:nth-child(3n) {
        border-right: 0;
    }
    .grid3Column.odd li:nth-last-child(-n+2) {
        border-bottom: 0;
    }
    .grid3Column.odd.remainder li:nth-last-child(-n+2) {
        border-bottom: 0;
    }
    .grid3Column.odd.no-remainder li:nth-last-child(-n+3) {
        border-bottom: 0;
    }
    .grid3Column.even li:nth-child(3n) {
        border-right: 0;
    }
    .grid3Column.even.no-remainder li:nth-last-child(-n+3) {
        border-bottom: 0;
    }
    .grid3Column.even.one-remainder li:nth-last-child(-n+1) {
        border-bottom: 0;
    }
    .grid3Column.even.two-remainder li:nth-last-child(-n+2) {
        border-bottom: 0;
    }
}
@media (min-width: 320px) and (max-width: 420px) {
    .grid3Column {
        grid-template-columns: repeat(auto-fill,minmax(50%, 1fr));
    }
    .grid3Column.odd li:nth-last-child(2n) {
        border-right: 0;
    }
    .grid3Column.odd.remainder li:nth-last-child(-n+1) {
        border-bottom: 0;
    }
    .grid3Column.odd.no-remainder li:nth-last-child(-n+1) {
        border-bottom: 0;
    }
    .grid3Column.even li:nth-child(2n) {
        border-right: 0;
    }
    .grid3Column.even li:nth-last-child(-n+2) {
        border-bottom: 0;
    }
}