@CHARSET "utf-8";
#search_box_wrap {
	width: 180px;
	height: calc(100vh - 50px);
	position: relative;
}

#search_box_wrap > #main {
	width: 180px;
	height: calc(100vh - 50px);
	display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 10000;
}

#search_box_wrap > #main > .subject {
	color: #fff;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    margin: 0 15px 0 0;
    padding: 5px 0;
}

#search_box_wrap > #main > .subject i {
	font-size: 18px;
	margin: 0 5px 0 0;
}

#search_box_wrap > #main > .items {
	overflow-y: auto;
	-ms-overflow-style: none;
    scrollbar-width: none;
}

#search_box_wrap > #main > .items::-webkit-scrollbar{
  display: none;
}

#search_box_wrap > #main > .items > .row {
	margin: 15px 0;
}

#search_box_wrap > #main > .items > .row > .subject {
	color: #fff;
    font-size: 15px;
    padding: 5px 0;
    text-align: center;
}

#search_box_wrap > #main > .items > .row > .subject:empty {
	display: none;
}

#search_box_wrap > #main > .items > .row > .subject.shipper {
	background: #169A9E;
}

#search_box_wrap > #main > .items > .row > .subject.trucker {
	background: #1092BB;
}

#search_box_wrap > #main > .items > .row > .content {
	padding: 15px 5px;
}

#search_box_wrap > #main > .items > .row .subject:empty + .content {
	padding: 0 5px;
}

#search_box_wrap > #main > .items > .row > .content > .parts {
	margin: 0 0 15px;
	position: relative;
}

#search_box_wrap > #main > .items > .row > .content > .parts.column {
	display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
}

#search_box_wrap > #main > .items > .row > .content > .parts.row {
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

#search_box_wrap > #main > .items > .row > .content > .parts > .custom_checkbox {
	color: #fff;
    margin: 0 0 10px;
}

#search_box_wrap > #main > .items > .row > .content > .parts.column > .custom_checkbox:last-of-type {
	margin: 0;
}

#search_box_wrap > #main > .items > .row > .content > .parts.row > .custom_checkbox {
	width: 50%;
	margin: 0 0 10px;
}

#search_box_wrap > #main > .items > .row > .content > .parts:last-of-type {
	margin: 0;
}

#search_box_wrap > #main > .items > .row > .content > .parts > .subject  {
	color: #fff;
    font-size: 14px;
    margin: 0 0 3px;
}

#search_box_wrap > #main > .items > .row > .content > .parts > .value  {
}

#search_box_wrap > #main > .items > .row > .content > .parts > .value input[type='text']  {
	border: 0;
}

#search_box_wrap > #main > .items > .row > .content > .parts > button {
	width: 90%;
    display: block;
    margin: 0 auto;
    border: 0;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
}

#search_box_wrap > #main > .items > .row > .content > .parts > button.btn_area {
    font-size: 14px;
    font-weight: bold;
    background: #FFFFE6;
    letter-spacing: 1px;
}

#search_box_wrap.shipper > #main > .items > .row > .content > .parts > button.btn_area {
	color: #0A5F61;
}

#search_box_wrap.trucker > #main > .items > .row > .content > .parts > button.btn_area {
	color: #2D4F71;
}

#search_box_wrap > #main > .items > .row > .content > .parts > .area {
	margin: 15px 0 0;
}

#search_box_wrap > #main > .items > .row > .content > .parts > .area > .row {
	color: #fff;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
}

#search_box_wrap > #main > .items > .row > .content > .parts > .area > .row.from {
}

#search_box_wrap > #main > .items > .row > .content > .parts > .area > .row.to {
}

#search_box_wrap > #main > .items > .row > .content > .parts > .area > .row > .subject {
	padding: 5px 10px;
}

#search_box_wrap > #main > .items > .row > .content > .parts > .area > .row > .value {
	flex: 1;
    text-align: center;
    font-size: 16px;
}

#search_box_wrap > #main > .items > .row > .content > .parts > .area > .row > .remove {
	width: 25px;
    font-size: 15px;
    text-align: center;
}

#search_box_wrap > #main > .items > .row > .content > .parts > .area > .row > .remove i {
	display: none;
	cursor: pointer;
}

.search_box_popup {
	padding: 20px;
	border: 3px solid;
	position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.search_box_popup.shipper {
	background: #F9FBF4;
	border-color: #169A9E;
}

.search_box_popup.trucker {
	background: #F9FBFE;
	border-color: #2D4F71;
}

.search_box_popup > .btn_close {
	font-size: 25px;
    background: transparent;
    border: 0;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.search_box_popup > .btn_close > span {
	font-size: 14px;
    font-weight: bold;
    margin: 3px 5px 0 0;
}

.search_box_popup.shipper > .btn_close {
	color: #0A5F61;
}

.search_box_popup.trucker > .btn_close {
	color: #2D4F71;
}

.search_box_popup > .subject {
	font-size: 15px;
	font-weight: bold;
}

.search_box_popup > .subject span {
    font-size: 20px;
    margin: 0 -5px 0 0;
}

.search_box_popup.shipper > .subject span {
	color: #0A5F61;
}

.search_box_popup.trucker > .subject span {
	color: #2D4F71;
}

.search_box_popup > .content {
	margin: 5px 0 0;
}

#search_area_map > .content > div {
	width: 300px;
    height: calc(300px * 1.09090909);
    position: relative;
    padding: 10px;
    border: 1px solid #CCCCCC;
    background: #fff;
}

#search_area_map > .content > div > img {
	width: 100%;
    height: 100%;
}

#search_area_map > .content > div > .region_pref_wrap {
	font-size: 12px;
	font-weight: bold;
    border: 2px solid;
    padding: 2px 5px;
    background: #fff;
    cursor: pointer;
    position: absolute;
}

#search_area_map.shipper > .content > div > .region_pref_wrap {
	border-color: #169A9E;
}

#search_area_map.shipper > .content > div > .region_pref_wrap {
	border-color: #2D4F71;
}

#search_area_map > .content > div > .region_pref_wrap > .pref_wrap {
	width: 250px;
    font-size: 11px;
    flex-wrap: wrap;
    margin: 5px 0 0;
    padding: 3px 5px;
    border: 2px solid #169A9E;
    background: #fff;
    position: absolute;
    left: -2px;
    z-index: 1;
    cursor: auto;
    display: none;
}

#search_area_map > .content > div > .region_pref_wrap > .pref_wrap > .pref {
	padding: 3px;
	margin: 0 5px 3px 0;
	cursor: pointer;
}

#search_area_map > .content > div > .region_pref_wrap > .pref_wrap > .pref:hover {
	color: #0A5F61;
	text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: #169A9E;
}

#search_area_map > .content > div > .region_pref_wrap > .pref_wrap > .pref::before {
	font-family: "Font Awesome 5 Free";
	content: "\f04b";
    font-weight: 900;
    color: #169A9E;
}

#search_area_map > .values {
	margin: 20px 0 0;
    display: flex;
    align-items: center;
    font-size: 15px;
    letter-spacing: 1px;
}

#search_area_map > .values > .row {
	flex: 1;
}

#search_area_map > .values > .row > .button {
	display: flex;
    align-items: center;
    justify-content: center;
}

#search_area_map > .values > .row > .button > button {
	color: #fff;
    width: 100%;
    height: 35px;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
}

#search_area_map.shipper > .values > .row > .button > button.map_setting_ok {
	background: #169A9E;
}

#search_area_map.trucker > .values > .row > .button > button.map_setting_ok {
	background: #0A5F61;
}

#search_area_map > .values > .row > .button > button.map_setting_cancel {
	background: #D20707;
}

#search_area_map > .values > .row > div {
	width: 80%;
    margin: 0 auto;
    cursor: pointer;
}

#search_area_map > .values > .row > div > label {
	
}

#search_area_map > .values > .row > div > .value {
	height: 35px;
    font-size: 13px;
    background: #fff;
    padding: 5px;
    border: 1px solid #CCCCCC;
    display: flex;
    align-items: center;
    justify-content: center;
}

#search_area_map > .values > .row > div.select > label {
	font-weight: bold;
}

#search_area_map > .values > .row > div.select > .value {
	border: 2px solid;
}

#search_area_map.shipper > .values > .row > div.select > .value {
	border-color: #169A9E;
}

#search_area_map.trucker > .values > .row > div.select > .value {
	border-color: #2D4F71;
}

#other_requirement {
	
}

#other_requirement > .content {
	min-width: 300px;
}

#other_requirement > .content .row {
	margin: 0 0 20px;
}

#other_requirement > .content .row:last-of-type {
	margin: 0;
}

#other_requirement > .content > .row > .form_subject {
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 3px;
}

#other_requirement.shipper > .content > .row > .form_subject {
	color: #0A5F61;
}

#other_requirement.trucker > .content > .row > .form_subject {
	color: #2D4F71;
}

#other_requirement > .content > .row > .form_parts {
	display: flex;
    align-items: center;
}

#other_requirement > .content > .row > .form_parts > label {
	display: flex;
	margin: 0 15px 0 0;
}

#other_requirement > .content > .row > .form_parts > label:last-of-type {
	margin: 0;
}

#other_requirement > .content > .row > .form_parts > label > input[type='radio'] {
	margin: 0;
}

#other_requirement > .content > .row > .form_parts > label > div {
	color: #333333;
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 0 3px;
}

#other_requirement > .content > .row > .form_parts > label.custom_radio > div {
	padding: 0 0 0 25px;
}

#other_requirement .content > .area_renge_search_wrap {
	
}

#other_requirement .content > .area_renge_search_wrap > .subject {
	color: #2D4F71;
    font-size: 15px;
    font-weight: bold;
	margin: 0 0 10px;
	display: flex;
    align-items: center;
}

#other_requirement .content > .area_renge_search_wrap > .subject > div {
	margin: 0 0 0 5px;
}

#other_requirement .content .content.split {
	display: flex;
    align-items: stretch;
}

#other_requirement .content .content.split > .separator {
	width: 1px;
    background: #CCCCCC;
    margin: 0 15px;
}

#other_requirement .content > .area_renge_wrap {

}

#other_requirement .content > .area_renge_wrap > .subject {
	color: #C28800;
	font-size: 15px;
    font-weight: bold;
}

#other_requirement .content > .area_renge_wrap > .content {
	
}

#other_requirement .content > .area_renge_wrap > .content > .row {
	
}

#other_requirement .content > .area_renge_wrap > .content > .row.column {
	display: flex;
    align-items: center;
}

#other_requirement .content > .area_renge_wrap > .content > .row > .form_subject {
	font-size: 14px;
	font-weight: bold;
}

#other_requirement .content > .area_renge_wrap > .content > .row > .form_parts {
	
}

#other_requirement .content > .area_renge_wrap > .content > .row.column > .form_parts {
	flex: 1;
	margin: 0 0 0 10px;
}

#other_requirement .content > .area_renge_wrap > .content > .row > .form_parts > span {
	font-size: 14px;
    font-weight: bold;
    margin: 0 5px 0 0;
}

#other_requirement .content > .area_renge_wrap > .content > .row > .form_parts > span:last-of-type {
	margin: 0 0 0 5px;
}

#other_requirement .content > .area_renge_wrap > .content > .row > .form_parts > select {

}

#other_requirement .content > .area_renge_wrap > .content > .row > .form_parts > input[type='text'] {
	width: 100%;
}

#search_box_wrap > #main > .items > .row > .content > .parts > button.btn_requirement {
	color: #FFFFE6;
    font-size: 14px;
    font-weight: bold;
    background: transparent;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 5px;
}

#search_box_wrap > #main > .button {
	padding: 10px 0;
}

#search_box_wrap > #main > .button > .parts > button.btn_search_box  {
	color: #fff;
    font-size: 15px;
    background: #707070;
    width: 90%;
    display: block;
    margin: 0 auto;
    border: 0;
    border-radius: 0;
    padding: 5px;
    cursor: pointer;
}

.order_search_wrap {
	margin: 20px 0 0;
}

.order_search_wrap .form_subject {
	font-size: 15px;
    font-weight: bold;
    margin: 0 0 10px;
}

.order_search_wrap.shipper .form_subject {
	color: #0A5F61;
}

.order_search_wrap.trucker .form_subject {
	color: #375778;
}

.order_search_wrap .form_parts {
	font-size: 14px;
    font-weight: bold;
	display: flex;
	align-items: center;
}

.order_search_wrap .form_parts .custom_radio {
	margin: 0 20px 0 0;
}

#other_requirement > .content > .reserved_date_wrap {
	
}

#other_requirement > .content > .reserved_date_wrap > .subject {
	color: #2D4F71;
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 5px;
}

#other_requirement > .content > .reserved_date_wrap > .content {
	
}

#other_requirement > .content > .reserved_date_wrap > .content > .row {
	
}

#other_requirement > .content > .reserved_date_wrap > .content > .row > .form_subject {
	color: #C28800;
    font-size: 14px;
    font-weight: bold;
}

#other_requirement > .content > .reserved_date_wrap > .content > .row > .form_parts {
	
}

#other_requirement > .content > .reserved_date_wrap > .content > .separator {
	background: transparent;
}

#other_requirement > .content > .amount_search {

}

#other_requirement > .content > .amount_search > .subject {
	font-size: 15px;
    font-weight: bold;
    margin: 0 0 3px;
}

#other_requirement.shipper > .content > .amount_search > .subject {
	color: #0A5F61;
}

#other_requirement.trucker > .content > .amount_search > .subject {
	color: #375778;
}

#other_requirement > .content > .amount_search > .content {
	margin: 0 0 20px;
}

#other_requirement > .content > .amount_search > .content > .row {
	margin: 0;
}

#other_requirement > .content > .amount_search > .content > .separator {
	width: unset;
    background: transparent;
    display: flex;
    align-items: center;
}

#other_requirement > .content > .amount_search > .content > .separator::before {
	content: "\301c";
}

#other_requirement > .content > .row > .form_parts > input[name='trucker_name'] {
	width: 100%;
}












