@charset "utf-8";
/*
 * Licensed Materials - Property of IBM
 * "Restricted Materials of IBM"
 * 5724-U18
 * (C) COPYRIGHT IBM CORP. 2010, 2011 All Rights Reserved.
 * US Government Users Restricted Rights - Use, duplication or
 * disclosure restricted by GSA ADP Schedule Contract with
 * IBM Corp.
 *
 */
/**********************************************************
 * Notes:
 * The style leverages CSS3 Border-radius which not all
 * browsers support. Browser specific statments are 
 * included, otherwise the design will degrade to square
 * corners. As of Oct 10, 2009, IE currently does not 
 * support border-radius or provide a browser shortcut.
 **********************************************************/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100..900&family=Sarabun:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.noto-sans-thai-Light {
	font-family: "Noto Sans Thai", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	font-variation-settings:
		"wdth" 100;
}

.noto-sans-thai-Normal {
	font-family: "Noto Sans Thai", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-variation-settings:
		"wdth" 100;
}

.noto-sans-thai-Bold {
	font-family: "Noto Sans Thai", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	font-variation-settings:
		"wdth" 100;
}

body {
    font-family: "Noto Sans Thai", Arial, Helvetica, sans-serif;
    font-size: 0.75em;
    margin: 0px;
    padding: 0px;

}

body > div {
	width: 100%;
	background: #FFF url(../images/EGAT_SBK_BG_20210401_x1.png) repeat-x bottom left;
	/* Full height */
	height: 100%;
	/* Center and scale the image nicely */
	background-position: center;
	background-repeat: no-repeat; 
	/* background-size:cover;
	*/
	-webkit-background-size: 100% 100%;
	-moz-background-size: 100% 100%;
	-o-background-size: 100% 100%;
	background-size: 100% 100%;
	position: absolute;
}

a:link {
	font-weight :normal;
	color :#336699;
	text-decoration :none;
}

a:active, a:visited {
	color :#0033CC;
	text-decoration :none;
}

a:hover {
	color :#336699;
	text-decoration :underline;
}

.main_tbl {
	width: 350px;
	border: none;
	margin-top: 5%;
	margin-right: auto;
	margin-left: 76%;
}

.dialog {
	background: #FFFFF ;
	border: 0px #031019 solid;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	font-color: #07358e;
}

.prod_name {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 30px;
	font-weight: normal;
	color: #003482;
}
.prod_name_eam {
	border-top: 1px solid #5aaafa;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 30px;
	font-weight: normal;
	color: #003482;
}

.input_mobile {
	background: #FFF url(../images/ge_login_txtbox.png) bottom left repeat-x; 
	    -webkit-border-radius: 5px; 
    -moz-border-radius: 5px; 
    border-radius: 5px; 
    border: 1px solid #848484; 
    outline:0; 
    height:25px; 
    width: 275px; 
	
}
input[type=text], input[type=password], select {
	/*background: #FFF url(../images/ge_login_txtbox.png) bottom left repeat-x; */
	    -webkit-border-radius: 5px; 
    -moz-border-radius: 5px; 
    border-radius: 5px; 
    border: 1px solid #848484; 
    outline:0; 
    height:25px; 
    width: 275px; 
	
}

.input_pad {
	padding-left: 10px;
	padding-bottom: 15px;
}

.tiv_btn {
 font-family: Helvetica, Arial, sans-serif;
    background: #0F0F6D;
    color: #ffffff;
    cursor: pointer;
    font-size: 1em;
    padding: 0.6em 0.8em;
    border: 0;
    transition: all 0.5s;
    border-radius: 10px;
    width: auto;
	height: auto;
    position: relative;
    min-width: 40px;

    &::after {
        /*content: "\f2f6";
        font-family: "Font Awesome 5 Pro";
        font-weight: 400;
		content: "\2998";*/
        content: "\1f842";
        position: absolute;
        left: 87%;
        top: 38%;
        right: 0;
        bottom: 0;
        opacity: 0;
        transform: translate(-50%, -50%);
        font-size: 1.4em;
    }

}

.tiv_btn:hover {
        background: #2b2bff;
        transition: all 0.5s;
        border-radius: 10px;
        box-shadow: 0px 6px 15px #0000ff61;
        padding: 0.6em 1.2em;
        color: #ffffff;

        &::after {
            opacity: 1;
            transition: all 0.5s;
            color: #ffffff;

        }
    
}
/*
.tiv_btn {
	background-image: url(../images/buttonEnabled_tiv.png); /* preload hover 
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	border: 1px solid #666666;
	border-bottom: 1px solid #555555;
	text-align: center;
	padding: 0.4em 0.6em;
	background: #e2e2e2 url(../images/buttonEnabled_tiv.png) repeat-x top left;
}
.tiv_btn:hover {
	border-color: #6b8fb3;
	border-bottom-color:#4c7399;
	color:#003366;
	background:#f8fbfe url(../images/buttonHover_tiv.png) repeat-x top;
}*/
.link {
	border: 0px;
	color: #336699;
	background: transparent;
	cursor: pointer;
	font: inherit;
	padding: 0px;
}
.link:hover > span {
	text-decoration: underline;
}
.errorText {
	color: #CC0000;
	padding: 2px 0px;
}
.messageIcon {
	float: left;
	padding-right: 10px;
}
.message {
	display: inline;
	font-size: 1em;
	margin: 0px 0px 8px 0px;
}
.messageDesc {
	margin: 8px 0px;
}
.copyright	{
	font-size: 1em;
	padding-top: 3px;
	text-align: center;
}
.copyright_mobile	{
	font-size: 1em;
	text-align: center;
}
.eam {
	color:"#07358e";
	font-size:"3em";
	font-family: "Helvetica, Arial, sans-serif" !important;
}

.hr.fade-2 {
  border-width: 0 0 1px;
  $color: skyblue;
  color: $color;
  border-image: linear-gradient(
    90deg,
    rgba($color, 0),
    rgba($color, 1) 50%,
    rgba($color, 0) 100%) 0 0 100%;
  border-style: solid;
}