/* BEGIN : Navigation Bar */

.navigation {
    background-color: #0C78A6;
    padding: 0.6rem 0;
}
.navigation .nav {
    display: flex;
    justify-content: space-between;
    margin: 0 10%;
    padding: 0.2rem;
    list-style-type: none;
    background-color: #DAEEF6;
    border: 1px solid #96CEE7;
    border-radius: 8px;
}
.navigation .nav a:link, .navigation .nav a:visited, .navigation .nav a:active {
    display: inline-block;
    color: #005377;
    text-decoration: none;
    text-align: center;
    padding: 0.3rem 0.8rem;
    white-space: nowrap;
    width: calc(100% - 1.6rem);
}
.navigation .nav a:hover, .navigation .nav a:focus {
	background-color: unset;
}
.navigation .nav li {
    position: relative;
    display: table-cell;
    padding: 0;
    margin: 0;
   /* width: 100%;*/
    text-align: center;
}
.navigation .nav li:hover {
    background-color: #0C78A6;
    color: #fff;
    border-radius: 4px;
}
.navigation .nav li:hover a {
    color: #fff;
}
.navigation .nav li:hover > .navSub {
    display: block;
}
.navigation .nav li:hover > .navSub li {
    -webkit-animation-name: navSubMouseOver;
    -webkit-animation-duration: 0.6s;
    animation-name: navSubMouseOver;
    animation-duration: 0.6s;
}
@-webkit-keyframes navSubMouseOver {
    0%   {opacity: 0%}
    100% {opacity: 100%}
}
@keyframes navSubMouseOver {
    0%   {opacity: 0%}
    100% {opacity: 100%}
}
.navigation .nav li:not(:first-child):after {
    content: "";
    background-color: #2393C1;
    height: 1rem;
    width: 1px;
    display: block;
    position: absolute;
    top: calc(50% - 0.5rem);
    left: 0;
    overflow: unset;
}
.navigation .nav li:hover:not(:first-child):after, .navigation .nav li:hover +li:after {
    display: none;
}
.navigation .nav li a i {
    margin: 0.1rem 0 0 0.5rem;
    vertical-align: text-top;
}
.navigation .nav .navSub {
    display: none;
    position: absolute;
    z-index: 999;
    top: 1.90rem;
    list-style-type: none;
    background-color: #0C78A6;
    border-radius: 0 4px 4px 4px;
    margin: 0;
    padding: 0.8rem;
    box-shadow: 1px 1px 1px 0px #afafafa1;
}
.navigation .nav .navSub li {
    display: block;
}
.navigation .nav .navSub li:first-child {
    margin-top: 0.3rem;
}
.navigation .nav .navSub li:after {
    content: "";
    background-color: #71B1CD;
    height: 1px;
    width: 94%;
    display: block;
    position: absolute;
    top: 0;
    left: 3%;
    overflow: unset;
}
.navigation .nav .navSub li:hover:after, .navigation .nav .navSub li:hover +li:after {
    display: none;
}
.navigation .nav .navSub a:link, .navigation .nav .navSub a:visited, .navigation .nav .navSub a:active {
    display: block;
    color: #fff;
    text-decoration: none;
    text-align: left;
    padding: 0.3rem 0.6rem;
    white-space: nowrap;
}
.navigation .nav .navSub a:hover {
    color: #005377;
}
.navigation .nav .navSub li:hover {
    background-color: #DAEEF6;
    border-radius: 4px;
}

/* END : Navigation Bar */

/* BEGIN : Header */

.header {
    padding-top: 10px;
}
.header .topMenu {
    display: flex;
    flex-wrap: wrap;
    margin: 0 10%;
    padding: 1rem;
    border: 1px solid #71B1CD;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    background-color: #fff;
}
.header .topMenu .logo {
    display: flex;
    margin-left: 0;
    margin-right: auto;
    height: fit-content;
}
.header .topMenu .logo a {
    display: flex;
}
.header .topMenu .social, .header .topMenu .search,.header .topMenu .member {
    display: flex;
    align-items: center;
    color: #0C78A6;
    margin-right: 1.5rem;
    line-height: 1.5;
}
.header .topMenu .search {
    border: 1px solid #96CEE7;
    background-color: #EFFAFF;
    border-radius: 8px;
    padding: 0.25rem;
}
.header .topMenu .search input {
    font-size: 1rem;
    font-weight: 300;
    font-family: 'Kanit';
    margin: 0 0.3rem;
    background: none;
    outline: none;
    border: none;
}
.header .topMenu .search button {
    font-size: 1.4rem;
    color: #0C78A6;
    vertical-align: top;
    padding: 0 0.5rem;
    background: none;
    border: none;
    border-left: 1px solid #96CEE7;
    cursor: pointer;
}
.header .topMenu .member {
    position: relative;
    margin-right: 0;
}
.header .topMenu .member .profile {
    display: block;
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: #fff;
    width: 2.250001rem;
    height: 2.250001rem;
    overflow: hidden;
}
.header .topMenu .member .profile.active {
    border: 2px solid #0C78A6;
    background-color: #0C78A6
}
.header .topMenu .member .profile.activeSVG {
    border: 2px solid #96CEE7;
}
.header .topMenu .member .profile i {
    font-size: 2.250001rem;
    color: #0C78A6;
}
.header .topMenu .member .profile img {
    width: 100%;
}
.header .topMenu .member .menu {
    display: none;
    position: absolute;
    z-index: 99999;
    top: calc(100% + 5px);
    right: -1px;
    list-style-type: none;
    background-color: #0C78A6;
    border-radius: 4px;
    margin: 0;
    padding: 0.4rem;
    box-shadow: 1px 1px 1px 0px #afafafa1;
}
.header .topMenu .member .menu li {
    display: block;
    position: relative;
}
.header .topMenu .member .menu li:first-child:after {
    display: none;
}
.header .topMenu .member .menu li:after {
    content: "";
    background-color: #71B1CD;
    height: 1px;
    width: 94%;
    display: block;
    position: absolute;
    top: 0;
    left: 3%;
    overflow: unset;
}
.header .topMenu .member .menu li:hover:after, .header .topMenu .member .menu li:hover +li:after {
    display: none;
}
.header .topMenu .member .menu a:link, .header .topMenu .member .menu a:visited, .header .topMenu .member .menu a:active {
    display: block;
    /* color: #005377; */
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 0.3rem 0.6rem;
    text-align: left;
    white-space: nowrap;
}
.header .topMenu .member .menu a:hover {
    color: #005377;
}
.header .topMenu .member .menu li:hover {
    background-color: #DAEEF6;
    border-radius: 4px;
}
.header .navigation {
    padding: 0 !important;
    background: transparent !important;
}
.header .navigation .nav {
    padding: 0.2rem 0.4rem;
    margin-left: 0 !important;
    margin-right: 10% !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border: 0 !important;
    background-color: transparent !important;
    padding-right: 0;
}
.header .navigation .nav > li > a:link, .header .navigation .nav > li > a:visited, .header .navigation .nav > li > a:active {
    font-weight: 400;
}

.headerBottom {
    height: 6rem;
    background-color: #DFEDF3;
    position: relative;
    text-align: center;
    padding: 20px 0;
    overflow: hidden;
}
.headerBottom.high {
    height: 9rem;
}
.headerBottom .ads {
    width:970px;
    max-width: 100%;
    height:90px;
    margin: auto;
    text-align:center;
}
/* END : Header */

/* BEGIN : Footer */

.footer {
    background-color: #0C78A6;
    padding-top: 0.5rem;
}
.footer .navigation .nav {
    margin: 0 auto;
    width: 57%;
}
.footer .social {
    display: flex;
    justify-content: space-around;
}
.footer .social a {
    border: none;
    background-color: unset;
    color: #CEE4ED;
}
.footer .social a:hover {
    border: none;
    background-color: unset;
    color: #fff;
    animation-name: unset;
    -webkit-animation-name: unset;
}
.footer .bottomMenu {
    display: flex;
    /*flex-wrap: wrap;*/
    justify-content: space-between;
    margin: 1rem 10% 0;
    padding: 0.6rem 0 2rem;
}
.footer .logoBox {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    margin-right: 0.5rem;
}
.footer .logoBox a {
    display: block;
    text-align: center;
    margin-bottom: 0.6rem;
}
.footer .serviceBox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex-basis: 56%;
    justify-content: space-between;
    padding: 0 1.5%;
    border-left: 1px solid #71B1CD;
    border-right: 1px solid #71B1CD;
}
.footer .serviceBox h3 {
    position: relative;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 1.6em;
    font-weight: 400;
    margin-bottom: 1rem;
}
.footer .serviceBox h3:before {
    content: "";
    background-color: #96CEE7;
    height: 5px;
    width: 30%;
    border-radius: 2px 0 0 2px;
    display: block;
    position: absolute;
    top: calc(50% - 2.5px);
    left: 3%;
    overflow: unset;
}
.footer .serviceBox h3:after {
    content: "";
    background-color: #96CEE7;
    height: 5px;
    width: 30%;
    border-radius: 0 2px 2px 0;
    display: block;
    position: absolute;
    top: calc(50% - 2.5px);
    right: 3%;
    overflow: unset;
}
.footer .serviceBox a:link, .footer .serviceBox a:visited, .footer .serviceBox a:active {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    flex-basis: 45%;
    margin: 1.5%;
    color: #CEE4ED;
    text-decoration: none;
}
.footer .serviceBox a:nth-child(2n) {
    margin: 1.5% 0 0 3%;
}
.footer .serviceBox a .img {
    flex-basis: 15%;
    margin-right: 3%;
    opacity: 80%;
}
.footer .serviceBox a .content {
    flex-basis: 82%;
    line-height: 1.3;
}
.footer .serviceBox a .content span {
    font-size: 0.7em;
    color: #96CEE7
}
.footer .serviceBox a:hover {
    color: #fff;
}
.footer .serviceBox a:hover .content span {
    color: #CEE4ED
}
.footer .serviceBox a:hover .img {
    opacity: 100%;
}
.footer .contactBox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex-basis: 56%;
    justify-content: space-between;
    padding: 0 1.5%;
    border-left: 1px solid #a7d7eb;
    border-right: 1px solid #a7d7eb;
    color: #fff;
}
.footer .contactBox h3 {
    position: relative;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 1.6em;
    font-weight: 400;
    margin-bottom: 1rem;
}
.footer .contactBox h3:before {
    content: "";
    background-color: #bbeaff;
    height: 5px;
    width: 30%;
    border-radius: 2px 0 0 2px;
    display: block;
    position: absolute;
    top: calc(50% - 2.5px);
    left: 3%;
    overflow: unset;
}
.footer .contactBox h3:after {
    content: "";
    background-color: #bbeaff;
    height: 5px;
    width: 30%;
    border-radius: 0 2px 2px 0;
    display: block;
    position: absolute;
    top: calc(50% - 2.5px);
    right: 3%;
    overflow: unset;
}
.footer .contactBox .content {
	width:67%;
	margin:0 auto
}
.footer .contactBox .content .contact {
	display:flex;
	flex-direction: row;
	justify-content: space-between;
	line-height: 2;
}
.footer .contactBox a:link, .footer .contactBox a:visited, .footer .contactBox a:active {
    font-size: 1em;
    color: #d7edf7;
    text-decoration: none;
}
.footer .contactBox a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer .kotsanaBox {
    margin-top: 1rem;
}
.footer .kotsanaBox .kotsanaButton {
    display: flex;
    position: relative;
    margin-left: 1rem;
}
.footer .kotsanaBox .kotsanaButton a {
    display: block;
    margin: 0 auto;
    padding: 1.8rem 1.4rem;
    text-decoration: none;
    border: 2px solid #CEE4ED;
    border-radius: 8px;
    color: #CEE4ED;
    text-align: center;
}
.footer .kotsanaBox .kotsanaButton a img {
    opacity: 85%;
    margin-top: 0.6rem;
}
.footer .kotsanaBox .kotsanaButton a:hover {
    text-decoration: none;
    border: 2px solid #ffffff;
    color: #fff;
}
.footer .kotsanaBox .kotsanaButton a:hover img {
    opacity: 100%;
}
.footer .kotsanaBox .kotsanaButton:before {
    content: "";
    background-color: #0C78A6;
    height: 5rem;
    width: 4px;
    display: block;
    position: absolute;
    top: calc(50% - 2.5rem);
    left: -1px;
    overflow: unset;
}
.footer .kotsanaBox .kotsanaButton:after {
    content: "";
    background-color: #0C78A6;
    height: 4px;
    width: 70%;
    display: block;
    position: absolute;
    top: -1px;
    left: 15%;
    overflow: unset;
}
.footer .kotsanaBox .kotsanaButton a:before {
    content: "";
    background-color: #0C78A6;
    height: 5rem;
    width: 4px;
    display: block;
    position: absolute;
    top: calc(50% - 2.5rem);
    right: -1px;
    overflow: unset;
}
.footer .kotsanaBox .kotsanaButton a:after {
    content: "";
    background-color: #0C78A6;
    height: 4px;
    width: 70%;
    display: block;
    position: absolute;
    bottom: -1px;
    left: 15%;
    overflow: unset;
}
.footer .bottomBar {
    background-color: #0A6085;
}
.footer .bottomBar .bottomBody {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 10%;
    padding: 1rem 0;
}
.footer .secure {
    align-self: center;
    font-size: 0;
    line-height: 0;
}
@media screen and (max-width: 991px){
	.footer .bottomBar .bottomLink {
		text-align: center;
		margin-bottom: 0.5em;
	}
}
.footer .bottomBar .bottomLink a {
    padding: 0 0.8em;
    border-radius: 4px;
    font-size: 0.8em;
    line-height: 1.75;
    margin-top: 5px;
    margin-right: 0.7em;
    font-weight: 400;
    text-decoration: none;
}
.footer .bottomBar .bottomLink a:hover {
    text-decoration: none;
}
.footer .bottomBar .bottomLink .rssFeed {
    background-color: #DAEEF6;
}
.footer .bottomBar .bottomLink .rssFeed:hover {
    background-color: #f2f7f9;
}
.footer .bottomBar .bottomLink .sitemap {
    color: #CEE4ED;
    background-color: #0C78A6;
}
.footer .bottomBar .bottomLink .sitemap:hover {
    background-color: #1f7da5;
}
.footer .bottomBar .copyright {
    flex-grow: 2;
    text-align: right;
    font-size: 0.9em;
    color: #CEE4ED;
    line-height: 1.4em;
    align-self: flex-start;
	padding-top: 5px;
}
.footer .bottomBar .copyright a:link, .footer .bottomBar .copyright a:visited, .footer .bottomBar .copyright a:active {
    font-size: inherit;
    color: #CEE4ED;
    text-decoration: none;
}
.footer .bottomBar .copyright a:hover {
    text-decoration: underline;
}
.footer .bottomBar .copyright span {
    font-size: 0.75em;
    color: #96CEE7;
}

/* END : Footer */

/* BEGIN : Header & Footer & Responsive  */

.container .header, .container .footer {
    position: relative;
    margin: 0 auto;
}
.container .header {
    background-color: #fff;
}

@media screen and (max-width: 1080px){
   /* .footer .bottomMenu {
        margin: 1rem 3% 0;
    }*/
    .footer .serviceBox {
        flex-basis: 59%;
        padding: 0px;
    }
    .footer .contactBox {
        flex-basis: 59%;
        padding: 0px;
    }
    .footer .bottomBar {
		font-size:0.9em;
	}
}

@media (max-width: 991px){
    .header .topMenu {
        background-color: transparent !important;
    }
    .footer {
        padding-top: 1rem;
    }
    .footer .navigation .nav li {
        width: unset;
        background-color: #DAEEF6;
        border: 1px solid #bbeaff;
        border-radius: 8px;
        margin: 0.3em;
    }
    .footer .navigation .nav li:not(:first-child):after {
        display: none;
    }

    .footer .navigation .nav {
        width: 94%;
        justify-content: center;
        background-color: unset;
        border: unset;
    }
    .footer .navigation .nav a:link, .footer .navigation .nav a:visited, .footer .navigation .nav a:active {
        padding: 0.8rem;
        width: unset;
    }

    .footer .navigation .nav{
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer .bottomMenu {
        margin: 1rem 4% 0;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }
    .footer .social {
        margin-top: 1.3rem;
    }
    .footer .serviceBox, .footer .contactBox {
        order: -1;
        flex-basis: 100%;
        border: none;
        padding: 0 0 3% 0;
        border-bottom: 1px solid #a7d7eb;
        margin-bottom: 3%;
    }
    .footer .logoBox {
        width: fit-content;
        align-self: center;
    }
    .footer .kotsanaBox .kotsanaButton {
        line-height: 2;
    }
    .footer .kotsanaBox .kotsanaButton a img {
        margin-bottom: 1rem;
    }
    .footer .bottomBar {
		font-size:1em;
	}
    .footer .bottomBar .sitemap {
        margin: 1.5rem auto;
        padding: 0.5rem 2rem;
    }
    .footer .bottomBar .copyright {
        text-align: center;
        padding: 0 4rem;
    }
}

@media screen and (max-width: 640px){
    .footer {
        padding-top: 1rem;
    }
    .footer .bottomMenu {
        margin: 1rem 4% 0;
        justify-content: space-evenly;
    }
    .footer .bottomMenu {
        margin: 1rem 4% 0;
        justify-content: space-evenly;
    }
    .footer .social {
        margin-top: 1.3rem;
    }
    .footer .serviceBox, .footer .contactBox {
        order: -1;
        flex-basis: 100%;
        border: none;
        padding: 0 0 3% 0;
        border-bottom: 1px solid #a7d7eb;
        margin-bottom: 3%;
    }
    .footer .logoBox {
        width: fit-content;
        align-self: center;
    }
    .footer .kotsanaBox .kotsanaButton {
        line-height: 2;
    }
    .footer .kotsanaBox .kotsanaButton a img {
        margin-bottom: 1rem;
    }
    .footer .bottomBar .sitemap {
        margin: 1.5rem auto;
        padding: 0.5rem 2rem;
    }
    .footer .bottomBar .copyright {
        text-align: center;
        padding: 0 4rem;
    }
}
@media screen and (max-width: 580px){
    .footer .navigation .nav{
		flex-wrap: wrap;
		justify-content: center;
	}
	.footer .serviceBox h3:after, .footer .serviceBox h3:before, .footer .contactBox h3:after, .footer .contactBox h3:before {
		width: 25%;
	}
	.footer .serviceBox a:link, .footer .serviceBox a:visited, .footer .serviceBox a:active {
		margin: 1%;
		flex-basis: 48%;
	}
	.footer .contactBox .content {
		width: 76%;
	}
}
@media screen and (max-width: 460px){
    .footer .serviceBox h3:after, .footer .serviceBox h3:before, .footer .contactBox h3:after, .footer .contactBox h3:before {
		width: 23%;
	}
	.footer .serviceBox a:link, .footer .serviceBox a:visited, .footer .serviceBox a:active {
		flex-basis: 76%;
		margin: 2% auto;
	}
	.footer .contactBox .content {
		width: 86%;
	}
	.footer .serviceBox a .content {
		font-size: 1.6rem;
	}
	.footer .logoBox, .footer .kotsanaBox {
		margin: 1.5rem 1rem;
	}
}
@media screen and (max-width: 420px){
	.footer .logoBox, .footer .kotsanaBox {
		margin: 1.5rem 0.5rem;
	}
}
@media screen and (max-width: 390px){
    .footer .serviceBox h3:after, .footer .serviceBox h3:before, .footer .contactBox h3:after, .footer .contactBox h3:before {
		width: 20%;
	}
	.footer .contactBox .content {
		width: 90%;
	}
}

/* END : Header & Footer & Responsive */

/* BEGIN : Header Menu */



/* END : Header Menu */

/* BEGIN : Side Menu  (Left or Right Menu) */

.sideMenu {
    background-color: #f7f7f7;
    background-color: #fff;
    width: 100%;
    min-width: 5rem;
    border-radius: 0.5em;
    border: 1px solid #ddd;
    margin: 1.6rem 0;
    overflow: hidden;
}

.sideMenu .header {
    text-align: left;
    font-size: 1.2em;
    font-weight: 400;
    padding: 0.5em 0.6em;
    background-color: #0C78A6;
    color: #fff;
}
.sideMenu .header i {
    margin-right: 0.7em;
}
.sideMenu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.sideMenu ul li {
    border-bottom: 1px solid #ddd;
}
.sideMenu ul li:last-child {
    border-bottom: 0;
}
.sideMenu ul>li>ul>li:first-child {
    border-top: 1px solid #ddd;
}
.sideMenu ul li i:first-child {
    margin-right: 0.8em;
}
.sideMenu ul li i:not(:first-child):last-child {
    margin-left: 0.5em;
}
.sideMenu ul a:link,
.sideMenu ul a:visited,
.sideMenu ul a:active {
    display: block;
    padding: 0.5em 0.8em;
    color: #005377;
    text-decoration: none;
}
.sideMenu ul a.selected {
    font-weight: 400;
    /* background-color: #e5f3f9; */
    color: #333; 
    background-color: #e9e9e9;
}
.sideMenu ul a:hover {
    background-color: #f5f5f5;
}
.sideMenu ul ul a:link,
.sideMenu ul ul a:visited,
.sideMenu ul ul a:active {
    padding-left: 1.8em;
}
.sideMenu .subMenu>a {
    cursor: default;
}
.sideMenu .subMenu.slide>a {
    font-weight: 400;
    cursor: pointer;
    position: relative;
}
.sideMenu .subMenu.slide>a:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f0d7";
    font-size: 1em;
    margin-left: 0.5em;
    position: absolute;
    right: 10px;
}
.sideMenu .slide ul {
    display: none;
}
.sideMenu ul.flexRow li {
    width: 100%;
    text-align: center;
    border-right: 1px solid #ddd;
    border-bottom: none;
}
.sideMenu ul.flexRow li:last-child {
    border-right: none;
}
  
/* END : Side Menu (Left or Right Menu) */

/* BEGIN : IS First page? */

.card_pdv2{
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
}
.body_pd{
    background-color: #eef5f7;
    padding: 2% 15px 0;
}

.card_pdv1{
    background-color: #ffffff;
    padding: 6px 10px;
    border-radius: 5px;
    width: 100%;
}



@media screen and (max-width: 640px){
    .pplprogram{
        font-size: 1.1rem !important;
    }
    .contentBody .content.card.col4 {
        flex-basis: 100%;
        margin-bottom: 3%;
    }
    .contentBody .hilightGroup{
        order: 0 !important;
    }
    .contentBody .big{
        order: 1 !important;
    }
    .contentBody .hilightGroup .content.card.hilight{
        margin-bottom: 3%;
    }
    .contentBody .hilightGroup{
        flex-basis: 100%;    
    }
    .contentBody .content.tile.col6{
        flex-basis: 100%; 
        font-size: 1.1rem;
    }
    .contentBody .content.tile.col6mb{
        flex-basis: 49%; 
    }
    .contentBody .content.tile .title{
        font-size: 1.2rem !important;
        /*height: 6.7rem !important;*/
    }
    .contentBody .content.tile .title.mv_set{
        font-size: 1rem !important;
    }
    .contentBody .content.tile .title.l3.l3.l3{
        font-size: 1.2rem !important;
        height: 5rem !important;
    }
    .contentBody .content .info .category{
        font-size: 1.3rem;
    }
    .contentBody .content.tile .description{
        font-size: 1.1rem;
    }
    .software_hl.contentBody .content.tile.hilight{
         flex-basis: 100%;
    }
    .col-mb12{
        flex-basis: 100%;
    }
    .col-mb6{
        flex-basis: 49%;
    }
    .contentBody .content.tile.col-mb6{
         flex-basis: 49%;
    }
    

}



.contentBody .content.sponsor .title{
padding-right: 70px;
}

.main_mn{
    font-weight: 500 !important;
}

.menu_animate ul.menu li.menu-item{
    padding: 7px 0;
}

.menu_animate ul.menu li.menu-item a {
    font-size: 1.4rem !important;
    line-height: 1.4 !important;
}

.menu_animate ul.menu li.menu-item .span_s_a{
    font-size: 1.4rem !important;
    line-height: 1.4 !important;
}

.menu_animate.menu_animate{
    width: 100%;height:100vh;background-color: #fff;position: fixed;top: 0;left: 0;z-index: 2001;;
}
          
.menu_animate{
    position: absolute;
    width: 101%;
    height: 100%;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 1px;
    background: #333;
    border: none;
    color: #fff;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);       
}

@media (min-width: 660px){
    .searchBtn{
    display: none !important;
    }
    .search_mobile{
    display: flex !important;
    }
    .searchHide{
    display: none !important;
    }
}
.search_mobile.active {
    display: flex  !important;
    align-items: center;
    color: #fff;
    animation: fadeInRight 1s ease-in-out;
}

@keyframes fadeInRight {
    from {
    opacity: 0;
    transform: translateX(0px);
    }
    to {
    opacity: 1;
    }
}

.top_mobile_social{
    display: flex;
    padding: 25px 30px 5px !important;
    justify-content: center;
    text-align: center;
    margin: auto;
}
.top_mobile_social .inner_top_mobile_social{
    display: flex;
    align-items: center;
    color: #0C78A6;
    line-height: 1.5;
    justify-content: center;
    text-align: center;
    margin: auto;
    width: 100%;
}
.top_mobile_social .inner_top_mobile_social a{
    display: block;
    border: 2px solid #0C78A6;
    background-color: #0C78A6;
    color: #fff;
    border-radius: 50%;
    width: 3.2rem;
    height: 3.2rem;
    font-size: 2rem;
    line-height: 3.2rem;
    text-align: center;
    margin: 0 1rem;
}

#grow {
    display: block;
    -moz-transition: height .5s;
    -ms-transition: height .5s;
    -o-transition: height .5s;
    -webkit-transition: height .5s;
    transition: height .5s;
    height: 0;
    overflow: hidden;
}
#grow2 {
    display: block;
    -moz-transition: height .5s;
    -ms-transition: height .5s;
    -o-transition: height .5s;
    -webkit-transition: height .5s;
    transition: height .5s;
    height: 0;
    overflow: hidden;
}
.span_s_a{
    display: block;
    position: relative;
    color: #333 !important;
    font-weight: 100;
    text-decoration: none;
    font-size: 22px;
    line-height: 2.35;
    font-weight: 200;
    width: 100%;
}

.list-group-item .col-xxs-4{
    width: 33.33%;
    font-size: 16px;width: 40%;display: inline-block;float: left;
}

.list-group-item .col-xxs-8{
    width: 66.67%;
    font-size: 16px;width: 40%;display: inline-block;float: left;
}

.btn_top_sh button:after {
    content: "";
    background-color: #2393C1;
    height: 1rem;
    width: 1px;
    display: block;
    position: absolute;
    top: calc(50% - 0.5rem);
    left: 0;
    overflow: unset;
}
#desktop_menu{
  background-color: #0C78A6;padding: 0.6rem 0;position: relative;
}
#desktop_menu .width-greedy-nav{
  position: absolute;left: 10%;right: 10%;background-color: #daeef6;top: 0.6rem;bottom: 0.6rem;border: 1px solid #96CEE7;border-radius: 8px;
}

.btn_top_sh.active button{
    background-color: #0C78A6 !important;
    color: #fff !important;
}

.greedy-nav button:hover{
  background-color: #0C78A6 !important;
  color: #fff !important;
}
.greedy-nav {
  position: relative;
  min-width: 250px;
}
.greedy-nav a {
  display: block;
}
.greedy-nav .hamburger {
  position: relative;
  width: 32px;
  height: 4px;
  background: #0c78a6;
  margin: auto;
}
.greedy-nav .hamburger:before,
.greedy-nav .hamburger:after {
  content: "";
  position: absolute;
  left: 0;
  width: 32px;
  height: 4px;
  background: #0c78a6;
}
.greedy-nav .hamburger:before {
  top: -8px;
}
.greedy-nav .hamburger:after {
  bottom: -8px;
}
.greedy-nav .visible-links {
  display: inline-table;
}
.greedy-nav .hidden-links {
    position: absolute;
    right: 0;
    padding: 20px;
    margin-top: 0;
    z-index: 16;
    background-color: #0c78a6;
    border-radius: 4px 0 4px 4px;
    top: 1.9rem;
    box-shadow: 1px 1px 1px 0px #afafafa1;
}

.li_main.have_sub a{
    cursor: default;
}

.li_sub a{
    cursor: pointer !important;
}

.hidden-links li.li_sub{
    margin-bottom: 10px;
}

.greedy-nav .hidden-links li {
  display: block;
  background-color: #0c78a6;
  border-radius: 10px;
  color: #333;
  text-align: left;
  position: relative;
}

.greedy-nav .hidden-links .fas{
  display: none;
}

.hidden-links .navSub{
  margin-top: 10px;
}

.hidden-links li a{
    color: #fff;
    text-decoration: none;
    padding: 0.3rem 0.8rem;
    white-space: nowrap;
    width: calc(100% - 1.6rem);
  
}

.hidden-links li a:hover{
    background-color: #DAEEF6;
    border-radius: 4px;
    color: #005377;
}


.greedy-nav .hidden {
  visibility: hidden;
  margin-left: -20% !important;
}

@media(max-width: 1080px) and (min-width: 320px){
  .header .topMenu .social.social{
    display: none;
  }
}

.sub_menu_banner_scroll_desktop {
    position: fixed !important;
    max-width: 1407px!important;
    width: 100%;
    z-index: 20000;
    top: 0 !important;
    border-top: 0;
}

.sub_menu_banner_scroll_mobile {
    position: fixed !important;
    max-width: 1407px!important;
    width: 100%;
    z-index: 20000;
    
    top: 0 !important;
    border-top: 0;
}

#onscrolling_desktop{
  display: none;
}

.greedy-nav .hidden-links li:after{
    content: "";
    background-color: #71B1CD;
    height: 1px;
    width: 94%;
    display: block;
    position: absolute;
    top: 0;
    left: 3%;
    overflow: unset;
}

@media (max-width: 991px){
  .header {
     padding-top: 0 !important; 
  }
  #onscrolling_mobile{
    display: block !important;
  }
  .header .topMenu .search button{
    vertical-align: middle;
  }
  .br_op{
    display: none;
  }
  .header .topMenu.topMenu.topMenu.topMenu{
    display: flex;
    flex-wrap: wrap;
    margin: 0 3%;
    border: 1px solid #71B1CD;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    height: 60px;
    align-items: center;
    padding: 0 15px;
  }

  .header .set_top_mobile.set_top_mobile.set_top_mobile.set_top_mobile{
    display: none !important;
  }

  .header .topMenu .logo img{
    height: 17px;
  }

  #mobile_menu {
      display: inline-block !important; 
      width: 100%;
      z-index: 20000000000;
      padding: 0.1rem 0 !important;
      background-color: rgb(12, 120, 166) !important;
  }
  #hammenu #nav-icon3 span{
      width: 80%;
  }
  #desktop_menu{
    display: none;
  }
}

@media (max-width: 500px){
  #truehits_div{
    display: none;
  }
}

.top_mobile_social #truehits_div#truehits_div#truehits_div{
    display: flex !important;
}
@media (max-width: 430px){
 
  .header .topMenu .logo img{
    height: 14px;
  }
}

 @media (min-width: 992px){
    #mobile_menu{
        display: none;
    }
   
  }

#hammenu {
    cursor: pointer;
    display: inline-block;
    width: fit-content;
    margin-top: 11px;
}

#hammenu #nav-icon3{
        z-index: 20;
}

#hammenu #nav-icon3{
    width: 35px;
    height: 26px;
    position: relative;
    display: inline-block;

    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#hammenu #nav-icon3 span{
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #effaff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}


/* Icon 3 */

#hammenu #nav-icon3 span:nth-child(1) {
    top: 0px;
}
#hammenu #nav-icon3 span:nth-child(2),#hammenu #nav-icon3 span:nth-child(3) {
    top: 10px;
}
#hammenu #nav-icon3 span:nth-child(4) {
    top: 21px;
}
#hammenu #nav-icon3.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

#hammenu #nav-icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#hammenu #nav-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#hammenu #nav-icon3.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.menu_animate.active{
    transform: none;
}

.menu_animate.active_hover{
    display: block !important;
}

.menu_animate .for_home_mb_ani{
    display: flex;
}

.menu_animate ul.menu {
    position: relative;
    display: block;
    padding: 5px 48px 0;
    list-style: none;
    padding-bottom: 60px;
}
.menu_animate ul.menu li.menu-item {
    transition-delay: 0.1s;
}
.menu_animate ul.menu li.menu-item {
    -webkit-transform: scale(1) translateY(0px);
    transform: scale(1) translateY(0px);
    opacity: 1;
    border-bottom: 1px solid #ccc;
}
.menu_animate ul.menu li.menu-item a {
    display: block;
    position: relative;
    color: #333 !important;
    font-weight: 100;
    text-decoration: none;
    font-size: 22px;
    line-height: 2.35;
    font-weight: 200;
    width: 100%;
}

.menu_animate ul.menu{
    padding: 5px 30px 0 !important;
    padding-top: 0;
    margin-top: 0;
/*    min-height: -webkit-fill-available;*/
}
#tw_new_menu .page1{
    display: block;
    overflow: auto;
    height: calc(100vh - 72px);
    padding-bottom: 40px;
    min-height: -webkit-fill-available;
}

/* ///////////// end menu animate*/

/*Content Sponsor */
.contentBody .content.sponsor {
    background-color: #edf5f4;
}
.contentBody .content.sponsor .image {
    padding: 1em;
}
.contentBody .content.sponsor .detail {
    padding: 1em;
}
.contentBody .content.sponsor .title {
    padding-left: 1em;
    height: unset;
}
.contentBody .content.sponsor .description {
    height: unset;
    font-size: 0.9rem;
    line-height: 1.75;
}
.contentBody .content.sponsor .greenBox {
    position: absolute;
    right: 1em;
    top: 0.8em;
}

.descriptionBox {
    text-align: justify;
    display: block;
    line-height: 180% !important;
    font-size: 1rem !important;
    font-family: Sarabun;
    background-color: #f7f7f7;
    padding: 5px 20px;
    border-radius: 5px;
}

.descriptionBox p {
    line-height: 1.8em;
}

/* Adsense */

.adsbygoogle.adsbygoogle-noablate {
    z-index: 2147483640 !important;
}

.noAdsense .google-auto-placed, .header .google-auto-placed, .sectionHeader .google-auto-placed,
.footer .google-auto-placed, #comment_view .google-auto-placed, .container:has(> .body) .google-auto-placed, .container:has(> .footer) + .google-auto-placed,
.container.noAdsense + .google-auto-placed, .container.noAdsense + div + .google-auto-placed, .container.noAdsense + div + div + .google-auto-placed,
.noAdsense.nextOne + .google-auto-placed, .noAdsense.nextTwo + div + .google-auto-placed, .noAdsense.nextThree + div + div + .google-auto-placed
{
    display: none !important;
}

.contentBody.articleCardCol4>.google-auto-placed {
    flex-basis: 32%;
}
@media screen and (max-width: 640px) {
    .contentBody.articleCardCol4>.google-auto-placed {
        flex-basis: 100%;
    }
}
.contentBody.articleCardCol4 > div:not(.big):not(.hilightGroup) {
    order: 2;
}
.contentBody.articleCardCol4 > div:first-child.google-auto-placed {
    order: 0;
    flex-basis: 100%;
}
.contentBody.articleCardCol4 > div:nth-child(9).google-auto-placed,
.contentBody.articleCardCol4 > div:nth-child(12).google-auto-placed,
.contentBody.articleCardCol4 > div:last-child.google-auto-placed
{
    flex-basis: 100%;
}

/* PDPA Popup with Adsense Fix bottom */
body:has(ins.adsbygoogle.adsbygoogle-noablate[data-anchor-shown=true][style*="bottom: 0px"]) {
	--pdpa-bottom: 15%;
}

#pdpa_setting #pdpa_notice {
	bottom: var(--pdpa-bottom, 1%);	
}