﻿/** 整體樣式Start **/
/*全站中文使用Google Font Noto Sans TC/SC繁簡字型、英文使用Google Font Roboto字型*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;500;700&family=Noto+Sans+TC:wght@300;500;700&family=Roboto:wght@300;500;700&display=swap');

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: 'Roboto', arial, 'Noto Sans TC', 'Noto Sans SC', sans-serif;
  /** Google Font 繁/簡中 英文字型 **/
  font-size: 16px;
  /* 預設字體大小 */
  height: 100%;
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  /* 全數設定粗體500 */
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.6rem;
}

h5 {
  font-size: 1.4rem;
}

h6 {
  font-size: 1.2rem;
}

a:link {
  color: #009844;
  text-decoration: none;
}

a:hover {
  color: #004D22 !important;
  text-decoration: underline;
}

a:active {
  color: #004D22;
  text-decoration: underline;
}

a:visited {
  color: #989E9A;
  text-decoration: underline !important;
}

.remark_blue a:hover {
  color: #004D22 !important;
  text-decoration: underline;
}

hr {
  margin: 5px 0px;
  border-top: 1px solid #009844;
  opacity: 1;
  box-sizing: inherit;
}

.tech_baby_all {
  display: none;
}

option:disabled {
  color: #DADEDB !important;
}

/*Scrollbar style*/
/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #FFFFFF;
  border-radius: 4px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #DADEDB;
  border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #B9BFBC;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:active {
  background: #989E9A;
}

/*Scrollbar style*/

input {
  background-color: #F7F9F8;
  border: 1px solid #B9BFBC;
  border-radius: 2px;
  box-sizing: border-box;
  padding: 8px;
  border-radius: 2px;
  color: #808582;
}

input:hover {
  background-color: #FFFFFF;
  border-color: #009844;
}

input:focus {
  background-color: #FFFFFF;
  outline: 1px solid #009844;
  box-shadow: 0 0 5px #009844;
}

input:disabled {
  border-color: #DADEDB;
  background-color: #DADEDB;
  border: 1px solid #B9BFBC;
}

.border-n {
  border: none;
}

/* input單位放在裡面 */

.machine_condition {
  display: inline-block;
  width: auto;
}

.br-none {
  border-right: none !important;
}

.bg-tb-input {
  background-color: #F7F9F8 !important;
  border-left: none !important;
  border: 1px solid #B9BFBC;
  border-radius: 2px;
}

.bg-tb-input-dark {
  background-color: #DADEDB !important;
  border-left: none !important;
  border: 1px solid #B9BFBC;
  border-radius: 2px;
}

.bg-tb-input-dark2 {
  background-color: #DADEDB !important;
  border: 1px solid #B9BFBC;
  border-radius: 2px;
}

.btn-green {
  color: #FFFFFF;
  width: auto;
  background-image: -webkit-linear-gradient(top,
      #24a600 1%,
      #24a600 22%,
      #24a600 30%,
      #009844 100%);
  margin: 10px 3px;
  padding: 10px 20px !important;
  cursor: pointer;
  border-radius: 2px;
  border-color: transparent;
}

.btn-green:hover {
  color: #FFFFFF !important;
  background-image: none;
  background-color: #E60012;
}

.btn-green:disabled {
  background-image: none;
  background-color: #DADEDB;
  color: #989E9A !important;
}

.btn-green>img {
  margin-right: 8px;
}

.pdf-btn {
  background-image: -webkit-linear-gradient(top, #24a600 1%, #24a600 22%, #24a600 30%, #009844 100%);
  border-radius: 0px 2px 2px 0px;
  padding: 5.7px 10px;
  color: #ffffff;
  margin-left: -5px;
  border-left: 1px solid #FFFFFF;
}

.btn_ghost_Rest {
  width: auto;
  color: #1F211F;
  background-color: #ffffff;
  cursor: pointer;
  border: 1px solid #009844;
  border-radius: 2px;
  padding: 10px 20px;
  margin: 10px 3px;
  font-size: 16px;
}

.btn_ghost_Rest:hover {
  color: #E60012;
  border-color: #E60012;
}

.btn_ghost_Rest:disabled {
  border: 1px solid #989E9A;
  color: #989E9A;
}

.btn_solid_Rest {
  color: #ffffff;
  background-image: -webkit-linear-gradient(top, #24a600 1%, #24a600 22%, #24a600 30%, #009844 100%);
  border: none;
  border-color: transparent;
  border-radius: 2px;
  padding: 10px 20px;
  margin: 10px 3px;
  font-size: 16px;
}

.download-search-bar {
  margin-top: -35px;
}

.text-green {
  color: #009844 !important;
}

.text-red {
  color: #E60012 !important;
}

.text-black {
  color: #212121 !important;
}

.text-white {
  color: #ffffff;
}

.text-success-s {
  color: #00CC5C;
}

.text-bold {
  font-weight: 400;
}

.bg-none {
  background-color: transparent !important;
}

.bg-white {
  background-color: #ffffff;
}

.bg-gray {
  background-color: #F7F9F8;
}

.bg-green {
  background-color: #009844;
}

.bg-red {
  background-color: #E60012;
}

.bg-green1 {
  background-color: #24A600;
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
}

.table>tbody>tr>td,
.table>tbody>tr>th {
  vertical-align: middle;
}

#form1 {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card {
  margin: 0px 10px;
  box-shadow: 0px 2px 10px rgb(0 77 34 / 10%);
  border-radius: 4px;
  border: 0px transparent;
  height: 500px;
}

.card-body {
  padding: 24px 24px 0px 24px;
}

.card-title {
  white-space: nowrap;
}

.card-body-height {
  min-height: 150px;
}

.card-img-top {
  width: 160px;
  align-self: center;
}

/** go top樣式 **/
#gotop {
  width: 40px;
  height: 40px;
  position: fixed;
  right: 8%;
  bottom: 13%;
  background-color: #E60012;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/** go top樣式 **/

/** 表格樣式 **/
.hs_table {
  width: auto;
  background-color: #FFFFFF;
}

.hs_table>thead>tr {
  background-color: #FFFFFF !important;
  border: 0px;
  border-bottom: 2px solid #B9BFBC;
  text-align: center;
  font-weight: 400;
}

.hs_table tbody {
  background-color: #FFFFFF;
}

.hs_table tr:nth-child(even) {
  background: #F7F9F8
}

.hs_table th,
.hs_table td {
  padding: 8px 12px;
  border: 1px solid #DADEDB
}

.hs_table td {
  text-align: center;
}

.separate {
  text-align: center;
  background: #FFFFFF;
}

/** 表格樣式 **/

/** 整體樣式Start **/

/** header樣式 **/
header {
  min-height: 103px;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
}

.navbar {
  flex-direction: row-reverse;
}

.navbar_brand {
  height: 33px;
  display: flex;
  flex-direction: row;
  justify-items: start;
  align-items: flex-end;
  margin-left: 2.5%;
}

.navbar_brand>img {
  min-width: 167px;
}

.navbar_brand>div {
  margin-left: 20px;
  line-height: 15px;
  font-size: 1.25rem;
}

select:disabled {
  opacity: 1;
  background-color: #D7D9D8;
  color: #989E9A;
}

.search_and_navbtn {
  display: flex;
  flex-direction: row-reverse;
}

#RWDSerachBar {
  display: none;
}

#languageSelector>form>.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: -5px;
  margin-top: 1.5rem;
}

#searchBox>.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: -200px;
  margin-top: 1.5rem;
  /*width: 263px;*/
  padding: 10px;
}

#search_box_rwd_form {
  display: none;
}

.brand_title {
  display: inline-block;
  vertical-align: sub;
  font-size: 1.4rem;
  padding: 0px 0px 0px 15px;
}

/* Remove border from toggler */
.navbar-toggler {
  border: 0;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none;
  box-shadow: none;
  border: 0;
}

/* Lines of the Toggler */
.toggler-icon {
  width: 30px;
  height: 3px;
  background-color: #009844;

  display: block;
  transition: all 0.2s;
}

/* Adds Space between the lines */
.middle-bar {
  margin: 5px auto;
}

/* State when navbar is opened (START) */
.navbar-toggler .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
  opacity: 0;
  filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}

/* State when navbar is opened (END) */

/* State when navbar is collapsed (START) */
.navbar-toggler.collapsed .top-bar {
  transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
  opacity: 1;
  filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
  transform: rotate(0);
}

/* State when navbar is collapsed (END) */

/* Color of Toggler when collapsed */
.navbar-toggler.collapsed .toggler-icon {
  background-color: #009844;
}

.form-control,
.form-control:focus {
  background-color: #F7F9F8;
  border: 2px solid #F7F9F8;
  border-radius: 2px 0px 0px 2px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}

.input-group {
  width: auto !important;
  background-color: #F7F9F8;
}

.tb-search {
  width: 100%;
  max-width: 170px;
}

.btn-search {
  padding: 0px 10px !important;
  color: #009844;
  background-color: #F7F9F8;
  border-radius: 0px 2px 2px 0px !important;
}

.btn-search:hover {
  color: #FFFFFF;
  background-color: #009844;
}

.btn {
  padding: 0px;
}

.btn:focus {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}

.LoginLB {
  font-weight: normal;
  color: black;
}

.language-menu {
  border-radius: 2px;
  min-width: auto;
}

.dropdown-item:hover {
  background-color: #E6F2EB;
  color: #009844;
}

.dropdown-item:focus {
  background-color: #009844;
  color: #FFFFFF;
}

#navbarSupportedContent {
  justify-content: flex-end;
  max-width: 100%;
  background-color: #FFFFFF;
}

.nav_item {
  display: flex;
  flex-flow: row;
  justify-items: center;
  align-items: center;
}

.nav_item:before {
  content: "|";
  color: #CCCCCC;
  margin: 0px 8px;
}

.nav_item:last-child:after {
  content: "|";
  color: #CCCCCC;
  margin: 0px 8px;
}

.nav_item a:hover {
  text-decoration: none;
  color: #009844;
}

.nav-btn {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  margin: 0px 10px;
  cursor: pointer;
}

.nav-btn>img {
  width: 36px;
}

.nav-btn>span {
  font-size: 0.8rem;
  font-weight: 300;
}

#header_username>.language-menu {
  margin-top: 1.5rem;
  right: 0px;
}

#languageSelector>.language-menu {
  margin-top: 1.5rem;
}

/** header樣式 **/

/** wrapper樣式 **/
.wrapper {
  flex-grow: 1;
}

.sideDDR {
  background-image: url("/img/life_calculation/Datorker_Robot_Reducer/WUT-S-P_side.png");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-attachment: fixed;
}

/** wrapper樣式 **/
/** footer樣式 **/
footer {
  border-bottom: 4px solid #009844;
  padding: 10px 0px;
  background-color: #F0F2F1;
}

.footer-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
  margin: 24px 0px;
}

.footer-content>div {
  display: inline-block;
  margin: 0px 5px;
}

.footer-copyright {
  font-size: 0.8rem;
}

/** footer樣式 **/

/** main樣式 **/
.main {
  padding: 20px;
}

.section {
  margin-bottom: 6%;
}

.section_title {
  margin-top: 10px;
}

/** main樣式 **/

/** 首頁banner樣式 **/
.learnMore {
  color: #ffffff;
  font-size: 1rem;
  background-image: -webkit-linear-gradient(top, #24a600 1%, #24a600 22%, #24a600 30%, #009844 100%);
  border-color: transparent;
  padding: 10px 30px;
  border-radius: 2px;
  border: none;
}

.learnMore:hover {
  background-image: none;
  background-color: #E60012;
  color: #ffffff !important;
}

.learnMore>img {
  margin-right: 10px;
}

.learnMore2 {
  color: #ffffff;
  font-size: 1rem;
  background-image: -webkit-linear-gradient(top, #24a600 1%, #24a600 22%, #24a600 30%, #009844 100%);
  border-color: transparent;
  padding: 10px 20px;
  border-radius: 2px;
  border: none;
}

.learnMore2:hover {
  background-image: none;
  background-color: #E60012;
  color: #ffffff !important;
}

.headbanner {
  height: 350px;
  /* background-image: url("/img/banner_old.jpg"); */
  background-repeat: no-repeat;
  background-attachment: scroll;
  /*background-position: center center;*/
  background-size: cover;
}

.headbanner_container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  height: 350px;
}

.title {
  font-size: 1.83rem;
  color: #ffffff;
}

.sub-title {
  font-size: 1.33rem;
  color: #ffffff;
}

.head-text {
  width: 510px;
  padding: 70px 0px 0px 20px;
}

.head-text>.title {
  font-size: 2.3rem;
  margin-bottom: 24px;
  color: #ffffff;
  font-weight: 500 !important;
}

.head-text>.sub-title {
  font-size: 1.2rem;
  font-weight: 400;
  color: #ffffff;
}

.head-text-mobile {
  display: none;
}

.head-image {
  width: 30%;
  /* padding: 50px 50px 0px 0px; */
  position: absolute;
  top: 80px;
  right: 220px;
}

/** 首頁banner樣式 **/

/** 首頁Technical Tool樣式 **/

.techTool_container {
  padding: 10px 13px;
}

.techTool_box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 22px 30px;
  box-shadow: 0px 2px 10px rgba(0, 77, 34, 0.1);
  border-radius: 4px;
  background-color: #ffffff;
}

.techTool_box:hover {
  color: #009844;
  margin-top: -6px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.techTool_box_left {
  width: 70%;
}

.techTool_box_left>h5 {
  margin-bottom: 20px;
}

.techTool_box_right {
  width: 30%;
}

.techTool_box_right>img {
  width: 100px;
}

.greenarrow {
  font-size: 1rem;
  color: #009844;
}

/** 首頁Technical Tool樣式 **/

/* select page選單頁樣式 */
.select_page_link:hover{
  text-decoration: none;
}

.select_page_box {
  display: flex;
  min-height: 150px;
  justify-content: space-between;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0px 0px 5px rgb(0 77 34 / 30%);
  margin-bottom: 15px;
}

.select_page_left {
  padding: 30px;
}

.select_page_right>img {
  width: 150px;
  border-radius: 4px;
}

.select_page_box:hover {
  margin-top: -6px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #009844;
}

/* select page選單頁樣式 */

/* tech service選單頁樣式 */
.service_page {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service_page>img {
  width: 336px;
}

.texh_service_flex {
  display: flex;
  flex-wrap: nowrap;
}

.tech_contact_left {
  margin-top: 48px;
  margin-left: 23%;
}

.tech_contact_right {
  margin-top: 94px;
  margin-right: 18%;
}

.tech_service_link {
  top: 8px;
  cursor: pointer;
}

.tech_service_link>a:hover {
  text-decoration: underline;
}

.tech_service_image {
  padding: 0px 24px 24px 24px;
  overflow: hidden;
}

.tech_leave_message {
  font-size: 24px;
}

/* tech service選單頁樣式 */
/** 首頁Product Information樣式 **/
.proInfo {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #FFFFFF;
  padding: 10px;
  /* box-shadow: 0px 2px 10px rgb(0 77 34 / 10%); */
  /* border-radius: 4px; */
  /* margin: 5px; */
  /* border-top: solid 1px;
  border-top-color: #B9BFBC; */
}

.proInfo:hover {
  cursor: pointer;
}

.proInfoImg,
.proInfoContent {
  padding: 10px;
}

.proInfoImg {
  width: 40%;
}

.proInfoImg>img {
  width: 100%;
}

.proInfoContent {
  width: 60%;
}

.onlineDate {
  color: gray;
  font-size: 0.83rem;
}

.infoLb {
  font-size: 1rem;
}

/** 首頁Product Information樣式 **/

/* 篩選條件樣式 */
.product_filter {
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0px 2px 10px rgb(0 77 34 / 10%);
  margin-bottom: 10px;
}

.product_link {
  color: #1F211F;
  cursor: pointer;
}

.product_link:hover {
  color: #009844;
}

.product_link .card-body img {
  width: 90%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.product_link:hover .card-body img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.product_link .card-footer {
  border-top: none;
}

.drr_product_selection_bg {
  background-image: url('/img/WUT-S-P_bg.png');
  background-repeat: no-repeat;
  background-position: bottom right;
  background-attachment: fixed;
}

.ballSpline_product_selection_bg {
  background-image: url('/img/selectBg-ballSpline.png');
  background-repeat: no-repeat;
  background-position: bottom right;
  background-attachment: fixed;
}

.ballscrew_product_selection_bg {
  background-image: url('/img/selectBg-ballscrew.png');
  background-repeat: no-repeat;
  background-position: bottom right;
  background-attachment: fixed;
}

.gw_product_selection_bg {
  background-image: url('/img/selectBg-gw.png');
  background-repeat: no-repeat;
  background-position: bottom right;
  background-attachment: fixed;
}

.sr_product_selection_bg {
  background-image: url('/img/selectBg-Single-Axis Robot.png');
  background-repeat: no-repeat;
  background-position: bottom right;
  background-attachment: fixed;
}

/* 篩選條件樣式 */

/* 驗證碼樣式 */
#mainCPH_TBValidateCode_sign_up,
#mainCPH_TBValidateCode_member_profile,
#TBValidateCode_login {
  border-width: 1px;
  border-style: solid;
  width: 150px;
  height: 38px;
  cursor: pointer;
}

#renew_valid_code2,
#renew_valid_code {
  font-size: 0.8rem;
}

/** 登入畫面樣式 **/
/*-------20210803 Fix to Flex------*/
#member_area {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1021;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.login_form_left,
.login_form_right {
  background-color: white;
  height: 525px;
  padding: 40px 32px;
}

.login_form_left {
  width: 600px;
  background-image: url("../img/icon/WelcometoHIWIN-L.png");
  /*Login圖片*/
  border-radius: 2px 0px 0px 2px;
}

.login_form_right {
  max-width: 400px;
  border-radius: 0px 4px 4px 0px;
}

.signform {
  min-height: 550px;
  max-width: 1000px;
  left: 50%;
  /*margin-left: -500px;*/
  display: flex;
  flex-direction: row;
  z-index: 900;
}


.tech_more_area {
  position: fixed;
  z-index: 1;
  /* Sit on top */
  padding-top: 100px;
  left: 0;
  top: 50px;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

.tech_more_content {
  background-color: #ffffff;
  margin: auto;
  padding: 24px;
  border-radius: 4px;
  width: 500px;
}

.signform_signup {
  margin: 0 auto;
  margin-top: 0;
  padding: 30px 30px;
  max-width: 800px;
  background-color: white;
  border-radius: 2px;
  z-index: 900;
}

.signform_forgetpassword {
  margin: 0 auto;
  margin-top: 0;
  padding: 10px 30px 30px;
  max-width: 350px;
  background-color: white;
  border-radius: 4px;
  z-index: 900;
}

.login-title {
  text-align: left;
  font-size: 2em;
  margin-bottom: 24px !important;
}

.signinput {
  height: 38px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 10px;
  -webkit-appearance: none;
  background-color: #F7F9F8;
  border: 1px solid #B9BFBC;
  padding: 0 8px;
  box-sizing: border-box;
  border-radius: 2px;
}

.loginSubmitBtn {
  display: inline-block;
  position: relative;
  border: 1px solid transparent;
  color: #fff;
  width: 46%;
  background-image: -webkit-linear-gradient(top,
      #24a600 1%,
      #24a600 22%,
      #24a600 30%,
      #009844 100%);
  padding: 10px 24px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 2px;
  margin-right: 6%;
}

.loginSubmitBtn:hover {
  color: #FFFFFF;
  background-image: none;
  background-color: #E60012;
}

.cancelBtn {
  color: black;
  width: 46%;
  background-color: white;
  border: 1px solid #009844;
  padding: 10px 24px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 2px;
}

.drp-select {
  height: 39px;
  width: 99.9%;
  background-color: #F7F9F8;
  border: 1px solid #B9BFBC;
  border-radius: 2px;
}

.form-select {
  background-color: #F7F9F8;
  border: 1px solid #B9BFBC;
  border-radius: 2px;
}

.form-select:hover {
  background-color: #FFFFFF;
  border: 1px solid #009844;
}

.form-select:focus {
  box-shadow: 0 0 5px #009844;
}

/** 登入畫面樣式 **/

/**自訂Checkbox**/
/* The container */
.ck_container {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.ck_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #FFFFFF;
  border:1px solid #3F423F;
}

/* On mouse-over, add a grey background color */
.ck_container:hover input~.checkmark {
  background-color: #F7F9F8;
}

/* When the checkbox is checked, add a blue background */
.ck_container input:checked~.checkmark {
  background-color: #009844;
  border:none;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.ck_container input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.ck_container .checkmark:after {
  left: 7px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: 1px solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Style the checkmark/indicator */
.ck_container .checkmark[aria-disabled=true], .ck_container:hover input~.checkmark[aria-disabled=true]{
  border:none;
  background-color: #B3B3B3;
}

/** Radio **/
.form-check-input {
  /* width: 1.09em;
  height: 1.1em; */
  margin-top: .2em;
  border-color: #3F423F;
  margin-left: 10px;
}

.form-check-input:checked {
  background-color: #009844;
  border-color: #009844;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0rem;
}

.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: .5;
  border-color: #989E9A;
}

/** Switch **/

.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #808582;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider[aria-disabled=true]{
  background-color: #DADEDB;
}

.slider[aria-disabled=true]:before{
  background-color: #989E9A;
}

input:checked + .slider {
  background-color: #009844;
}

input:focus + .slider {
  box-shadow: 0 0 1px #009844;
}

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 25px;
}

.slider.round:before {
  border-radius: 50%;
}

/** 註冊畫面樣式 **/
.signupBtn {
  color: white;
  width: 150px;
  background-image: -webkit-linear-gradient(top,
      #24a600 1%,
      #24a600 22%,
      #24a600 30%,
      #009844 100%);
  padding: 10px 40px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 2px;
  border-color: transparent;
}

.signupBtn:hover {
  background-image: none;
  background-color: #E60012;
  color: #FFFFFF;
}

.signupBtnCancel {
  color: black;
  width: 150px;
  border: 1px solid #009844;
  padding: 10px 40px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 2px;
  background-color: white;
  border-style: solid;
}

/*cookire agree area*/
.cookie_agreed {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(31, 33, 31, 0.6);
  color: #ffffff;
  padding: 16px;
  position: fixed;
  bottom: 0px;
  width: 100%;
  z-index: 9999;
}

.cookie_agreed>span>a {
  text-decoration: underline;
  color: #ffffff;
}


.cookie_agreed_LB {
  text-decoration: none !important;
  color: #ffffff !important;
  font-weight: 400 !important;
}

.sb-example-1 .search {
  width: 100%;
  position: relative;
  display: flex;
}

.sb-example-1 .searchTerm {
  width: 100%;
  border: solid #b3b3b3;
  border-right: none;
  padding: 3px;
  border-radius: 3px 0 0 3px;
  outline: none;
  color: #9dbfaf;
  margin-top: 7px;
  font-weight: 100;
  border-width: 1.5px;
}

.sb-example-1 .searchTerm:focus {
  color: black;
}

.sb-example-1 .searchButton {
  margin-top: 7px;
  height: 40px;
  border: solid #b3b3b3;
  background-color: white;
  text-align: center;
  color: #fff;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  font-size: 16px;
  border-width: 1.5px;
  border-left: none;
}

.signupHeadimg {
  max-width: 382px;
  margin: 0 auto;
  margin-bottom: -50px;
}

.signdataform {
  /* 淺綠色背景照片fullcover滿版的 css*/
  background-image: url(../img/dataPage/background-green.png);
  position: absolute;
  top: 9%;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
}

/** 註冊畫面樣式 **/

/*下載中心*/
.title_dc {
  font-weight: 400;
}

.sub-banner {
  background-image: url('/img/dataPage/background-green.png');
  /*height: 240px;*/
  width: 100%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
}

.module-search {
  position: relative;
  display: flex;
  width: 100%;
}

.findTerm {
  width: 100%;
  border-radius: 1px 0 0 1px;
  outline: none;
  color: black;
  font-weight: lighter;
  font-size: 18px;
  border-width: 1.5px;
  border-style: solid;
  border-right: none;
  box-shadow: 0px 2px 10px rgb(0 77 34 / 10%);
  border-color: transparent;
  padding: 20px;
  background-color: #F9F9F9;
}

.findButton {
  background-color: #F9F9F9;
  text-align: center;
  color: #009984;
  border-radius: 0 1px 1px 0;
  cursor: pointer;
  font-size: 16px;
  border-width: 1.5px;
  box-shadow: 0px 2px 10px rgb(0 77 34 / 10%);
  border-color: transparent;
  padding: 20px;
}

.findButton>i {
  padding: 0px 1online0px;
  font-size: 1.5rem;
}

.findButton:hover {
  color: #FFFFFF;
  background-color: #009844;
}

option {
  font-size: 1.2rem;
}

option:hover {
  background-color: #E6F2EB;
  color: #009844;
}

select:focus {
  outline: 5px solid rgb(0 77 34 / 10%);
}

.custom-select {
  width: 100%;
  height: 70px;
  box-shadow: 0px 2px 10px rgb(0 77 34 / 10%);
  border-color: transparent;
  padding: 20px;
  font-size: 18px;
  line-height: 1;
  border: 0;
  border-radius: 2px;
  background: url("/img/chevron-down-solid.svg") no-repeat right #FFFFFF;
  -webkit-appearance: none;
  background-position-x: 95%;
}

.custom-select:focus {
  background: url("/img/chevron-up-solid.svg") no-repeat right #FFFFFF;
  -webkit-appearance: none;
  background-position-x: 95%;
}

.custom-select:disabled,
.custom-select[disabled] {
  background: url("/img/chevron-flat-solid.svg") no-repeat right #D7D9D8;
  -webkit-appearance: none;
  background-position-x: 95%;
}

.file_subtitle {
  color: #5F635F;
}

.file_title {
  padding: 0px 8px;
}

.input_fontcolor {
  color: #5F635F;
}

.nav-pills .nav-link {
  background-color: #DFDFDF;
  border: 0;
  border-radius: 2px;
  margin-right: 10px;
  color: #1F211F;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: #009844;
  background-image: -webkit-linear-gradient(top, #24a600 1%, #24a600 22%, #24a600 30%, #009844 100%);
}

.nav-link:hover {
  color: #009844;
}

.split-Btn {
  width: 130px;
  height: 40px;
}

.downloadcenterSearch {
  color: black;
  width: 20%;
  background-color: white;
  border-color: #B4B4B4;
  border-style: solid;
  padding: 8px 0;
  font-size: 1.3em;
  cursor: pointer;
  border-radius: 3px;
}

.downlaod_title_padding {
  padding-left: 30px;
}

.myBtn {
  font-size: 16px;
  padding: 10px 40px;
}

/*麵包屑*/
.breadcrumb>li {
  display: inline-block;
  color: #808582;
}

.breadcrumb>li+li:before {
  content: ">" !important;
  padding: 0 5px;
  color: #808582;
}

.breadcrumb-item :active {
  color: #009844;
}

/*新聞*/
.FOCUS_NEWS {
  color: #E60012;
  font-size: 12px;
}

.news-right {
  display: flex;
  padding: 10px;
}

.news-pop {
  display: inline-block;
}

.news_pop img {
  width: 100%;
  height: auto;
}

.news_pop img:hover {
  box-shadow: 0 0 2px 1px #24a600;
}

.newsList {
  background-color: #FFFFFF;
}

.newsList>div {
  border-bottom: 1px solid #CCC;
}

.newsList>div:last-child {
  border-bottom: none;
}


.newsList-title {
  font-size: 18px;
}

.newsList-title ::after {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  position: absolute;
  left: 50%;
  bottom: 0;
  background-color: #094;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 1;
}

.news-right-cap {
  width: 70%;
}

.news-right-img {
  width: 30%;
  display: flex;
  align-items: center;
}

.news-right-img img {
  width: 100%;
}

.news-right:hover {
  /*box-shadow: 0 0 2px 1px #24A600;*/
  cursor: pointer;
}

.newsDate {
  font-size: 12px;
}

.news_newsContent_img {
  width: 500px;
}

.tab-nextpage {
  margin-top: 64px;
  text-align: end;
}

.btn-color {
  color: #fff;
  background-color: #009844;
  border-color: #009844;
}

.pager {
  padding: 5px 8px;
  position: relative;
  display: block;
}

.page-item:not(:first-child) .pager {
  margin-left: -1px;
}

/*搜尋頁面*/

.searchpage {
  display: flex;
}

.searchpage>div {
  display: flex;
  align-items: center;
  filter: drop-shadow(0 1px #0091c2);
  margin-left: 15px;
}

.searchpage>div:after {
  content: "";
  background: #009844;
  width: 4px;
  height: 16px;
  position: absolute;
  top: 40px;
  right: 0px;
  transform: rotate(135deg);
}

.searchpage>div>input {
  color: white;
  font-size: 18px;
  background: transparent;
  width: 45px;
  height: 45px;
  padding: 10px;
  border: solid 3px #009844;
  outline: none;
  border-radius: 35px;
  transition: width 0.5s;
}

.searchpage>div>input::placeholder {
  color: #009844;
  opacity: 0;
  transition: opacity 150ms ease-out;
}

.searchpage>div>input:focus::placeholder {
  opacity: 1;
}

.searchpage>div>input:focus,
.searchpage>div>input:not(:placeholder-shown) {
  width: 250px;
}

/*搜尋頁面*/

.dropdown-menu>li>a :hover {
  color: #24A600;
}

.form-select {
  font-size: 16px;
}

/* Remark備註 */
.remark_blue {
  background-color: #F0F2F1;
  font-size: 14px;
  border-radius: 2px;
}

.remark_blue2 {
  background-color: #FAE1E1;
  font-size: 14px;
  border-radius: 2px;
}

/* privicy */
.privacy_area {
  border: 1px solid #F0F2F1;
  width: 100%;
  height: 200px;
  padding: 10px;
  overflow: auto;
  word-wrap: break-word;
  text-align: left;
  overflow-x: hidden;
}

.mt-48 {
  margin-top: 48px;
}

#logo {
  display: block;
}

#logo_s {
  display: none;
}

.content {
  font-size: 14px;
  margin-left: 8px;
  padding-top: 8px;
}

.all_awarePro {
  padding: 10px 0px;
}

.all_awarePro label {
  line-height: 34px;
  height: 34px;
  margin-bottom: 5px;
  margin-right: 10px;
  padding: 0px 10px 0px 10px;
  border-radius: 16px;
  border-color: #707070;
}

.all_awarePro label:hover {
  background-color: #5f635f;
  border: #5f635f;
}

.awareProLB {
  line-height: 34px;
  height: 34px;
  text-align: center;
  background-color: #eff1f3;
  border-radius: 2px;
  cursor: pointer;
}

@media (min-width: 1200px) {
  .border_adju {
    border-left: 1px solid #DADEDB;
    border-top: 0px solid #DADEDB;
  }

  .btn_adju {
    margin-left: 11px;
  }

  .m_p_adju {
    padding-left: 3%;
  }

  .div_pad_adju24 {
    padding-right: 12px;
  }

  .div_pad_adju32 {
    padding-right: 32px;
  }

  .div_pad_adju20 {
    padding-right: 20px;
  }

  .container {
    width: 1200px;
  }

  .bannerpic {
    width: 35% !important;
  }

  .infoLb {
    margin-top: 6px;
    margin-left: 0px !important;
  }

  .onlineDate {
    margin-left: 0px !important;
  }

  .bannerpic-mobile {
    display: none;
  }

  .icon-new {
    margin-left: 0px !important;
  }

  .signupImage_L {
    display: block !important;
  }

  .signupImage_M {
    display: none !important;
  }

  .search-mobile {
    display: none;
  }

  .dcbutton {
    text-align: right;
  }
}

@media (max-width: 1030px) {
  .border_adju {
    border-left: 1px solid #DADEDB;
    border-top: 0px solid #DADEDB;
  }

  .m_p_adju {
    padding-left: 3%;
  }

  .btn_adju {
    margin-left: 11px;
  }

  header {
    height: 86px;
  }

  #navbarSupportedContent {
    position: fixed;
    width: 100%;
    left: 0px;
    margin-top: 513px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 1022;
  }

  #languageSelector>form>.dropdown-menu[data-bs-popper] {
    left: 20px;
  }

  #RWDSerachBar {
    display: flex;
    justify-content: space-between;
  }

  #RWDSerachBar>.form-outline {
    width: 90%;
  }

  #searchBox {
    display: none;
  }

  #searchBox>.dropdown-menu[data-bs-popper] {
    display: none !important;
  }

  #search_box_rwd_form {
    display: block;
  }

  #search_box_rwd_form>.input-group>.form-outline {
    width: 96%;
  }

  #dropdownMenuButton2 {
    flex-flow: row;
    justify-content: start;
    align-items: center;
    padding-top: 10px;
  }

  .nav_item {
    padding: 5px;
  }

  .nav_item:before {
    content: "";
    color: #FFFFFF;
    margin: 0px 8px;
  }

  .nav_item:last-child:after {
    content: "";
    color: #FFFFFF;
    margin: 0px 8px;
  }

  .navbar-nav {
    border-top: 1px solid #B9BFBC;
    border-bottom: 1px solid #B9BFBC;
    margin-top: 10px;
  }

  .search_and_navbtn {
    display: block;
  }

  .tech_contact_left {
    margin-left: 10%;
  }

  .tech_contact_right {
    margin-right: 10%;
  }

  .tech_leave_message {
    font-size: 22px;
  }

  .head-image {
    right: 170px;
  }
}

@media (max-width: 768px) {

  .border_adju {
    border-left: 0px solid #DADEDB;
    border-top: 1px solid #DADEDB;
  }

  .m_p_adju {
    margin-top: 24px;
    padding-top: 24px;
  }

  .btn_adju {
    margin-left: 11px;
  }


  .head-image {
    right: 130px;
  }

  .head-image>img {
    width: 98%;
  }

  .nav_item:before {
    content: "";
    color: #FFFFFF;
    margin: 0px 8px;
  }

  .nav_item:last-child:after {
    content: "";
    color: #FFFFFF;
    margin: 0px 8px;
  }

  #search_box_rwd_form>.input-group>.form-outline {
    width: 95%;
  }

  .search_and_navbtn {
    display: block;
  }

  .head-text {
    width: 400px;
  }

  .tool-title {
    font-size: 1.16rem;
  }

  .bannerpic {
    display: block;
    width: 45%;
    float: right;
    object-fit: contain;
  }

  .bannerpic-mobile {
    display: none;
  }

  .toolImg {
    float: right;
  }

  .burger {
    display: none;
  }

  .icon-new {
    margin-left: 13px;
  }

  .signupImage_L {
    display: none;
  }

  .signupImage_M {
    display: block;
    margin: 0 auto;
  }

  .signform {
    left: 0;
  }

  .search-mobile {
    display: none;
  }

  .login_form_left {
    width: 400px;
  }

  .login_form_right {
    max-width: 350px;
  }

  /*新聞頁面*/
  .news-right-img {
    display: none;
  }

  .footer-logo {
    width: 20%;
  }

  .footer-content {
    width: 80%;
  }

  .dcbutton {
    text-align: initial;
  }

  .card-title>label {
    font-size: 18px;
  }

  .hs_table th,
  .hs_table td {
    padding: 8px 6px;
  }

  .texh_service_flex {
    flex-wrap: wrap;
  }

  .news_newsContent_img {
    width: 380px;
  }

  .tech_contact_left {
    margin-left: 2%;
  }

  .tech_contact_right {
    margin-right: 1%;
  }

  .tech_leave_message {
    font-size: 20px;
  }

}


@media (max-width: 576px) {
  .border_adju {
    border-left: 0px solid #DADEDB;
    border-top: 1px solid #DADEDB;
  }

  .m_p_adju {
    margin-top: 32px;
    padding-top: 32px;
  }

  .btn_adju {
    margin-left: 11px;
    width: 93.5%;
  }


  .displaynone {
    display: none;
  }

  header {
    min-height: 56px;
  }

  .head-image>img {
    width: 80%;
  }

  .headbanner_container {
    height: 300px;
  }

  #dropdownMenuButton3 {
    flex-direction: row;
  }

  #header_username>.language-menu {
    margin-top: 0.8rem;
  }

  #logo {
    display: none;
  }

  #logo_s {
    display: block;
  }

  .search_and_navbtn {
    margin-top: 17px;
  }

  #search_box_rwd_form>.input-group>.form-outline {
    width: 90%;
  }

  .navbar_brand {
    height: auto;
    margin-left: 4%;
  }

  .navbar_brand>img {
    min-width: auto;
  }

  .headbanner {
    background-position: center center;
    height: 500px;
  }

  .head-text {
    display: none;
  }

  .head-text-mobile {
    display: block;
    padding: 20px;
    background-color: #dedede;
    z-index: 999;
  }

  .headerText>h1 {
    font-size: 17pt;
  }

  .headerText>p {
    font-size: 10pt;
  }

  .head-image {
    width: 60%;
    right: 50px;
    /* margin: 0px 0px 0px 30%;
    padding: 20px 50px 0px 0px;*/
  }

  .learnMore-mobile>button {
    float: right;
    padding: 10px;
    margin-top: 2.5rem;
    background-color: transparent;
    border-color: #24a600;
    color: #24a600;
    border-radius: 2px;
    border-style: solid;
  }

  .bannerpic-mobile {
    display: block;
    width: 55%;
    margin: 0 auto;
  }

  .onlineDate {
    color: gray;
    font-size: 10pt;
  }

  .productInfo>div>div {
    margin-top: 2%;
  }

  .greenline {
    display: none;
    visibility: hidden;
    clear: both;
  }

  .greenarrow {
    text-align: center;
  }

  .techTool_container {
    width: 50%;
  }

  .techTool_box {
    width: 100%;
    flex-wrap: wrap-reverse;
  }

  .techTool_box_left,
  .techTool_box_right {
    text-align: center;
    width: 100%;
  }

  .techTool_box_right>img {
    width: 80px;
  }

  #language {
    display: none;
  }

  /*登入畫面*/
  .search-mobile {
    display: block;
  }

  .sb-example-1 {
    display: none;
  }

  .signform_A {
    width: 300px;
  }

  .split-line {
    display: none;
    clear: both;
  }

  .signform {
    position: relative;
    margin-left: 0px !important;
    left: 0px !important;
  }

  .login_form_left {
    background-image: none !important;
    background-color: transparent !important;
    display: none;
  }

  .login_form_right {
    width: 350px;
    border-radius: 4px 4px 4px 4px;
    height: auto;
  }

  /*下載中心*/
  .finder-box {
    flex-direction: column;
    padding: 10px 10px 15px !important;
  }

  .form-keyword>p {
    margin-top: 6%;
  }

  .downloadcenterSearch {
    width: 30% !important;
  }

  .tabstyle {
    font-size: 17px !important;
  }

  .searchpage>div:after {
    top: 38px !important;
  }

  .p_dc {
    font-size: 10px;
  }

  .sub-banner-download-center {
    height: 240px;
  }

  .findTerm {
    font-size: 14px;
  }

  .file_title {
    font-size: 21px;
    padding: 0px 3px;
  }

  .footer-logo {
    width: 25%;
    margin-bottom: 10px;
  }

  .footer-content {
    width: 75%;
  }

  .card-title>label {
    font-size: 11px;
  }

  .card-body {
    padding: 1.2rem 1.2rem;
  }

  .bs-stepper-circle {
    width: 2em;
    height: 2em;
    padding: .3em 0;
    margin: .2rem;
  }

  .bs-stepper-label {
    font-size: 11px;
  }

  .bs-stepper-line,
  .bs-stepper .line {
    flex: 1 0 30px;
  }

  .hs_table th,
  .hs_table td {
    padding: 2px 4px;
  }

  .service_page>img {
    width: 300px;
  }

  .texh_service_flex {
    flex-wrap: wrap;
  }

  .news_newsContent_img {
    width: 300px;
  }

  .newsList-title {
    margin-top: 24px;
  }

  .title_dc {
    font-size: 24px;
  }

  .card-img-top {
    width: 100px;
  }

  .Tech_Contact {
    flex-wrap: wrap;
  }

  .tech_contact_left {
    margin-left: 5%;
  }

  .tech_contact_right {
    margin-top: 10px;
    margin-left: 45%;
  }

  .tech_contact_right>img {
    width: 95%;
  }

  .cookie_agreed {
    flex-wrap: wrap;
  }

  .tech_baby_all {
    display: block;
  }

  .tech_baby_half {
    display: none;
  }
}

@media (max-width: 414px) {
  .navbar_brand>.text-green {
    display: none;
  }
}

.ALIN_POINTER {
  cursor: pointer;
}

.tech_contact_left2 {
  margin-top: 48px;
  margin-left: 15%;
}

.file_title2 {
  padding: 0px 0px;
}

.ALIN_BOLD {
  font-weight: bold;
}


/*軸承選型*/
.p-30 {
  padding-left: 30px;
}

label {
  padding-left: 10px;
  margin-right: 15px;
}

.brGrid {
  width: 100%;
  background-color: #fff;
  margin: 5px 0 10px 0;
  border: solid 1px #525252;
  border-collapse: collapse;
  font-family: Arial;
  font-size: 16px;
}

.mydatagrid {
  width: 100%;
  border: solid 1px black;
  min-width: 100%;
}

.GridView1header {
  background-color: rgb(235, 241, 222);
  color: black;
  border: solid 1px white;
  height: 25px;
  text-align: center;
  font-size: 18px;
}

.GridView1header>th {
  padding-right: 15px;
  padding-left: 15px;
}

.GridView1rows {
  background-color: rgb(242, 242, 242);
  font-size: 16px;
  color: black;
  min-height: 25px;
  text-align: center;
  border: solid 1px white;
}

.GridView1rows:hover {
  background-color: rgb(235, 241, 222);
}

.GridView1rows:nth-child(odd) {
  background-color: rgb(217, 217, 217);
}

@media (max-width: 1200px) {
  .border_adju {
    border-left: 1px solid #DADEDB;
    border-top: 0px solid #DADEDB;
  }

  .m_p_adju {
    padding-left: 3%;
  }

  .btn_adju {
    margin-left: 11px;
  }
}

@media (max-width: 990px) {
  .border_adju {
    border-left: 0px solid #DADEDB;
    border-top: 1px solid #DADEDB;
  }

  .btn_adju {
    margin-left: 11px;
  }

  .m_p_adju {
    margin-top: 24px;
    padding-top: 24px;
  }
}

@media (max-width: 767px) {
  .displaynone {
    display: none;
  }

  .border_adju {
    border-left: 0px solid #DADEDB;
    border-top: 1px solid #DADEDB;
  }

  .m_p_adju {
    margin-top: 24px;
    padding-top: 24px;
  }

  .btn_adju {
    margin-left: 11px;
    width: 93.5%;
  }
}