@charset "UTF-8";
:root {
  --white: #fff;
  --black: #000;
  --yellow: #f1e5a6;
  --green: #a6d3ae;
  --text_danger: #e52424;
  --priceRed: #c31200;
  --brownGreen: #8C8250;
  --deepBrownGreen: #584c0d;
  --deepGary: #7e7e7e;
  --lightGary: #d7d7d7;
  --main-bg-color: #ecf0f3;
  --font_family_sans_serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font_family_monospace: PingFang TC, PingFang SC, 微軟雅黑, Microsoft YaHei, Arial, sans-serif;
  --login_width: 600px;
  --langBg: #fff7ce;
  --langBoder: #b5b5b5;
  --langHover: #f9f9f9;
  --loginBorder: 1.5rem;
  --headerHight: 50px;
  --menuWidth: 14rem;
  --menuClose: 5.5rem;
  --m-closed-width: 0;
  --breadBg: #e9e7db;
  --searchBg: #e1e1e1;
  --searchSelectHight: 30px;
  --searchLabel: 20px;
  --bg_red: #D84315;
  --bg_og: #ef8f18;
  --bg_lightBrown: #CFBF95;
  --bg_gary: #bdbdbd;
  --bg_purple: #ba77d3;
  --bg_skyblue: #75c9ff;
  --bg_darkblue: #23658f;
  --bg_brownBeige: #e9e7db;
  --bg_yellow: #ffffae;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
select {
  font-family: var(--font_family_sans_serif);
}

body {
  height: 100%;
  color: var(--black);
  background: var(--main-bg-color);
  overflow: hidden;
  overflow-y: auto;
}

body * {
  letter-spacing: .5px;
  line-height: 1.15;
  word-break: break-all;
}

body button,
body input,
body select {
  cursor: pointer;
  outline: none;
  border: 0;
}

body input {
  width: 100%;
  padding: .5em;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.15;
  letter-spacing: 0.5px;
}

input,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
  -webkit-appearance: none !important;
}

input:-webkit-autofill::first-line {
  font-size: 18px;
}

.font-weight {
  font-weight: bolder;
}

img {
  display: block;
  max-width: 100%;
  margin: auto;
  width: 100%;
}

.text-nowrap {
  white-space: nowrap !important;
}

.flex_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex_align_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex_cont_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex_between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex_equally {
  -webkit-box-flex: 1;
  -ms-flex: 1;
      flex: 1;
}

.flex_fill {
  -ms-flex: 1 1 auto;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
}

.flex_dire {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 768px) {
  .m_flex_full {
    -ms-flex-preferred-size: 100% !important;
    flex-basis: 100% !important;
    max-width: 100% !important;
  }
}

.flex_row {
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-direction: normal;
  -webkit-box-align: initial;
  -ms-flex-align: initial;
  align-items: initial;
}

@media (max-width: 768px) {
  .m_flex_row {
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-direction: normal;
    -webkit-box-align: initial;
    -ms-flex-align: initial;
    align-items: initial;
  }
}

.container {
  margin: auto;
  max-width: 100%;
  width: 1200px;
}

.round_style {
  border-radius: 50%;
}

.border_5 {
  border-radius: 5px;
}

.cur_pointer {
  cursor: pointer;
}

.font_weight {
  font-weight: bolder;
}

.f_white {
  color: var(--white);
}

.f_red {
  color: var(--text_danger);
}

.border_5 {
  border-radius: 5px;
}

.text_center {
  text-align: center;
}

.table_responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

.table > caption + thead > tr:first-child > td,
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > td,
.table > thead:first-child > tr:first-child > th {
  border-top: 0;
}

.table > thead:first-child > tr:first-child > th {
  background: var(--green);
  color: var(--white);
}

.table > tbody + tbody {
  border-top: 2px solid #ddd;
}

.table .table {
  background-color: #fff;
}

.table-condensed > tbody > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > thead > tr > th {
  padding: 5px;
}

.table-bordered {
  border: 1px solid #ddd;
}

.table-bordered > tbody > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
  border: 1px solid #ddd;
}

.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
  border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  /* background-color: #f9f9f9*/
  background-color: #f5f5f5;
}

.table-hover > tbody > tr:hover {
  background-color: var(--white);
}

table td[class*=col-],
table th[class*=col-] {
  position: static;
  display: table-cell;
  float: none;
}

.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > thead > tr > td.active,
.table > thead > tr > th.active {
  background-color: #f5f5f5;
}

.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr.active:hover > th,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover {
  background-color: #e8e8e8;
}

.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > thead > tr > td.success,
.table > thead > tr > th.success {
  background-color: #dff0d8;
}

.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr.success:hover > th,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover {
  background-color: #d0e9c6;
}

.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > thead > tr.info > th,
.table > thead > tr > td.info,
.table > thead > tr > th.info {
  background-color: #d9edf7;
}

.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr.info:hover > th,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover {
  background-color: #c4e3f3;
}

.table-responsive {
  min-height: .01%;
  overflow-x: auto;
}

@media (max-width: 768px) {
  .table.table-hover > tbody > tr > td,
  .table.table-hover > tbody > tr > th,
  .table.table-hover > tfoot > tr > td,
  .table.table-hover > tfoot > tr > th,
  .table.table-hover > thead > tr > td,
  .table.table-hover > thead > tr > th {
    white-space: nowrap;
  }
}

.btn {
  font-weight: bolder;
  display: inline-block;
  padding: 5px 12px;
  margin-bottom: 0;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.btn:hover, .btn:focus {
  color: var(--white);
  background-color: var(--orange);
}

.btn_default {
  color: var(--white);
  background-color: #584c0d;
  -webkit-transition: background-color .15s;
  transition: background-color .15s;
  border-color: #584c0d;
}

.btn_default:hover, .btn_default:focus, .btn_default.focus, .btn_default:active, .btn_default.active,
.open > .btn_default.dropdown-toggle {
  color: var(--white);
  background-color: #2c2606;
  border-color: #342d08;
}

.btn_default:active, .btn_default.active,
.open > .btn_default.dropdown-toggle {
  background-image: none;
}

.btn_default.disabled, .btn_default.disabled:hover, .btn_default.disabled:focus, .btn_default.disabled.focus, .btn_default.disabled:active, .btn_default.disabled.active, .btn_default[disabled], .btn_default[disabled]:hover, .btn_default[disabled]:focus, .btn_default[disabled].focus, .btn_default[disabled]:active, .btn_default[disabled].active,
fieldset[disabled] .btn_default,
fieldset[disabled] .btn_default:hover,
fieldset[disabled] .btn_default:focus,
fieldset[disabled] .btn_default.focus,
fieldset[disabled] .btn_default:active,
fieldset[disabled] .btn_default.active {
  background-color: #584c0d;
  border-color: #584c0d;
}

.btn_default .badge {
  color: #584c0d;
  background-color: var(--white);
}

.btn_primary {
  color: #fff;
  background-color: #ef8f18;
  -webkit-transition: background-color .15s;
  transition: background-color .15s;
  border-color: #ef8f18;
}

.btn_primary:hover, .btn_primary:focus, .btn_primary.focus, .btn_primary:active, .btn_primary.active,
.open > .btn_primary.dropdown-toggle {
  color: #fff;
  background-color: #c6740e;
  border-color: #d0790e;
}

.btn_primary:active, .btn_primary.active,
.open > .btn_primary.dropdown-toggle {
  background-image: none;
}

.btn_primary.disabled, .btn_primary.disabled:hover, .btn_primary.disabled:focus, .btn_primary.disabled.focus, .btn_primary.disabled:active, .btn_primary.disabled.active, .btn_primary[disabled], .btn_primary[disabled]:hover, .btn_primary[disabled]:focus, .btn_primary[disabled].focus, .btn_primary[disabled]:active, .btn_primary[disabled].active,
fieldset[disabled] .btn_primary,
fieldset[disabled] .btn_primary:hover,
fieldset[disabled] .btn_primary:focus,
fieldset[disabled] .btn_primary.focus,
fieldset[disabled] .btn_primary:active,
fieldset[disabled] .btn_primary.active {
  background-color: #ef8f18;
  border-color: #ef8f18;
}

.btn_primary .badge {
  color: #ef8f18;
  background-color: #fff;
}

.btn_accent {
  color: #fff;
  background-color: #D84315;
  -webkit-transition: background-color .15s;
  transition: background-color .15s;
  border-color: #D84315;
}

.btn_accent:hover, .btn_accent:focus, .btn_accent.focus, .btn_accent:active, .btn_accent.active,
.open > .btn_accent.dropdown-toggle {
  color: #fff;
  background-color: #aa3510;
  border-color: #b33711;
}

.btn_accent:active, .btn_accent.active,
.open > .btn_accent.dropdown-toggle {
  background-image: none;
}

.btn_accent.disabled, .btn_accent.disabled:hover, .btn_accent.disabled:focus, .btn_accent.disabled.focus, .btn_accent.disabled:active, .btn_accent.disabled.active, .btn_accent[disabled], .btn_accent[disabled]:hover, .btn_accent[disabled]:focus, .btn_accent[disabled].focus, .btn_accent[disabled]:active, .btn_accent[disabled].active,
fieldset[disabled] .btn_accent,
fieldset[disabled] .btn_accent:hover,
fieldset[disabled] .btn_accent:focus,
fieldset[disabled] .btn_accent.focus,
fieldset[disabled] .btn_accent:active,
fieldset[disabled] .btn_accent.active {
  background-color: #D84315;
  border-color: #D84315;
}

.btn_accent .badge {
  color: #D84315;
  background-color: #fff;
}

.btn_gary {
  color: #fff;
  background-color: #bdbdbd;
  -webkit-transition: background-color .15s;
  transition: background-color .15s;
  border-color: #bdbdbd;
}

.btn_gary:hover, .btn_gary:focus, .btn_gary.focus, .btn_gary:active, .btn_gary.active,
.open > .btn_gary.dropdown-toggle {
  color: #fff;
  background-color: #a4a4a4;
  border-color: darkgray;
}

.btn_gary:active, .btn_gary.active,
.open > .btn_gary.dropdown-toggle {
  background-image: none;
}

.btn_gary.disabled, .btn_gary.disabled:hover, .btn_gary.disabled:focus, .btn_gary.disabled.focus, .btn_gary.disabled:active, .btn_gary.disabled.active, .btn_gary[disabled], .btn_gary[disabled]:hover, .btn_gary[disabled]:focus, .btn_gary[disabled].focus, .btn_gary[disabled]:active, .btn_gary[disabled].active,
fieldset[disabled] .btn_gary,
fieldset[disabled] .btn_gary:hover,
fieldset[disabled] .btn_gary:focus,
fieldset[disabled] .btn_gary.focus,
fieldset[disabled] .btn_gary:active,
fieldset[disabled] .btn_gary.active {
  background-color: #bdbdbd;
  border-color: #bdbdbd;
}

.btn_gary .badge {
  color: #bdbdbd;
  background-color: #fff;
}

.btn_purple {
  color: #fff;
  background-color: #ba77d3;
  -webkit-transition: background-color .15s;
  transition: background-color .15s;
  border-color: #ba77d3;
}

.btn_purple:hover, .btn_purple:focus, .btn_purple.focus, .btn_purple:active, .btn_purple.active,
.open > .btn_purple.dropdown-toggle {
  color: #fff;
  background-color: #a650c7;
  border-color: #aa58c9;
}

.btn_purple:active, .btn_purple.active,
.open > .btn_purple.dropdown-toggle {
  background-image: none;
}

.btn_purple.disabled, .btn_purple.disabled:hover, .btn_purple.disabled:focus, .btn_purple.disabled.focus, .btn_purple.disabled:active, .btn_purple.disabled.active, .btn_purple[disabled], .btn_purple[disabled]:hover, .btn_purple[disabled]:focus, .btn_purple[disabled].focus, .btn_purple[disabled]:active, .btn_purple[disabled].active,
fieldset[disabled] .btn_purple,
fieldset[disabled] .btn_purple:hover,
fieldset[disabled] .btn_purple:focus,
fieldset[disabled] .btn_purple.focus,
fieldset[disabled] .btn_purple:active,
fieldset[disabled] .btn_purple.active {
  background-color: #ba77d3;
  border-color: #ba77d3;
}

.btn_purple .badge {
  color: #ba77d3;
  background-color: #fff;
}

.btn_skyblue {
  color: #fff;
  background-color: #75c9ff;
  -webkit-transition: background-color .15s;
  transition: background-color .15s;
  border-color: #75c9ff;
}

.btn_skyblue:hover, .btn_skyblue:focus, .btn_skyblue.focus, .btn_skyblue:active, .btn_skyblue.active,
.open > .btn_skyblue.dropdown-toggle {
  color: #fff;
  background-color: #42b5ff;
  border-color: #4cb9ff;
}

.btn_skyblue:active, .btn_skyblue.active,
.open > .btn_skyblue.dropdown-toggle {
  background-image: none;
}

.btn_skyblue.disabled, .btn_skyblue.disabled:hover, .btn_skyblue.disabled:focus, .btn_skyblue.disabled.focus, .btn_skyblue.disabled:active, .btn_skyblue.disabled.active, .btn_skyblue[disabled], .btn_skyblue[disabled]:hover, .btn_skyblue[disabled]:focus, .btn_skyblue[disabled].focus, .btn_skyblue[disabled]:active, .btn_skyblue[disabled].active,
fieldset[disabled] .btn_skyblue,
fieldset[disabled] .btn_skyblue:hover,
fieldset[disabled] .btn_skyblue:focus,
fieldset[disabled] .btn_skyblue.focus,
fieldset[disabled] .btn_skyblue:active,
fieldset[disabled] .btn_skyblue.active {
  background-color: #75c9ff;
  border-color: #75c9ff;
}

.btn_skyblue .badge {
  color: #75c9ff;
  background-color: #fff;
}

.btn_darkblue {
  color: #fff;
  background-color: #23658f;
  -webkit-transition: background-color .15s;
  transition: background-color .15s;
  border-color: #23658f;
}

.btn_darkblue:hover, .btn_darkblue:focus, .btn_darkblue.focus, .btn_darkblue:active, .btn_darkblue.active,
.open > .btn_darkblue.dropdown-toggle {
  color: #fff;
  background-color: #194866;
  border-color: #1b4e6e;
}

.btn_darkblue:active, .btn_darkblue.active,
.open > .btn_darkblue.dropdown-toggle {
  background-image: none;
}

.btn_darkblue.disabled, .btn_darkblue.disabled:hover, .btn_darkblue.disabled:focus, .btn_darkblue.disabled.focus, .btn_darkblue.disabled:active, .btn_darkblue.disabled.active, .btn_darkblue[disabled], .btn_darkblue[disabled]:hover, .btn_darkblue[disabled]:focus, .btn_darkblue[disabled].focus, .btn_darkblue[disabled]:active, .btn_darkblue[disabled].active,
fieldset[disabled] .btn_darkblue,
fieldset[disabled] .btn_darkblue:hover,
fieldset[disabled] .btn_darkblue:focus,
fieldset[disabled] .btn_darkblue.focus,
fieldset[disabled] .btn_darkblue:active,
fieldset[disabled] .btn_darkblue.active {
  background-color: #23658f;
  border-color: #23658f;
}

.btn_darkblue .badge {
  color: #23658f;
  background-color: #fff;
}

.btn_lightBrown {
  color: #fff;
  background-color: #CFBF95;
  -webkit-transition: background-color .15s;
  transition: background-color .15s;
  border-color: #CFBF95;
}

.btn_lightBrown:hover, .btn_lightBrown:focus, .btn_lightBrown.focus, .btn_lightBrown:active, .btn_lightBrown.active,
.open > .btn_lightBrown.dropdown-toggle {
  color: #fff;
  background-color: #bfaa72;
  border-color: #c2ae79;
}

.btn_lightBrown:active, .btn_lightBrown.active,
.open > .btn_lightBrown.dropdown-toggle {
  background-image: none;
}

.btn_lightBrown.disabled, .btn_lightBrown.disabled:hover, .btn_lightBrown.disabled:focus, .btn_lightBrown.disabled.focus, .btn_lightBrown.disabled:active, .btn_lightBrown.disabled.active, .btn_lightBrown[disabled], .btn_lightBrown[disabled]:hover, .btn_lightBrown[disabled]:focus, .btn_lightBrown[disabled].focus, .btn_lightBrown[disabled]:active, .btn_lightBrown[disabled].active,
fieldset[disabled] .btn_lightBrown,
fieldset[disabled] .btn_lightBrown:hover,
fieldset[disabled] .btn_lightBrown:focus,
fieldset[disabled] .btn_lightBrown.focus,
fieldset[disabled] .btn_lightBrown:active,
fieldset[disabled] .btn_lightBrown.active {
  background-color: #CFBF95;
  border-color: #CFBF95;
}

.btn_lightBrown .badge {
  color: #CFBF95;
  background-color: #fff;
}

.btn_white {
  color: #584c0d;
  background-color: #fff;
  -webkit-transition: background-color .15s;
  transition: background-color .15s;
  border-color: #bdbdbd;
}

.btn_white:hover, .btn_white:focus, .btn_white.focus, .btn_white:active, .btn_white.active,
.open > .btn_white.dropdown-toggle {
  color: #584c0d;
  background-color: #e6e6e6;
  border-color: darkgray;
}

.btn_white:active, .btn_white.active,
.open > .btn_white.dropdown-toggle {
  background-image: none;
}

.btn_white.disabled, .btn_white.disabled:hover, .btn_white.disabled:focus, .btn_white.disabled.focus, .btn_white.disabled:active, .btn_white.disabled.active, .btn_white[disabled], .btn_white[disabled]:hover, .btn_white[disabled]:focus, .btn_white[disabled].focus, .btn_white[disabled]:active, .btn_white[disabled].active,
fieldset[disabled] .btn_white,
fieldset[disabled] .btn_white:hover,
fieldset[disabled] .btn_white:focus,
fieldset[disabled] .btn_white.focus,
fieldset[disabled] .btn_white:active,
fieldset[disabled] .btn_white.active {
  background-color: #fff;
  border-color: #bdbdbd;
}

.btn_white .badge {
  color: #fff;
  background-color: #584c0d;
}

.btn_green {
  color: #fff;
  background-color: #a6d3ae;
  -webkit-transition: background-color .15s;
  transition: background-color .15s;
  border-color: #a6d3ae;
}

.btn_green:hover, .btn_green:focus, .btn_green.focus, .btn_green:active, .btn_green.active,
.open > .btn_green.dropdown-toggle {
  color: #fff;
  background-color: #84c28f;
  border-color: #8bc695;
}

.btn_green:active, .btn_green.active,
.open > .btn_green.dropdown-toggle {
  background-image: none;
}

.btn_green.disabled, .btn_green.disabled:hover, .btn_green.disabled:focus, .btn_green.disabled.focus, .btn_green.disabled:active, .btn_green.disabled.active, .btn_green[disabled], .btn_green[disabled]:hover, .btn_green[disabled]:focus, .btn_green[disabled].focus, .btn_green[disabled]:active, .btn_green[disabled].active,
fieldset[disabled] .btn_green,
fieldset[disabled] .btn_green:hover,
fieldset[disabled] .btn_green:focus,
fieldset[disabled] .btn_green.focus,
fieldset[disabled] .btn_green:active,
fieldset[disabled] .btn_green.active {
  background-color: #a6d3ae;
  border-color: #a6d3ae;
}

.btn_green .badge {
  color: #a6d3ae;
  background-color: #fff;
}

.custom_select_wrapper {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.custom_select_wrapper select {
  display: none;
}

.custom_select {
  position: relative;
}

.custom_select.opened .custom_select_trigger:after {
  margin-top: 3px;
  -webkit-transform: rotate(-135deg) translateY(-50%);
          transform: rotate(-135deg) translateY(-50%);
}

.custom_select.opened .custom_options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.custom_select.opened .custom_options:before {
  position: absolute;
  display: block;
  content: '';
  bottom: 100%;
  right: 25px;
  width: 7px;
  height: 7px;
  margin-bottom: -4px;
  border-top: 1px solid var(--langBoder);
  border-left: 1px solid var(--langBoder);
  background: var(--langBg);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.custom_select_trigger {
  position: relative;
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: 300;
  color: var(--brownGreen);
  padding: 0.8em 1.2em;
  background: var(--langBg);
  border-radius: var(--loginBorder);
  border: none;
  outline: none;
  color: var(--brownGreen);
  font-weight: bolder;
  -webkit-box-shadow: 2px 2px 5px #babecc, -5px -5px 10px #ffffff73;
          box-shadow: 2px 2px 5px #babecc, -5px -5px 10px #ffffff73;
}

@media (max-width: 468px) {
  .custom_select_trigger {
    font-size: 16px;
    padding: .7em;
  }
}

.custom_select_trigger:after {
  position: absolute;
  display: block;
  content: '';
  width: 10px;
  height: 10px;
  top: 50%;
  right: 25px;
  margin-top: -3px;
  border-bottom: 2px solid var(--brownGreen);
  border-right: 2px solid var(--brownGreen);
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
}

@media (max-width: 468px) {
  .custom_select_trigger:after {
    right: 16px;
  }
}

.custom_options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 100%;
  margin: 15px 0;
  border: 1px solid var(--langBoder);
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, 0.07);
          box-shadow: 0 2px 1px rgba(0, 0, 0, 0.07);
  background: var(--langBg);
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}

.option_hover:before {
  background: var(--langHover);
}

.custom_option {
  position: relative;
  display: block;
  padding: .5em;
  border-bottom: 1px solid var(--langBoder);
  font-size: 18px;
  font-weight: 600;
  color: var(--brownGreen);
  cursor: pointer;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

@media (max-width: 468px) {
  .custom_option {
    font-size: 16px;
  }
}

.custom_option:first-of-type {
  border-radius: 4px 4px 0 0;
}

.custom_option:last-of-type {
  border-bottom: 0;
  border-radius: 0 0 4px 4px;
}

.custom_option:hover, .custom_option.selection {
  background: var(--langHover);
}

.body-hidden {
  overflow: hidden !important;
  scroll-behavior: none;
  overflow-y: hidden;
}

.d_none {
  display: none;
}
/*# sourceMappingURL=style.css.map */