/* The container */
.checkBoxContainer {
  display: block;
  position: relative;
  padding-left: 27px;
  margin-bottom: 10px;
  margin-top:5px;
  cursor: pointer;
  
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  
}

/* Hide the browser's default checkbox */
.checkBoxContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 4;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 3px;
}


/* On mouse-over, add a grey background color */
.checkBoxContainer:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkBoxContainer input:checked ~ .checkmark {
  background-color: #1E92C0;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkBoxContainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkBoxContainer .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}




/*ooooooooooooooooo  Radio  oooooooooooooooooo */
/* The container */
.checkBoxContainerCircle {
  display: block;
  position: relative;
  padding-left: 27px;
  margin-bottom: 8px;
  margin-top:5px;
  cursor: pointer;
  
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  
}

/* Hide the browser's default checkbox */
.checkBoxContainerCircle input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmarkCircle {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 30px;
}



/* On mouse-over, add a grey background color */
.checkBoxContainerCircle:hover input ~ .checkmarkCircle {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkBoxContainerCircle input:checked ~ .checkmarkCircle {
  background-color: #1E92C0;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmarkCircle:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkBoxContainerCircle input:checked ~ .checkmarkCircle:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkBoxContainerCircle .checkmarkCircle:after {
  left: 7px;
  top: 3px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}



  /*------------- TEXTBOX -----------*/

input[type=tel], 
input[type=text],
input[type=number], 
input[type=date],
input[type=email],
input[type=password],
select, textarea {
  padding: 1px 5px;
  margin: 3px;
  display: inline-block;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: 'reg';
  font-size: 14px;
  color: #525454;
  border: 1px solid #ccc;
  outline: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

input[type=tel]
{
  width: 67px;
}

  
input[type=submit] {
  width: 100px;
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}


input[type=tel]:focus ,input[type=text]:focus  {
  border: 1px solid #1582AE;
  }

/*--------- Progress Bar ---------- */
.progressBar_wraper{
  width: 90%;
  text-align: center;
  margin-left: 4px;
  padding-top: 3px;
}

.progressBar_outer{
  width:100%;
  min-width: 43px;
  height: 9px;
  background-color: #ccc;
  border-radius: 20px;
}

.progressBar_inner{
  background-color: #1582AE;
  height: 9px;
  width:0%;
  border-radius: 20px;
}

.progressBar_expense {
  height: 4px;
  width: 0%;
  border-radius: 0px 20px 20px 20px;
  position: relative;
  top: -4px;
  box-sizing: border-box;
  background-color: #eb0000;
}

.progressBar_number {
  font-size: 12px;
  font-family: light;
}








/********** BUTTON **************/



.button {
  font-family: reg;
  margin: auto;
  text-align: center;
  padding: 4px;
  border-radius: 30px;
  transition: background-color 0.3s;
  cursor: pointer;
  transition: opacity 1s;
  
}

.button_blue{
  background-color: #1E92C0; 
  /*background-image: linear-gradient(  #1E92C0,#1E92C0,#1582AE,#05638D ); */
  box-shadow: 0px 3px 11px 0px #69b1cd;
  color: white;
  transition: filter 0.2s;
}

.button_blue:hover {
  /* background-color: #49b2db; */
  filter:brightness(1.2);
}

.button_white{
  /* background-image: linear-gradient(#FFF,#FFF,#EEE,#DDD); */
  background-color: white; 
  box-shadow: 0px 3px 10px 0px rgb(0 0 0 / 34%);
  color:#1582AE;
  transition: filter 0.2s;
}

.button_white:hover {
  filter:brightness(1.06);
}

.button_orange {
  background-color: #fb7d01; 
  box-shadow: 0px 3px 10px 0px rgb(0 0 0 / 34%);
  color: white;
  transition: filter 0.2s;
}
.button_orange:hover {
  /* background-color: #49b2db; */
  filter:brightness(1.2);
}

.button_search {
  width: 70px;
    margin-top: 7px;
    padding: 1px;
    border-radius: 5px;
    box-shadow: none;
    background-color:#1582AE;
}

.button_search:hover{
  background-color:#49b2db;
}


.button_m {
  width: 75px;
  
}

.button_l {
  width: 105px;
  
}

.button_xl {
  width: 135px;
}

.button_xxl {
  width: 170px;
}







input[type="file"] {
  display: none;
}


















/*===== กำหนด ขนาด =======*/
.widthS
{
  width: 100px !important;
}


.widthM
{
  width: 150px !important;
}



.widthL
{
  width: 200px !important;
}



.paddingBottomM {
  padding-bottom: 8px;
}

.paddingLeftRightM {
  padding-left: 8px;
  padding-right: 8px;
}

.marginTopM {
  margin-top: 8px;
}


.hidden {
  display: none;
}


@media only screen and (min-width: 1200px) {


}


