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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

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

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

.fg, .common_back_btn {
  font-family: 'Roboto', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 16px;
}

body {
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Roboto', 'Avenir Next', 'Noto Sans JP', sans-serif;
  line-height: 0.9;
  color: #313131;
  background-color: #F3F6E8;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul, li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="submit"],
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
  border: solid 1px #e2e2e2;
  margin: 0;
  padding: 5px;
  background: none transparent;
  vertical-align: middle;
  cursor: pointer;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="submit"]:focus,
select:focus {
  outline: 0;
}

/* backgruon color */
.bg_l_green {
  background: #F3F6E8;
}

.bg_black {
  background: #313131;
}

/* header */
.header {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: fixed;
  top: 0;
  z-index: 50;
  height: 50px;
  background: #313131;
}
.header .header_content {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 10px;
  width: 100%;
  height: 50px;
}
.header .header_content .left_item {
  width: 30%;
}
.header .header_content .left_item .menu_icon {
  width: 18px;
  height: 14px;
  position: relative;
}
.header .header_content .left_item .menu_icon img {
  width: 18px;
  position: absolute;
}
.header .header_content .center_item {
  width: 40%;
  text-align: center;
}
.header .header_content .center_item .header_logo img {
  width: 160px;
  height: auto;
  vertical-align: middle;
}
.header .header_content .right_item {
  width: 30%;
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: -webkit-box;
  display: flex;
  -moz-justify-content: flex-end;
  -o-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.header .header_content .right_item .header_icon img {
  height: 20px;
  width: auto;
  margin-left: 13px;
  vertical-align: middle;
}
.header .menu_block {
  position: absolute;
  width: 100%;
  min-height: 100vh;
  z-index: 55;
  -webkit-transform: translateX(-250%);
  transform: translateX(-250%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header .menu_block .menu {
  width: 80%;
  height: 100vh;
  background-color: #fff;
  overflow: scroll;
  float: left;
}
.header .menu_block .menu .menu_top .menu_index {
  background-color: #313131;
  color: #fff;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  padding: 10px;
  letter-spacing: 0.05em;
}
.header .menu_block .menu .menu_top ul {
  padding: 10px;
}
.header .menu_block .menu .menu_top ul li {
  margin: 5px 0;
  padding: 10px 0;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.05em;
  border-bottom: 1px dotted #ccc;
}
.header .menu_block .menu .menu_top ul li:last-child {
  border-bottom: none;
}
.header .menu_block .menu .menu_top ul li a {
  display: block;
  width: 100%;
  color: #313131;
}
.header .menu_block .menu .menu_bottom .menu_index {
  background-color: #313131;
  color: #fff;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  padding: 10px;
  letter-spacing: 0.05em;
}
.header .menu_block .menu .menu_bottom .category_box {
  padding: 10px;
  overflow: scroll;
}
.header .menu_block .menu .menu_bottom .category_box .category_block a {
  color: #313131;
}
.header .menu_block .menu_outer {
  width: 20%;
  height: 100vh;
  background-color: #e2e2e2;
  opacity: .9;
  float: left;
}

.header_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header_alert_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header_icon_img {
  position: relative;
  z-index: 1;
}

.alert_icon_cart {
  position: absolute;
  top: -11px;
  right: -14px;
  z-index: 2;
}

.alert_icon_alert {
  position: absolute;
  top: -1px;
  right: -1px;
  z-index: 2;
}

.cart_text {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: normal;
  color: #fff;
  background-color: #e76464;
}

.alert_text {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: normal;
  color: #fff;
  background-color: #e76464;
}

.cart_text p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* footer */
.footer {
  padding: 30px 20px;
  background: #313131;
}
.footer .footer_logo {
  width: 190px;
  margin: 0 auto 20px;
}
.footer .footer_logo img {
  width: 100%;
}
.footer .footer_text {
  color: #ccc;
  text-align: center;
  font-size: 10px;
  letter-spacing: .05em;
}

/* other */
.common_wrapper {
  width: calc(100% - 20px);
  max-width: 600px;
  min-height: calc(100vh - 104.45px);
  margin: 0 10px;
  padding-top: 40px;
}

/*
.display_fixed {
    height: calc(100vh - 60px);
}
*/
.error_msg {
  font-size: 12px;
  color: red;
  letter-spacing: 1px;
  margin: 5px 0;
  line-height: 1.2;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

#loading_layer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background-color: #fff;
  opacity: 0.5;
}
#loading_layer .loading {
  width: 100px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -50px 0 0 -50px;
}

/********************
 ********************/
.mt_0 {
  margin-top: 0 !important;
}

.mt_30 {
  margin-top: 30px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.category_list.p_20_0_0 {
  padding: 20px 0 0;
}

.common_back_btn {
  display: inline-block;
  font-size: 11px;
  text-decoration: none;
  color: #454545;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 20px 0;
}
.common_back_btn:after {
  content: "";
  margin: 0 0 0 5px;
  display: inline-block;
  width: 5px;
  height: 5px;
  border: 1px solid;
  border-color: #565656 #565656 transparent transparent;
  transform: rotate(45deg);
}

.login {
  width: 100%;
  padding: 20px 10px;
  margin-top: 70px;
  background-color: #fff;
}
.login h1 {
  text-align: center;
  font-size: 18px;
  color: #313131;
  font-family: 'Lato', sans-serif;
  margin-bottom: 30px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.login .login_form_block {
  width: 100%;
}
.login .login_form_block .login_form_title {
  margin: 0 0 10px;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.login .login_form_block .login_form_title img {
  width: 16px;
  height: 12px;
  margin-right: 8px;
}
.login .login_form_block .login_form_input {
  width: 100%;
  font-size: 13px;
  color: #313131;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 0;
}
.login .login_form_block + .login_form_block {
  margin-top: 20px;
}
.login .login_btn {
  width: 170px;
  height: 30px;
  margin: 30px auto;
  color: #B3C872;
  border: solid 1px #B3C872;
  border-radius: 30px;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.login .forget_block {
  text-align: center;
  margin-bottom: -20px;
}
.login .forget_block .forget_link {
  display: inline-block;
  margin: 0 auto 20px;
  color: #B3C872;
  font-size: 12px;
  padding-bottom: 3px;
  border-bottom: solid 1px #B3C872;
}

/*Payment date setting*/
.payment_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #313131;
  font-size: 13px;
}

.payment_block + .payment_block {
  margin-top: 10px;
}

.payment_date_setting_radio {
  margin-right: 10px;
}

.payment_date_input {
  width: 50px;
  font-size: 13px;
  color: #313131;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 0;
  margin-right: 5px;
}

.login_btn.m_30_a_0 {
  margin: 30px auto 0;
}

.login.mb_50 {
  margin-bottom: 50px;
}

.company__menu-link {
  display: block;
  color: #454545;
}

.company__menu-list > li,
.company__branch-list > li {
  margin: 8px;
  padding: 8px;
  border: solid 1px #ccc;
  border-radius: 4px;
}

.company__branch-info {
  margin-bottom: 4px;
  font-size: 14px;
}

.company__branch-item {
  margin: 4px 0;
}

.company__branch-item-caption {
  display: inline-block;
  margin-right: 8px;
  padding: 8px 4px;
  width: 60px;
  background: #454545;
  border-radius: 2px;
  color: #fefefe;
  text-align: center;
}

.common__button-change-status {
  margin: 2px 0;
  padding: 4px;
  border: solid 1px #333;
  border-radius: 2px;
  -webkit-box-shadow: 2px 3px 3px 0px #ccc;
  box-shadow: 2px 3px 3px 0px #ccc;
  background: #fefefe;
  color: #454545;
}

.banner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 40px;
}
.banner .banner_slide .slide_image {
  width: 100%;
  height: 230px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.top_block {
  position: relative;
  margin-bottom: 50px;
}
.top_block .top_block_title {
  position: absolute;
  line-height: 1;
  letter-spacing: .05em;
  top: -10px;
  left: 10px;
  font-weight: 400;
  font-size: 18px;
  font-family: 'Lato', sans-serif;
}
.top_block .top_block_contents {
  background-color: #fff;
  padding: 27px 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.top_block .top_block_contents .top_block_content {
  width: calc((100% - 10px) /2);
  margin: 0 10px 20px 0;
  border: solid 1px #ccc;
}
.top_block .top_block_contents .top_block_content:nth-of-type(2n) {
  margin: 0 0 20px 0;
}
.top_block .top_block_contents .top_block_content a {
  color: #313131;
}
.top_block .top_block_contents .top_block_content a .product_image {
  height: 110px;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.top_block .top_block_contents .top_block_content a .product_image .cart_icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border: solid 1px #B3C872;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background-color: #fff;
}
.top_block .top_block_contents .top_block_content a .product_image .cart_icon .cart_img {
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: -webkit-box;
  display: flex;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.top_block .top_block_contents .top_block_content a .product_image .cart_icon .cart_img img {
  width: 14px;
}
.top_block .top_block_contents .top_block_content .product_index {
  padding: 10px;
}
.top_block .top_block_contents .top_block_content .product_index .product_name {
  font-size: 14px;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 10px;
}
.top_block .top_block_contents .top_block_content .product_index .product_detail {
  text-overflow: ellipsis;
  font-size: 11px;
  color: #999999;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 10px;
}
.top_block .top_block_contents .top_block_content .product_index .product_price {
  font-size: 11px;
  color: #313131;
  font-weight: 500;
}
.top_block .top_block_contents .o_s {
  pointer-events: none;
  position: relative;
  opacity: .5;
}
.top_block .top_block_contents .o_s form .cart_icon {
  display: none;
}
.top_block .top_block_contents .o_s form:before {
  content: 'out of stock';
  position: absolute;
  bottom: 0;
  right: 0;
  color: red;
  font-size: 1.4em;
  font-weight: bold;
}
.top_block .top_block_contents .top_more_btn {
  width: 60%;
  margin: 10px 20%;
  padding: 5px;
  color: #B3C872;
  border: solid 2px #B3C872;
  border-radius: 20px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top_block {
  position: relative;
  margin-bottom: 50px;
}
.top_block .top_block_title {
  position: absolute;
  line-height: 1;
  letter-spacing: .05em;
  top: -10px;
  left: 10px;
  font-weight: 400;
  font-size: 18px;
  font-family: 'Lato', sans-serif;
}
.top_block .top_block_contents2 {
  background-color: #fff;
  padding: 27px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.top_block .top_block_contents2 .top_block_content {
  width: calc((100% - 10px) /2);
  margin: 0 10px 20px 0;
  border: solid 1px #ccc;
}
.top_block .top_block_contents2 .top_block_content:nth-of-type(2n) {
  margin: 0 0 20px 0;
}
.top_block .top_block_contents2 .top_block_content a {
  color: #313131;
}
.top_block .top_block_contents2 .top_block_content a .product_image {
  height: 110px;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.top_block .top_block_contents2 .top_block_content a .product_image .cart_icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border: solid 1px #B3C872;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background-color: #fff;
}
.top_block .top_block_contents2 .top_block_content a .product_image .cart_icon .cart_img {
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: -webkit-box;
  display: flex;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.top_block .top_block_contents2 .top_block_content a .product_image .cart_icon .cart_img img {
  width: 14px;
}
.top_block .top_block_contents2 .top_block_content .product_index {
  padding: 10px;
}
.top_block .top_block_contents2 .top_block_content .product_index .product_name {
  font-size: 14px;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 10px;
}
.top_block .top_block_contents2 .top_block_content .product_index .product_detail {
  text-overflow: ellipsis;
  font-size: 11px;
  color: #999999;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 10px;
}
.top_block .top_block_contents2 .top_block_content .product_index .product_price {
  font-size: 11px;
  color: #313131;
  font-weight: 500;
}
.top_block .top_block_contents2 .o_s {
  pointer-events: none;
  position: relative;
  opacity: .5;
}
.top_block .top_block_contents2 .o_s form .cart_icon {
  display: none;
}
.top_block .top_block_contents2 .o_s form:before {
  content: 'out of stock';
  position: absolute;
  bottom: 0;
  right: 0;
  color: red;
  font-size: 1.4em;
  font-weight: bold;
}
.top_block .top_block_contents2 .top_more_btn {
  width: 60%;
  margin: 10px 20%;
  padding: 5px;
  color: #B3C872;
  border: solid 2px #B3C872;
  border-radius: 20px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top_block.mb_0 {
  margin-bottom: 0;
}

.search {
  width: 100%;
  margin: 0 auto 10px;
  padding: 10px;
  position: -webkit-sticky;
  position: sticky;
  top: 40px;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  margin-top: 10px;
}
.search #searchform {
  display: inline-block;
  position: relative;
  width: 100%;
}
.search #searchform #searchText {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 18px;
  width: 100%;
  height: 36px;
  padding: 0 12px;
  font-size: 13px;
  color: #313131;
  outline: none;
}
.search #searchform #searchSubmit {
  display: block;
  position: absolute;
  top: 8px;
  right: 12px;
  opacity: 0.4;
  width: 20px;
  height: 20px;
}

.product_detail_wrap {
  margin-top: 70px;
  margin-bottom: 20px;
  background-color: #fff;
  position: relative;
  padding: 1px 10px 20px;
}
.product_detail_wrap .product_detail_back_btn {
  color: #EA7B7B;
  font-weight: bold;
  position: absolute;
  top: -30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product_detail_wrap .product_detail_back_btn img {
  width: 20px;
  margin-right: 10px;
}
.product_detail_wrap .product_detail {
  margin-bottom: 20px;
  background-color: #fff;
}
.product_detail_wrap .product_detail .product_detail_data {
  padding: 10px;
  background-color: #fff;
}
.product_detail_wrap .product_detail .product_detail_data .product_name {
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #313131;
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #313131;
  font-weight: 500;
  line-height: 1.3;
}
.product_detail_wrap .product_detail .product_detail_data .product_area {
  font-size: 14px;
  color: #999999;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.product_detail_wrap .product_detail .product_detail_data .product_d_text {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
.product_detail_wrap .product_detail .product_detail_data .product_info {
  font-size: 14px;
  color: #313131;
  font-weight: 500;
  line-height: 1.5;
}
.product_detail_wrap .product_detail .product_detail_data .product_info .price {
  color: #EA7B7B;
  font-size: 18px;
}
.product_detail_wrap .product_detail .cart_area {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.arrow_btn {
  font-size: 20px;
  color: #B3C872;
  padding: 10px 20px;
}

.page_wrap {
  margin-top: 70px;
  margin-bottom: 50px;
  background-color: #fff;
  position: relative;
  padding: 20px 10px;
}
.page_wrap .order_back_btn {
  color: #EA7B7B;
  font-weight: bold;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  position: absolute;
  top: -25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page_wrap .order_back_btn img {
  width: 15px;
  margin-right: 10px;
}
.page_wrap h1 {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.05em;
  font-family: 'Lato', sans-serif;
  color: #313131;
}
.page_wrap .list_block {
  margin: 30px 0 0;
}
.page_wrap .list_block .common_category_title {
  height: 22px;
  background: #ECECEC;
  border-radius: 15px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page_wrap .list_block .common_category_title .category_icon {
  background: #EA7B7B;
  position: absolute;
  width: 30px;
  height: 30px;
  border: solid 2px #fff;
  border-radius: 20px;
  padding: 4px;
}
.page_wrap .list_block .common_category_title .category_icon .category_icon_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.page_wrap .list_block .common_category_title .category_icon img {
  height: 18px;
}
.page_wrap .list_block .common_category_title p {
  font-size: 13px;
  color: #313131;
  letter-spacing: 0.03em;
  font-family: 'Lato', sans-serif;
  margin-left: 40px;
}
.page_wrap .list_block .order_mylist_inner {
  margin-top: 10px;
}
.page_wrap .list_block .order_mylist_inner .order_img {
  width: 50%;
  height: 100px;
  float: left;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.page_wrap .list_block .order_mylist_inner .order_img .order_delete_btn {
  width: 28px;
  height: 28px;
  background-color: #fff;
  border: solid 1px #B3C872;
  border-radius: 18px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.page_wrap .list_block .order_mylist_inner .order_img .order_delete_btn .delete_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.page_wrap .list_block .order_mylist_inner .order_img .order_delete_btn img {
  width: 14px;
  height: 18px;
}
.page_wrap .list_block .order_mylist_inner .list_item {
  position: relative;
  border: solid 1px #ccc;
}
.page_wrap .list_block .order_mylist_inner .list_item .order_detail {
  position: relative;
  width: 50%;
  margin-left: 50%;
  padding: 10px;
}
.page_wrap .list_block .order_mylist_inner .list_item .order_detail .list_item_top {
  font-size: 14px;
  letter-spacing: 0.05em;
}
.page_wrap .list_block .order_mylist_inner .list_item .order_detail .list_item_top .list_product_title {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #313131;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 10px;
  font-weight: 500;
}
.page_wrap .list_block .order_mylist_inner .list_item .order_detail .text_gray {
  text-overflow: ellipsis;
  font-size: 11px;
  color: #999999;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 5px;
}
.page_wrap .list_block .order_mylist_inner .list_item .order_detail .text_black {
  font-size: 11px;
  color: #313131;
  font-weight: 500;
  line-height: 1.5;
}
.page_wrap .list_block .order_mylist_inner .list_item .order_detail .order_delete_btn {
  width: 30px;
  height: 30px;
  border: solid 1px #B3C872;
  border-radius: 50%;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.page_wrap .list_block .order_mylist_inner .list_item .order_detail .order_delete_btn .delete_img {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.page_wrap .list_block .order_mylist_inner .list_item .order_detail .order_delete_btn img {
  width: 16px;
  height: 16px;
}
.page_wrap .list_block .order_mylist_inner .list_item .order_data_block {
  padding: 1% 2% 0;
}
.page_wrap .list_block .order_mylist_inner .list_item .order_data_block .quantity_block {
  width: 100%;
  margin-bottom: 10px;
  padding: 0;
}
.page_wrap .list_block .order_mylist_inner .list_item .order_data_block .quantity_block .num {
  -js-display: flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.page_wrap .list_block .order_mylist_inner .list_item .order_data_block .quantity_block .num .minus_btn,
.page_wrap .list_block .order_mylist_inner .list_item .order_data_block .quantity_block .num .plus_btn {
  outline: none;
  color: #fff;
  display: block;
  width: 30px;
  height: 30px;
  min-width: 30px;
  background: #B3C872;
  font-size: 15px;
  position: relative;
  border: none;
}
.page_wrap .list_block .order_mylist_inner .list_item .order_data_block .quantity_block .num .num_input {
  width: 100%;
  height: 30px;
  font-size: 13px;
  color: #313131;
  text-align: center;
  letter-spacing: 1px;
  border: solid 1px #B3C872;
}
.page_wrap .list_block .order_mylist_inner .list_item .order_data_block .delivery_date_block {
  width: 100%;
  -js-display: flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  position: relative;
}
.page_wrap .list_block .order_mylist_inner .list_item .order_data_block .delivery_date_block img {
  width: 20px;
  height: 14px;
  position: absolute;
  top: 8px;
  left: 5px;
}
.page_wrap .list_block .order_mylist_inner .list_item .order_data_block .delivery_date_block .order_mylist_select {
  font-weight: bold;
  letter-spacing: 1px;
  border: solid 1px #EA7B7B;
  height: 30px;
  width: 100%;
  margin: 0 auto 10px;
  font-size: 11px;
  padding: 0 35px;
  color: #999;
  background: url(../../new_buyer/images/arrow_down_p.svg) 97% center no-repeat #fff;
  background-size: 10px;
  border-radius: 0;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}
.page_wrap .list_block .order_mylist_inner .list_item + .list_item {
  margin-top: 20px;
}
.page_wrap .order_btn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
}
.page_wrap .order_btn_area button {
  width: 170px;
  height: 30px;
  margin: 0 auto;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.03em;
  color: #B3C872;
  background-color: #fff;
  border: solid 1px #B3C872;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page_wrap .order_btn_area .order_save_btn,
.page_wrap .order_btn_area .place_btn {
  color: #fff;
  background-color: #B3C872;
}

.input_tile {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #313131;
  font-weight: bold;
  font-family: 'Lato', sans-serif;
  margin-top: 30px;
  margin-bottom: 10px;
}

.confirm_wrap {
  margin-top: 70px;
  margin-bottom: 20px;
  background-color: #fff;
  position: relative;
  padding: 20px 10px;
}
.confirm_wrap .confirm_back_btn {
  color: #EA7B7B;
  font-weight: bold;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  position: absolute;
  top: -25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.confirm_wrap .confirm_back_btn img {
  width: 15px;
  margin-right: 10px;
}
.confirm_wrap h1 {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.05em;
  font-family: 'Lato', sans-serif;
  color: #313131;
}
.confirm_wrap .list_block {
  border-bottom: solid 1px #EA7B7B;
  margin: 20px 0 0;
  padding-bottom: 15px;
}
.confirm_wrap .list_block .delivery_date {
  height: 22px;
  background: #ECECEC;
  border-radius: 15px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.confirm_wrap .list_block .delivery_date .delivery_icon {
  background: #EA7B7B;
  position: absolute;
  width: 30px;
  height: 30px;
  border: solid 2px #fff;
  border-radius: 20px;
  padding: 4px;
}
.confirm_wrap .list_block .delivery_date p {
  font-size: 13px;
  color: #313131;
  letter-spacing: 0.03em;
  font-family: 'Lato', sans-serif;
  margin-left: 40px;
}
.confirm_wrap .list_block .confirm_detail {
  margin-top: 20px;
}
.confirm_wrap .list_block .confirm_detail .list_item {
  position: relative;
  border: solid 1px #ccc;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.confirm_wrap .list_block .confirm_detail .list_item .p_image {
  width: 50%;
  float: left;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  min-height: 150px;
}
@media (max-width: 450px) {
  .confirm_wrap .list_block .confirm_detail .list_item .p_image {
    min-height: 120px;
  }
}
.confirm_wrap .list_block .confirm_detail .list_item .p_info {
  position: relative;
  width: 50%;
  padding: 10px;
}
.confirm_wrap .list_block .confirm_detail .list_item .p_info .list_product_title {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #313131;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.3;
}
.confirm_wrap .list_block .confirm_detail .list_item .p_info .list_item_inner .text_gray {
  font-size: 11px;
  color: #999999;
  margin-bottom: 5px;
}
.confirm_wrap .list_block .confirm_detail .list_item .p_info .calc_price {
  font-size: 11px;
  letter-spacing: 0.03em;
  color: #313131;
  font-weight: bold;
  margin-bottom: 5px;
}
.confirm_wrap .list_block .confirm_detail .list_item .p_info .calc_price span {
  color: #EA7B7B;
}
.confirm_wrap .list_block .confirm_detail .list_item .p_info .p_price {
  color: #EA7B7B;
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.03em;
}
.confirm_wrap .list_block .confirm_detail .list_item .p_info .p_price span {
  font-size: 18px;
  font-weight: 500;
}
.confirm_wrap .list_block .delivery_subtotal {
  text-align: right;
  color: #EA7B7B;
  font-size: 12px;
  letter-spacing: 0.03em;
}
.confirm_wrap .list_block .delivery_subtotal .f_14 {
  font-size: 14px;
}
.confirm_wrap .list_block .delivery_subtotal .f_18b {
  font-size: 18px;
  font-weight: 500;
}
.confirm_wrap .delivery_total {
  margin-top: 15px;
  text-align: right;
  color: #EA7B7B;
}
.confirm_wrap .delivery_total .tax {
  font-size: 11px;
  letter-spacing: 0.03em;
  font-weight: 500;
  margin-bottom: 10px;
}
.confirm_wrap .delivery_total .total_price {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.confirm_wrap .delivery_total .total_price span {
  font-size: 30px;
  margin-left: 5px;
}

.confirm_btn_block {
  margin-bottom: 50px;
}
.confirm_btn_block .confirm {
  text-align: center;
}
.confirm_btn_block .confirm .confirm_btn {
  width: 100%;
  height: 30px;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  letter-spacing: 0.03em;
  background-color: #B3C872;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
}

/*thanks*/
.delivery_date {
  height: 22px;
  background: #ECECEC;
  border-radius: 15px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
}
.delivery_date .delivery_icon {
  background: #EA7B7B;
  position: absolute;
  width: 30px;
  height: 30px;
  border: solid 2px #fff;
  border-radius: 20px;
  padding: 4px;
}
.delivery_date .delivery_icon img {
  width: 20px;
}
.delivery_date p {
  font-size: 13px;
  color: #313131;
  letter-spacing: 0.03em;
  font-family: 'Lato', sans-serif;
  margin-left: 40px;
}

.order_mylist_inner {
  margin-top: 20px;
}
.order_mylist_inner .list_item_thanks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  border: solid 1px #ccc;
  margin-bottom: 20px;
}
.order_mylist_inner .list_item_thanks .checkmark_block {
  width: 80px;
  padding: 10px;
}
.order_mylist_inner .list_item_thanks .order_detail_content {
  width: calc(100% - 80px);
  padding: 10px;
}
.order_mylist_inner .list_item_thanks .order_detail_content .list_product_title {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #313131;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.3;
}
.order_mylist_inner .list_item_thanks .order_detail_content .delivery_info .delivery_money .gray_text {
  font-size: 11px;
  color: #999999;
  margin-bottom: 5px;
}
.order_mylist_inner .list_item_thanks .order_detail_content .delivery_info .delivery_money .calc_price {
  font-size: 11px;
  letter-spacing: 0.03em;
  color: #313131;
  font-weight: bold;
  margin-bottom: 5px;
}
.order_mylist_inner .list_item_thanks .order_detail_content .delivery_info .delivery_money .calc_price span {
  color: #EA7B7B;
}
.order_mylist_inner .list_item_thanks .order_detail_content .delivery_info .delivery_money .price_text {
  color: #EA7B7B;
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.03em;
}
.order_mylist_inner .list_item_thanks .order_detail_content .delivery_info .delivery_money .price_text .number {
  color: #313131;
  font-weight: 500;
}
.order_mylist_inner .list_item_thanks .order_detail_content .delivery_info .delivery_money .price_text .price_big {
  font-size: 18px;
  font-weight: 500;
}

.delivery_subtotal {
  text-align: right;
  color: #EA7B7B;
  font-size: 12px;
  letter-spacing: 0.03em;
}
.delivery_subtotal .f_14 {
  font-size: 14px;
}
.delivery_subtotal .f_18 {
  font-size: 18px;
  font-weight: 500;
}

.delivery_total {
  margin-top: 15px;
  text-align: right;
  color: #EA7B7B;
}
.delivery_total .tax {
  font-size: 11px;
  letter-spacing: 0.03em;
  font-weight: 500;
  margin-bottom: 10px;
}
.delivery_total .total_price {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.delivery_total .total_price span {
  font-size: 30px;
  margin-left: 5px;
}

.category_name {
  height: 22px;
  margin: 20px 0;
  background: #ECECEC;
  border-radius: 15px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.category_name .category_icon {
  background: #EA7B7B;
  position: absolute;
  width: 30px;
  height: 30px;
  border: solid 2px #fff;
  border-radius: 20px;
  padding: 4px;
}
.category_name .category_icon .category_icon_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.category_name .category_icon .category_icon_img img {
  height: 18px;
}
.category_name p {
  font-size: 13px;
  color: #313131;
  letter-spacing: 0.03em;
  font-family: 'Lato', sans-serif;
  margin-left: 40px;
}

.product_block {
  position: relative;
}
.product_block .product_block_contents {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: -20px;
}
.product_block .product_block_contents .product_block_content {
  width: calc((100% - 10px) /2);
  margin: 0 10px 20px 0;
  border: solid 1px #ccc;
}
.product_block .product_block_contents .product_block_content:nth-of-type(2n) {
  margin: 0 0 20px 0;
}
.product_block .product_block_contents .product_block_content a {
  color: #313131;
}
.product_block .product_block_contents .product_block_content a .product_image {
  height: 110px;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.product_block .product_block_contents .product_block_content a .product_image .cart_icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border: solid 1px #B3C872;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background-color: #fff;
}
.product_block .product_block_contents .product_block_content a .product_image .cart_icon .cart_icon_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.product_block .product_block_contents .product_block_content a .product_image .cart_icon .cart_icon_img img {
  height: 18px;
}
.product_block .product_block_contents .product_block_content a .product_index {
  padding: 10px;
}
.product_block .product_block_contents .product_block_content a .product_index .product_name {
  font-size: 14px;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 10px;
}
.product_block .product_block_contents .product_block_content a .product_index .product_detail {
  text-overflow: ellipsis;
  font-size: 11px;
  color: #999999;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 10px;
}
.product_block .product_block_contents .product_block_content a .product_index .product_price {
  font-size: 11px;
  color: #313131;
  font-weight: 500;
}
.product_block .o_s {
  pointer-events: none;
  position: relative;
  opacity: .5;
}
.product_block .o_s form .cart_icon {
  display: none;
}
.product_block .o_s form:before {
  content: 'out of stock';
  position: absolute;
  bottom: 0;
  right: 0;
  color: red;
  font-size: 1.4em;
  font-weight: bold;
}

.category_list {
  background-color: #fff;
  padding: 50px 20px;
}
.category_list .category_title {
  font-size: 18px;
  font-family: 'Lato', sans-serif;
  letter-spacing: .05em;
  text-align: center;
  margin-bottom: 30px;
}
.category_list .category_box {
  margin-bottom: -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.category_list .category_box .category_block {
  width: calc((100% - 10px) /2);
  height: 50px;
  margin: 0 10px 20px 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.category_list .category_box .category_block:nth-of-type(2n) {
  margin: 0 0 20px 0;
}
.category_list .category_box .category_block a {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 1.2;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}
.category_list .category_box .category_block a p {
  letter-spacing: .1em;
  padding: 5px;
}

#clndr {
  margin-top: 50px;
}
#clndr .clndr {
  padding: 20px 10px;
  background-color: #fff;
}
#clndr .clndr .clndr-controls {
  font-size: 16px;
  margin: 0 0 20px;
  font-weight: bold;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.06em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#clndr .clndr .clndr-controls .clndr-control-button span {
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
}
#clndr .clndr .clndr-table {
  width: 100%;
}
#clndr .clndr .clndr-table thead {
  color: #ccc;
  border-bottom: solid 1px #ccc;
  margin-bottom: 10px;
}
#clndr .clndr .clndr-table thead .header-days .header-day {
  padding-bottom: 10px;
  text-align: center;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  font-weight: bold;
}
#clndr .clndr .clndr-table thead .header-days .header-day:first-child {
  color: #EA7B7B;
}
#clndr .clndr .clndr-table tbody tr td {
  padding: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  color: #313131;
  font-family: 'Lato', sans-serif;
}
#clndr .clndr .clndr-table tbody tr td div {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
}

.annotation {
  padding: 10px;
}
.annotation p {
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  color: #313131;
}
.annotation p .r_point {
  display: block;
  height: 20px;
  width: 20px;
  margin-right: 5px;
  background-color: #F4BDBD;
  border-radius: 50%;
}

.mylist_wrap {
  width: 100%;
  padding: 20px 10px;
  margin-top: 70px;
  position: relative;
  background-color: #fff;
  margin-bottom: 50px;
}
.mylist_wrap .common_back_btn {
  color: #EA7B7B;
  font-weight: bold;
  position: absolute;
  top: -30px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.mylist_wrap .common_back_btn img {
  width: 20px;
  margin-right: 10px;
}
.mylist_wrap h1 {
  text-align: center;
  font-size: 18px;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.05em;
}
.mylist_wrap .btn_area {
  margin: 30px 0 5px;
}
.mylist_wrap .btn_area .create_my_list {
  width: 100%;
  height: 30px;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.05em;
  color: #B3C872;
  border: solid 1px #B3C872;
  border-radius: 20px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.mylist_wrap .mylist_list .mylist_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 0;
}
.mylist_wrap .mylist_list .mylist_item + :last-child {
  padding: 15px 0 0;
}
.mylist_wrap .mylist_list .mylist_item .mylist_title {
  width: 50%;
  padding-right: 20px;
}
.mylist_wrap .mylist_list .mylist_item .mylist_title .mylist_title_date {
  font-size: 12px;
  color: #EA7B7B;
  letter-spacing: 0.03em;
  margin-bottom: 5px;
}
.mylist_wrap .mylist_list .mylist_item .mylist_title .mylist_title_name {
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.05em;
}
.mylist_wrap .mylist_list .mylist_item .mylist_btn_block {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.mylist_wrap .mylist_list .mylist_item .mylist_btn_block .mylist_edit_btn {
  width: 100%;
  height: 30px;
  margin-right: 10px;
  color: #B3C872;
  border: solid 1px #B3C872;
  border-radius: 20px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  letter-spacing: 0.03em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.mylist_wrap .mylist_list .mylist_item .mylist_btn_block .mylist_edit_btn:nth-child(even) {
  color: #fff;
  background-color: #B3C872;
}
.mylist_wrap .mylist_list .mylist_item .mylist_btn_block .mylist_delete_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.mylist_wrap .mylist_list .mylist_item .mylist_btn_block .mylist_delete_btn img {
  width: 16px;
}
.mylist_wrap .mylist_list .mylist_item + .mylist_item {
  border-top: solid 1px #e2e2e2;
}

/*.products_block {
    padding: 10px;
}
*/
.add_products_btn {
  position: -webkit-sticky;
  position: sticky;
  bottom: 20px;
  z-index: 2;
  width: 100%;
  height: 40px;
  margin: 0 0 20px;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  letter-spacing: 0.03em;
  background-color: #B3C972;
  border: solid 1px #fff;
  border-radius: 20px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
}

.products_block_input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 30px;
  width: 100%;
}

.list_name_title {
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.03em;
  color: #313131;
}

.products_block .list_name_input {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: #313131;
  display: block;
  width: calc(100% - 140px);
}
.products_block .name_update {
  color: #B3C872;
  background-color: #fff;
  border-radius: 15px;
  border: 1px solid #B3C872;
  display: block;
}

.common_wrapper .page_wrap .mylist_input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 0;
  margin-bottom: 20px;
  font-size: 13px;
  color: #313131;
}
.common_wrapper .page_wrap .common_btn_area {
  width: 100%;
}
.common_wrapper .page_wrap .common_btn_area button {
  width: 170px;
  height: 30px;
  margin: 0 auto;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.03em;
  color: #B3C872;
  background-color: #fff;
  border: solid 1px #B3C872;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.add_product_form {
  position: -webkit-sticky;
  position: sticky;
  bottom: 20px;
  z-index: 2;
}
.add_product_form .add_product_btn {
  position: -webkit-sticky;
  position: sticky;
  bottom: 20px;
  z-index: 2;
  width: 100%;
  height: 40px;
  margin: 0 0 20px;
  color: #fff;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.03em;
  background-color: #B3C872;
  border: solid 1px #fff;
  border-radius: 20px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
}
.add_product_form .add_product_btn #total {
  margin: 0px 5px;
}

#category_searchform {
  text-align: right;
  margin: 0 0 0px;
}
#category_searchform select {
  margin-top: 20px;
  background: url(../images/arrow_down.png) 180px center no-repeat;
  background-size: 8px;
  outline: none;
  padding: 0 15px 3px;
  display: inline-block;
  width: 200px;
  height: 30px;
  border: 1px #ccc solid;
  border-radius: 0px;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  font-size: 13px;
  color: #313131;
  background-color: #fff;
}

.status_schedule {
  width: 100%;
  padding: 20px 10px 0;
  margin-top: 70px;
  position: relative;
  background-color: #fff;
  margin-bottom: 50px;
}
.status_schedule .common_back_btn {
  color: #EA7B7B;
  font-weight: bold;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  position: absolute;
  top: -25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.status_schedule .common_back_btn img {
  width: 15px;
  margin-right: 10px;
}
.status_schedule .orders_status_list .delivery_date_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  color: #B3C872;
  font-size: 13px;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.05em;
}
.status_schedule .orders_status_list .delivery_date_img img {
  width: 20px;
  margin-right: 10px;
}
.status_schedule .orders_status_list ul .cancell {
  opacity: 0.3;
}
.status_schedule .orders_status_list ul .order_status_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}
.status_schedule .orders_status_list ul .order_status_block:last-child {
  margin-bottom: 0;
}
.status_schedule .orders_status_list ul .order_status_block .order_status_image {
  width: 50%;
  min-height: 100px;
}
.status_schedule .orders_status_list ul .order_status_block .order_status_data {
  width: 50%;
  position: relative;
  padding: 10px;
}
.status_schedule .orders_status_list ul .order_status_block .order_status_data .date {
  color: #EA7B7B;
  font-size: 11px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.status_schedule .orders_status_list ul .order_status_block .order_status_data .status {
  font-size: 11px;
  background-color: #EA7B7B;
  color: #fff;
  padding: 5px;
  display: inline-block;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.status_schedule .orders_status_list ul .order_status_block .order_status_data .order_status_status {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #313131;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 10px;
  font-weight: 500;
}
.status_schedule .orders_status_list ul .order_status_block .order_status_data .order_status_qty {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: #313131;
  margin-bottom: 10px;
}
.status_schedule .non_status {
  text-align: center;
  padding-bottom: 20px;
}
.status_schedule .btn_area {
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.status_schedule .btn_area .order_btn {
  width: 40%;
  margin: 3% 5%;
  padding: 5px;
  color: #fff;
  background-color: #B3C872;
  border: solid 2px #B3C872;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.status_schedule .btn_area .repeat_order_data {
  width: 48%;
  margin: 0 5%;
}
.status_schedule .btn_area .repeat_order_data .repeat_order_btn {
  position: -webkit-sticky;
  position: sticky;
  bottom: 20px;
  z-index: 2;
  width: 100%;
  height: 30px;
  margin: 20px 0 20px;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  letter-spacing: 0.03em;
  background-color: #B3C872;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  line-height: 1;
}

.orders_status_box {
  border: 1px solid #B3C872;
  padding: 10px;
  border-radius: 10px;
}

.invoices_title {
  text-align: center;
  font-size: 18px;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.05em;
  margin: 70px 0 30px;
}

.tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.tab .tablinks {
  text-align: center;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  letter-spacing: 0.05em;
  border: solid 1px #ddd;
  background-color: #ddd;
  padding: 10px;
  width: 30%;
  border-radius: 5px 5px 0 0;
}
.tab .tablinks + .tablinks {
  margin-left: 3%;
}
.tab .active {
  border: solid 1px #fff;
  background-color: #fff;
}

.tabcontent {
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  background-color: #fff;
}

#do .do_for_day {
  padding: 10px;
  margin: 0 0 15px;
  border: solid 1px #ccc;
}
#do .do_for_day:last-child {
  margin: 0 0 0;
}
#do .do_for_day .do_date {
  color: #EA7B7B;
  font-size: 12px;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}
#do .do_for_day .do_number a {
  display: block;
  color: #313131;
  font-size: 13px;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}
#do .do_for_day .do_number a:last-child {
  margin: 0 0 0;
}

#invoice .subtab {
  margin: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#invoice .subtab button {
  width: 100%;
  height: 30px;
  margin-right: 10px;
  color: #B3C872;
  border: solid 1px #B3C872;
  border-radius: 20px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  letter-spacing: 0.03em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#invoice .subtab button:last-child {
  margin-right: 0;
}
#invoice .subtab .active {
  background-color: #B3C872;
  color: #fff;
}
#invoice #not_paid .cal_box,
#invoice #paid .cal_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 0 10px 10px;
}
#invoice #not_paid .cal_box #totalPrice,
#invoice #paid .cal_box #totalPrice {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
#invoice #not_paid .cal_box #totalPrice span,
#invoice #paid .cal_box #totalPrice span {
  font-size: 18px;
  font-weight: 500;
  color: #EA7B7B;
}
#invoice #not_paid .invoice_for_date,
#invoice #paid .invoice_for_date {
  padding: 10px;
  margin: 0 0 15px;
  border: solid 1px #ccc;
}
#invoice #not_paid .invoice_for_date .invoice_date,
#invoice #paid .invoice_for_date .invoice_date {
  color: #EA7B7B;
  font-size: 12px;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}
#invoice #not_paid .invoice_for_date .invoice_data,
#invoice #paid .invoice_for_date .invoice_data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
}
#invoice #not_paid .invoice_for_date .invoice_data:last-child,
#invoice #paid .invoice_for_date .invoice_data:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
#invoice #not_paid .invoice_for_date .invoice_data .input_area,
#invoice #paid .invoice_for_date .invoice_data .input_area {
  width: 25px;
}
#invoice #not_paid .invoice_for_date .invoice_data a,
#invoice #paid .invoice_for_date .invoice_data a {
  color: #313131;
  width: calc(100% - 25px);
}
#invoice #not_paid .invoice_for_date .invoice_data .price,
#invoice #paid .invoice_for_date .invoice_data .price {
  color: #313131;
  font-size: 13px;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}
#invoice #not_paid .invoice_for_date .invoice_data .price_pink,
#invoice #paid .invoice_for_date .invoice_data .price_pink {
  color: #EA7B7B;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-align: right;
}
#invoice #not_paid .invoice_for_date .invoice_data .price_pink span,
#invoice #paid .invoice_for_date .invoice_data .price_pink span {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 0 5px;
}
#invoice #not_paid .invoice_for_date .invoice_data .date,
#invoice #paid .invoice_for_date .invoice_data .date {
  color: #313131;
  font-size: 13px;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}
#invoice #not_paid .invoice_paid_btn,
#invoice #paid .invoice_paid_btn {
  width: 100%;
  height: 30px;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  letter-spacing: 0.03em;
  background-color: #B3C872;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
}

#soa a {
  padding: 10px;
  margin: 0 0 15px;
  border: solid 1px #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#soa a:last-child {
  margin: 0 0 0;
}
#soa a span {
  color: #EA7B7B;
  font-size: 15px;
  letter-spacing: 0.05em;
}
#soa a p {
  color: #EA7B7B;
  font-size: 13px;
  letter-spacing: 0.05em;
}
#soa a p span {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 0 5px;
}

.tab_wrap {
  margin: 0 0 50px;
}

/*user_invoices*/
.page_wrap .receipt_tabcontent {
  padding: 0;
  border-radius: 0;
  margin-bottom: 0;
  margin-top: 30px;
}
.page_wrap .receipt_tabcontent .receipt_box {
  padding: 10px;
  margin: 0 0 15px;
  border: solid 1px #ccc;
}
.page_wrap .receipt_tabcontent .receipt_box:last-child {
  margin: 0 0 0;
}
.page_wrap .receipt_tabcontent .receipt_box .receipt_date {
  color: #EA7B7B;
  font-size: 12px;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}

.invoices_info .price {
  display: block;
  color: #313131;
  font-size: 13px;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}
.invoices_info .date {
  display: block;
  color: #313131;
  font-size: 13px;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}

.invoices_price {
  text-align: right;
}
.invoices_price .price {
  color: #EA7B7B;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.invoices_price .price span {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 0 5px;
}

.repeat_orders_block.w100 {
  width: 100% !important;
}

.user_input_wrap {
  margin-top: 100px;
}
.user_input_wrap .user_input_box {
  width: 90%;
  padding: 10px;
  margin: 0 auto;
  text-align: left;
}
.user_input_wrap .user_input_box h2 {
  font-size: 1.3em;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 30px;
}
.user_input_wrap .user_input_box .user_create_btn {
  text-align: center;
  line-height: 2.3;
  outline: none;
  border: none;
  padding: 0px;
  height: 40px;
  margin: 0 auto;
  background: #454545;
  display: block;
  width: 250px;
  color: #fff;
  font-size: 17px;
  letter-spacing: 1.2px;
}

.my_account_menu_list {
  margin: 15px 0 0 0;
}
.my_account_menu_list .my_account_menu_item {
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}
.my_account_menu_list .my_account_menu_item:last-child {
  border-bottom: none;
  padding: 15px 0 0;
}
.my_account_menu_list .my_account_menu_item .my_account_menu_link {
  display: block;
  color: #313131;
  font-size: 14px;
  font-weight: bold;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.05em;
}

.flex_sb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.language_type {
  font-size: 12px;
  font-weight: bold;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.05em;
  color: #313131;
}

/*edit_branch*/
.edit_branch_list {
  margin: 30px 0 0;
}
.edit_branch_list .edit_branch_item {
  margin: 0 0 20px;
}
.edit_branch_list .edit_branch_item .edit_title {
  color: #313131;
  font-size: 12px;
  font-weight: bold;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}
.edit_branch_list .edit_branch_item .edit_input {
  width: 100%;
  font-size: 13px;
  color: #313131;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 0;
}
.edit_branch_list .edit_branch_item .edit_text_area {
  width: 100%;
  font-size: 13px;
  color: #313131;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 0;
}

.cp_ipselect {
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.cp_ipselect select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #313131;
  font-size: 13px;
}

.cp_ipselect select::-ms-expand {
  display: none;
}

.cp_ipselect.cp_sl01 {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 2px;
  background: #ffffff;
}

.cp_ipselect.cp_sl01::before {
  position: absolute;
  top: 0.8em;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #313131;
  pointer-events: none;
}

.cp_ipselect.cp_sl01 select {
  padding: 10px 38px 10px 10px;
  color: #313131;
}

.edit_message {
  font-size: 13px;
  color: #313131;
  line-height: 1.3;
}

.my_account_detail {
  margin-top: 10px;
  font-size: 13px;
  color: #313131;
}

/*email*/
.mb_30 {
  margin-bottom: 30px;
}

.m_0 {
  margin: 0 0 0 0;
}

.page_wrap_2 {
  background-color: #fff;
  margin-bottom: 50px;
  padding: 20px 10px;
}

.edit_input::-webkit-input-placeholder {
  color: #ccc;
}

.edit_input::-ms-input-placeholder {
  color: #ccc;
}

.edit_input::placeholder {
  color: #ccc;
}

.email_registration_list {
  margin: 30px 0 -20px;
}
.email_registration_list .email_registration_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  border: 1px solid #B3C872;
  background-color: #fff;
  padding: 10px;
  margin: 0 0 20px;
}
.email_registration_list .email_registration_item .registration_email {
  font-size: 13px;
  color: #313131;
  width: calc(100% - 26px);
  overflow: scroll;
  line-height: 1;
}
.email_registration_list .email_registration_item .delete_btn {
  width: 16px;
  margin-left: 10px;
}

.common_btn_area {
  width: 100%;
}
.common_btn_area .plus_btn_big {
  width: 170px;
  height: 30px;
  margin: 0 auto;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.03em;
  color: #B3C872;
  background-color: #fff;
  border: solid 1px #B3C872;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*complete*/
.complete_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

.detail_text {
  font-size: 12px;
  font-weight: bold;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.05em;
  color: #313131;
  line-height: 1.5;
  margin: 30px 0 0;
}

.h_330 {
  height: 330px;
}

.alert_content {
  margin: 20px 0 0;
}
.alert_content .notifications .notification_block {
  margin: 0 0 10px;
}
.alert_content .notifications .notification_block .notification_index {
  color: #fff;
  background-color: #adc965;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.alert_content .notifications .notification_block .notification_readed {
  background-color: #ccc;
}
.alert_content .notifications .notification_block .notification_readed + .notification_body {
  border: solid 1px #ccc;
}
.alert_content .notifications .notification_block .notification_body {
  display: none;
  position: relative;
  padding: 5px 10px;
  font-size: 1em;
}
.alert_content .notifications .notification_block .notification_date_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}
.alert_content .notifications .notification_block .notification_date_content .notification_date {
  font-size: 13px;
  margin-left: 10px;
}
.alert_content .notifications .notification_block .from_text {
  font-size: 14px;
  letter-spacing: 0.05em;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
}
.alert_content .notifications .notification_block .notification_content_wrap {
  width: calc(100% - 25px);
}
.alert_content .notifications .notification_block .notification_from {
  width: 15px;
  margin-left: 10px;
}
.alert_content .notifications .notification_block .notification_product_name {
  font-size: 14px;
  margin-bottom: 10px;
}
.alert_content .notifications .notification_block .notification_status {
  font-size: 11px;
  background-color: #EA7B7B;
  color: #fff;
  padding: 5px;
  display: inline-block;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 10px;
}
.alert_content .notifications .notification_block .notification_message {
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.alert_content .notifications .notification_block .notification_to_order_button {
  text-decoration: underline;
  font-size: 13px;
  font-weight: bold;
}
