﻿*, *::after, *::before { box-sizing: border-box; }
a { text-decoration: none; color: #1ab188; -webkit-transition: .5s ease; transition: .5s ease; }

.form {
  background-color: #ffffff;
  padding: 2.5rem;
  margin: 2.5rem auto;
  max-width: 600px;
  border-radius: 6px;
  box-shadow: 0 4px 10px 2px rgba(19, 35, 47, 0.3);
}

@media only screen and (max-width: 500px) {
    .form { padding: 1%; margin: 1%; box-shadow: 0 4px 4px 2px rgba(19, 35, 47, 0.3); }
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */ color: pink; }
::-moz-placeholder { /* Firefox 19+ */ color: pink; }
:-ms-input-placeholder { /* IE 10+ */ color: pink; }
:-moz-placeholder { /* Firefox 18- */ color: pink; }

/* 기본 폼 필드 */
.field-wrap { position: relative; margin-bottom: 1.3rem; }
.field-wrap::after { content: ""; display: table; clear: both; }

.field-double::after { content: ""; display: table; clear: both; }
.field-double > div { float: left; margin-right: 2%; }
.field-double > div:last-child { margin: 0; }

/* 버튼이 포함되는 분할필드 */
.field-BTN::after { content: ""; display: table; clear: both;  margin-bottom: 1.3rem; }
.field-BTN > div { float: left; width: 88%; margin-right: 1%; }
.field-BTN > div:last-child { margin: 0; width: 37px; float: right; }

/* 작은화면에서는 사라지는 필드 */
.hide_Small { display: inline-block; }

@media only screen and (max-width: 500px) {
    .field-BTN > div { float: left; width: 75%; }
    .hide_Small { display: none; }
}

/* 기본 레이블 */
label { position: absolute; -webkit-transform: translateY(6px); transform: translateY(6px); left: 13px; color: rgba(19, 35, 47, 0.3); -webkit-transition: all 0.25s ease; transition: all 0.25s ease; -webkit-backface-visibility: hidden; pointer-events: all; margin: 4px; font-size: 1.4em; color: #1ab188; }
label.non_move { color: #1ab188; -webkit-transform: translateY(-20px); transform: translateY(-20px); left: 2px; font-size: 14px; }

/* 기본 버튼 */
.button { width: 100%; cursor: pointer; border: 0; outline: none; border-radius: 4px; padding: 15px 0; font-size: 2rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; background: #1ab188; box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 5px 0px; color: #ffffff; -webkit-transition: all 0.5s ease; transition: all 0.5s ease; -webkit-appearance: none; }
.button:hover, .button:focus { background: #179b77; }

.button_Icon { width: 100%; cursor: pointer; border: 0; outline: none; border-radius: 4px; min-width: 40px; height: 40px; font-size: 1.0em; font-weight: 600; text-transform: uppercase; background: #1ab188; box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 5px 0px; color: #ffffff; -webkit-transition: all 0.5s ease; transition: all 0.5s ease; -webkit-appearance: none; }
.button_Icon:hover, .button_Icon:focus { opacity: 0.8; }



/* 동의 등에 사용되는 기본 텍스트필드 */
.div_Agree { position: relative; margin-bottom: 30px; background-color: #ffeded; padding: 1em; border: dotted 1px; border-radius: 1em; line-height: 1.2em; }
.div_Agree::after { content: ""; display: table; clear: both; }


/* 텍스트 스타일 */
.Style_Red { color: red; }
.Style_Blue { color: blue; }
.Style_Bold { font-weight: bold; }


/* 기본 셀렉트 사용
select {
    font-size: 1.2rem;
    line-height: 1.65;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
    -webkit-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
    -ms-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
    background: transparent;
    border-radius: 4px;
    border: solid 1px dimgray;
    color: inherit;
    display: block;
    outline: 0;
    padding: 0 1rem;
    text-decoration: none;
    width: 100%;
    height: 2.75rem;
}

.select-wrapper {
    text-decoration: none;
    display: block;
    position: relative;
}

.select-wrapper:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
    color: #ffffff;
    content: '\f107';
    display: block;
    height: 2.75rem;
    line-height: calc(2.75rem + 0em);
    pointer-events: none;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 2.75rem;
}

.select-wrapper select::-ms-expand {
    display: none;
}
 */



.button_small {
    width: 100%;
    cursor: pointer;
    border: 0;
    outline: none;
    border-radius: 4px;
    padding: 10px;
    font-size: 1.0em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    background: #1ab188;
  box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 5px 0px;
    color: #ffffff;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-appearance: none;
}
.button_small:hover, .button_small:focus {
    opacity: 0.8;
}

.button_One {
    width: 100%;
    cursor: pointer;
    border: 0;
    outline: none;
    border-radius: 6px;
    padding: 10px;
    font-size: 1.0em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    line-height: 1.7em;
    background: #1ab188;
    box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 5px 0px;
    color: #ffffff;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-appearance: none;
}
.button_One:hover, .button_One:focus {
    opacity: 0.8;
}

.button_Delete {
    width: 70%;
    min-width: 100px;
    cursor: pointer;
    border: 0;
    outline: none;
    border-radius: 6px;
    padding: 0.4em;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    line-height: 1.7em;
    background: #ff6b6b;
    box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 5px 0px;
    color: #ffffff;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-appearance: none;
}
.button_One:hover, .button_One:focus {
    opacity: 0.8;
}


.button_Icon_S {
    width: 28px;
    height: 28px;
    cursor: pointer;
    border: 0;
    outline: none;
    border-radius: 4px;
    font-size: 1.0em;
    font-weight: 600;
    text-transform: uppercase;
    background: #1ab188;
    box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 5px 0px;
    color: #ffffff;
    text-shadow: 1px 1px 1px black; 
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-appearance: none;
}
.button_Icon_S:hover, .button_Icon_S:focus {
    opacity: 0.7;
}
.button_Icon_T { width: 110px; }
.button_Gray {    background: rgba(19, 35, 47, 0.3); }
.button_Red {    background: #ff9d82; }

.button_Icon:hover, .button_Icon:focus {
    opacity: 0.8;
}








.field_wrap_Normal {
  position: relative;  
  margin-bottom: 1em;
}

.field_wrap_Normal::after {
  content: "";
  display: table;
  clear: both;
}



.field-triple > div {
  float: left;
  width: 32%;
  margin-right: 2%;
}
.field-triple > div:last-child {
  margin: 0;
}
.field-triple::after {
  content: "";
  display: table;
  clear: both;
}

.field-quadruple::after {
  content: "";
  display: table;
  clear: both;
}
.field-quadruple > div {
  float: left;
  width: 24%;
  margin-right: 1%;
}
.field-quadruple > div:last-child {
  margin: 0;
}










.search_Text {
    height: 48px;
}

.div_ToDo {
    position: relative;
    display: inline-block;
    border: dotted 1px;
    padding: 0.4em 0.2em 0.4em 0.2em;
    border-radius: 0.3em;
    background-color: bisque;
    font-size: 1.4em;
    text-align: center;
    color: #808080;
    margin-bottom: 0.4em;
    text-shadow: 1px 1px 1px blue;
}
.div_ToDo::after {  content: "";  display: table;  clear: both;}
.todo_Text {  color: black;  font-size: 0.6em;  font-weight: bold;  text-shadow: 0px 0px 0px ;}

.pack_Done { background-color: #f3ffff; }
.List_Request {
    width: 100%;
    padding: 0.5em;
    border-radius: 0.3em;
    background-color: #fbfbfb;
    display: inline-block;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    color: darkgray;
    margin-bottom: 0.3em;
    box-shadow: 1px 1px 1px rgba(19, 35, 47, 0.3);
}
.List_Request_Detail {
    margin: 0.5em 1em; 
    padding: 1em;
    background-color: #fef5ff;
    border: dotted 1px;
    border-radius: 1em;
    line-height: 1.4em;
}

.List_Carton {
    width: 100%;
    border: dotted 1px;
    padding: 0.2em;
    border-radius: 0.3em;
    background-color: antiquewhite;
    display: inline-block;
    font-size: 1.6em;
    text-align: center;
    color: darkgray;
    margin-bottom: 0.3em;
    text-shadow: 1px 1px 1px blue;
}
.search_Result {
    width: 100%;
    border: dotted 1px;
    padding: 0.3em 0.2em 0.3em 0.2em;
    border-radius: 0.3em;
    background-color: antiquewhite;
    cursor: pointer;
    display: inline-block;
    font-size: 2em;
    line-height: 1.3em;
    text-align: center;
    color: darkgray;
    margin-bottom: 0.4em;
    text-shadow: 1px 1px 1px blue;
}
.List_Tracking_Matched_Small {
    margin-left: 3%;
    width: 94%;
    padding: 0.4em;
    border-radius: 0.3em;
    background-color: #e9e9e9;
    display: inline-block;
    font-size: 1em;
    font-weight: bold;
    color: silver;
    text-align: left;
    margin-bottom: 0.4em;
    box-shadow: #c4c4c4 3px 3px 5px 0px;
}
.Tracking_Status_64 {
    background-color: lightcyan;
    color: #808080;
}
.search_Result_Tracking {
    width: 100%;
    border: dotted 1px;
    padding: 0.4em 0.2em 0.4em 0.2em;
    border-radius: 0.3em;
    background-color: antiquewhite;
    cursor: pointer;
    display: inline-block;
    font-size: 1.8em;
    line-height: 1.2em;
    text-align: center;
    color: #808080;
    margin-bottom: 0.4em;
    text-shadow: 1px 1px 1px black;
}
.div_Purchase_Record {
    width: 100%;
    font-size: 1em;
    display: inline-block;
    padding: 0.4em;
    border-radius: 0.3em;
    border: solid 0 1px 1px 0;
    border-color: #fff;
    box-shadow: 0 1px 1px black;    
    margin-bottom: 0.5em;
    background-color: antiquewhite;
    clear: both;
}
.div_BG_LightGreen {    background-color: #f0faf0; }
.div_BG_Cyan {    background-color: #e4fffe; }
.div_BG_Gray {    background-color: rgba(0, 0, 0, 0.1); }
.div_Package_Arrange_Panel {
    width: 100%;
    background-color: antiquewhite; 
    padding: 1em;
    border-radius: 0.4em; 
    box-shadow: #c4c4c4 3px 3px 5px 0px;
    margin-bottom: 2em;
    clear: both;
}
.div_Package_Amount {
    width: 100%;
    background-color: ghostwhite; 
    font-weight: bold;
    color: gray;
    padding: 0.6em;
    border-radius: 0.4em; 
    box-shadow: #c4c4c4 3px 3px 5px 0px;
    clear: both;
    margin: 0.3em 0 0.3em 0;
}
.div_Package_Arrange_Quick {
    width: 400px; 
    text-align: center;
    line-height: 1.2em;
    clear: both; 
    background-color: blue; 
    color: white;
    position: fixed; 
    bottom: 5em;
    padding: 0.5em;
    border-radius: 0.3em;
    box-shadow: 1px 1px 1px black;
    z-index: 99;
}
.Selected_package_Number {
    width: 100%;
    background: #fff;
    border: 1px solid #3694d7;
    border-radius: 0.1em;
    outline: none;
    height: 37px;
    padding: 0.1em;
    display: inline-block;
    font-size: 1.8em;
    font-weight: bold;
    text-align: center;
    color: darkorange;
    text-shadow: 1px 1px 1px black;
    box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 5px 0px;
}
.div_Half_Arrange_Panel {
    float: right;
    background-color: #c6f6c4;
    font-size: 1em;
    line-height: 1.4em;
    font-weight: bold;
    text-align: right;
    color: #969696;
    padding: 1em;
    border-radius: 0.4em; 
    box-shadow: #c4c4c4 3px 3px 5px;
    margin: 1em 0em;
    clear: both;
}
.TextBox_Bank_Account {
    width: 100%;
    background: #fff;
    border: 1px solid #3694d7;
    border-radius: 0.1em;
    outline: none;
    height: 38px;
    padding: 0.3em;
    display: inline-block;
    font-size: 1.4em;
    font-weight: bold;
    text-align: center;
    color: #a9b0e6;
    box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 5px 0px;
}
.text_Area_Request {
    margin-top: 0.5em; 
    padding: 0.3em; 
    height: 190px;
}
.div_L_29 { width: 30%; float: left; }
.div_R_70 { width: 69%; float: right; min-width: 100px; line-height: 1.4em; padding-right: 0.6em }
.div_R_70_R { width: 69%; float: right; text-align: right; min-width: 160px; }
.div_Text_L { float: left; min-width: 140px; }
.div_Text_R { float: right; min-width: 140px; }
.div_Icon_Pack {
    font-size: 16px;
    width: 69%;
    float: right;
    min-width: 300px;
    margin-top: 15%;
    clear: both;
}
.div_Icon_Pack_S {
    font-size: 16px;
    float: right;
    clear: both;
}
.Icon_30_R { width: 30px; float: right; margin-left: 2%; min-width: 30px; }
.Icon_30_T { width: 15%; float: right; margin-left: 2%; min-width: 110px; }

.T_Number { width: 70%; float: left; min-width: 240px; font-weight: bold; }
.T_Date { float: right; font-size: 0.8em; font-weight: bold; text-shadow: none; text-align: right;}
.T_Date_L {     position: relative;    float: left;    font-size: 1.2em;    color: gray;    font-weight: bold;    text-shadow: none;    text-align: left;    min-width: 120px;    padding-left: 0.4em;}
.T_Memo {    
    font-size: 0.6em; 
    text-shadow: none;
    float: left;
    text-align: left;
    margin: 0.3em;
    padding: 0.3em;
    border-radius: 0.3em;
    background-color: honeydew;
    box-shadow: 1px 1px 1px rgba(19, 35, 47, 0.3);
}
.T_Memo_S {    
    font-size: 1em; 
    min-height: 32px;
    text-shadow: none;
    float: left;
    text-align: left;
    margin: 0.3em;
    padding: 0.3em;
    border-radius: 0.3em;
    background-color: honeydew;
    box-shadow: 1px 1px 1px rgba(19, 35, 47, 0.3);
}
.T_Memo_Center {    
    clear: both;
    width: 100%;
    font-size: 1em; 
    text-shadow: none;
    text-align: center;
    margin: 0.2em;
    padding: 0.2em;
    border-radius: 0.3em;
    background-color: honeydew;
    box-shadow: 1px 1px 1px rgba(19, 35, 47, 0.3);
}
.T_Status { 
    width: 28%;
    float: left;
    font-size: 0.8em;
    font-weight: bold;
    text-shadow: none;
    text-align: left;
    margin-top: 1%;
}
.T_Icon_Pack {
    font-size: 16px;
    float: right;
    min-width: 200px;
    margin-top: 1%;
}

.div_Red {  color: white; background-color: #ff8585; }
.div_Blue {  color: white; background-color: #8298ff; }
.div_Gray {  color: white; background-color: rgba(19, 35, 47, 0.3); }
.div_Alert_Red {    width: 100%;    color: white;    font-weight: bolder;    background-color: red;    padding: 0.5em;}
.div_Alert_Red_IN {
    width: 100%;
    color: blue;
    font-size: 0.8em;
    font-weight: bolder;
    background-color: antiquewhite;
    margin: 0.4em;
    text-shadow: none;
}

.div_Button_50 { width: 50%; margin-top: 0.4em; margin-bottom: 0.4em; min-width: 100px; float: right; right: 25% }
.div_OX_65 { width: 65%; float: left; margin-top: 0.3em; margin-bottom: 0.3em; }
.div_OX_50 { width: 50%; float: left; margin-top: 0.3em; margin-bottom: 0.3em; }
.div_OX_12 { width: 12%; float: left; margin-top: 0.3em; margin-bottom: 0.3em; margin-left: 4%; }
.div_OX_30 { width: 30%; float: right; margin-top: 0.3em; margin-bottom: 0.3em; }
.div_OX_48 { width: 48%; float: left; margin: 0.3em 1%; min-width: 80px; }
.div_OX_23 { width: 23%; float: left; margin: 0.3em 1%; min-width: 40px; }

.left_70 {    text-align: center;    width: 70%;     float: left;}
.right_30 {    text-align: left;    width: 30%;     float: right; color: red;}
.span_1 {    width: 60%;    float: left;    min-width: 250px;    text-align: center;}
.span_2 {    width: 30%;    float: left;    min-width: 150px;    font-size: 0.8em;    text-align: center;}

.span_3 {    width: 10%;    float: left;    min-width: 30px;}
.span_4 {    width: 10%;    float: left;    min-width: 50px; color: transparent}
.span_5 {    width: 30%;    float: left;    min-width: 120px; font-weight: bold; }
.span_6 {    width: 50%;    float: left;    min-width: 120px; font-weight: bold; }
.span_6_R {
    width: 50%;
    float: left;
    min-width: 120px;
    font-weight: bold;
    text-align: right;
    line-height: 1.2em;
}
.span_7 {    width: 85%;    float: left;    min-width: 120px; font-weight: bold; }
.span_8 {    width: 70%;    float: left;    min-width: 120px; font-weight: bold; }
.span_9 {    width: 30%;    float: right;   margin-left: 1%;    min-width: 80px; }
.span_9_TB {    width: 30%;    float: right;   margin: 1em 0.5em 0px;   min-width: 80px; }
.span_10 {    width: 25%;    float: left; min-width: 120px; }

.span_S {    width: 10%;    float: left;    min-width: 30px; font-size: 0.7em; text-shadow: none; color: blue; }
.span_Memo_Package {
    width: 59%;
    float: left;
    min-width: 240px;
    min-height: 40px;
    text-shadow: none;
    text-align: right;
    line-height: 1.2em;
    color: dimgray;

    font-size: 0.5em; 
    text-align: left;
    padding: 0.7em 0.3em 0.3em 0.5em;
    border-radius: 0.3em;
    background-color: honeydew;
    box-shadow: 1px 1px 1px rgba(19, 35, 47, 0.3);
}

.div_Text_White { color: white; }
.div_Text_Cyan { color: cyan; }
.div_Text_Red { color: red; }
.div_Text_Blue { color: blue }
.div_Text_Silver { color: silver }
.div_Text_Bold { font-weight: bold; }
.Text_BlueBold { color: blue; font-weight: bold; }
.Text_RedBold { color: red; font-weight: bold; }
.Text_RedBold_SR { color: red; font-weight: bold; float: right; font-size: 0.9em; margin-right: 0.5em; }
.progressbar {    height: 6px;     width: 100%;     border: none;    margin: 1px 0 2px 0; }


.div_Manual {
    display: none;
    border: dotted 1px;
    border-radius: 6px;
    padding: 15px;
    position: relative;
    margin-bottom: 30px;
}

.div_Manual::after {
  content: "";
  display: table;
  clear: both;
}

.div_Agree_List {
    border-radius: 6px;
    background-color: white;
    padding: 10px;
    position: relative;
    font-weight: 600;
    margin-bottom: 0.5em;
    clear: both;
    box-shadow: 1px 1px 1px rgba(19, 35, 47, 0.3);
}

.div_Agree_List::after {
  content: "";
  display: table;
  clear: both;
}

.div_Agree_Detail {    
    padding: 10px;
    position: relative;
    text-align: left;
    line-height: 1.4em;
    margin-top: 0.5em;
}

.div_Agree_Detail::after {
  content: "";
  display: table;
  clear: both;
}


.div_Guide_List {
    border-radius: 6px;
    background-color: #ffd8d8;
    padding: 10px;
    position: relative;
    margin-top: -1em;
    margin-bottom: 1em;
    font-weight: 600;
    clear: both;
}

.div_Guide_List::after {
  content: "";
  display: table;
  clear: both;
}

.div_Alert {
    width: 100%;
    border-radius: 6px;
    color: white;
    background-color: blueviolet;
    padding: 10px;
    position: relative;
    margin-top: -1em;
    margin-bottom: 2em;
    font-weight: 600;
    line-height: 1.3em;
    clear: both;
}


.div_Guide_Detail {    
    padding: 10px;
    position: relative;
    text-align: left;
    line-height: 1.2em;
    margin-bottom: 2em;
}

.div_Guide_Detail::after {
  content: "";
  display: table;
  clear: both;
}

.div_Guide_Close {
    border-radius: 6px;
    background-color: #b7d2fe;
    padding: 10px;
    position: relative;
    margin-top: -1em;
    margin-bottom: 2em;
    font-weight: 600;
    clear: both;
}

.div_Guide_Close::after {  content: "";  display: table;  clear: both; }
.div_Select_Category {    width: 100%;    margin: 5px;     min-width: 150px;     border: dotted 1px;    border-radius: 0.5em;     background-color: lavender;    float: left;    position: relative;    padding: 0.3em;    font-size: 0.8em;    font-weight: 600;    text-align: center;    line-height: 1.2em; }
.div_Category_IMG {    width: 60px;     float: left;    border-radius: 0.5em;     background-color: goldenrod;    position: relative; }
.div_Category_Text { width: 65%;  float: right; }
.div_Select_Trade { width: 19%; margin: 0.5%; min-width: 110px; border-radius: 0.5em; background-color: dimgray; float: left; position: relative; padding: 0.2em; font-size: 0.8em; font-weight: 600; text-align: center; line-height: 1.2em; }
.div_Info_Trans {
    width: 32%; 
    margin: 0.5%; 
    min-width: 100px; 
    border-radius: 0.5em; 
    float: left; 
    position: relative; 
    padding: 0.2em; 
    font-size: 1em; 
    text-align: center; 
    line-height: 1.2em;
}
.div_Server_Photo {    
    width: 32%; 
    margin: 0.5%; 
    min-width: 100px; 
    border-radius: 0.5em; 
    float: left; 
    position: relative; 
    padding: 0.2em; 
    font-size: 1em; 
    text-align: center; 
    line-height: 1.2em;
}




.margin_TB_05 {
    margin-top: 0.5em; 
    margin-bottom: 0.5em;
}
.mini_225 {    
    min-width: 225px;
    text-align: center;
}


.forgot {
  margin-top: -20px;
  text-align: right;
}


@media only screen and (max-width: 500px) {
    .search_Result_Tracking {
        font-size: 1.4em;
    }
    .text_Area_Request {
        margin-top: 0.5em;
        padding: 0.3em;
        height: 70px;
    }
    .div_Purchase_Record {
        padding: 0.2em;
        font-size: 0.9em;
    }
    .div_Icon_Pack {
        margin-top: 1%;
    }
    .List_Request {
    width: 100%;
    padding: 0.2em;
    border-radius: 0.2em;
    background-color: #fbfbfb;
    display: inline-block;
    font-size: 1em;
    font-weight: bold;
    color: darkgray;
    margin-bottom: 0.3em;
    box-shadow: 1px 1px 1px rgba(19, 35, 47, 0.3);
    }
    .div_Package_Arrange_Quick {
    width: 220px; 
    bottom: 2.5em;
    }
    .button {
        font-size: 1.4rem;
    }
    .TextBox_Bank_Account {
    padding: 0.8em 0.1em;
    font-size: 0.8em;
    color: black;
    }
}