#cart_modal {
position: fixed;
background: rgba(0,0,0,0.7);
z-index: 9999;
width: 100vw;
height: 100vh;
top: 0;
left: 0;
}
#cart_msg_area ,
#cart_progress {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
#cart_msg_area {
background: #fff;
border-radius: 10px;
font-weight: bold;
padding: 1em 2em;
max-width: 100%;
width: 25em;
text-align: center;
box-sizing: border-box;
box-shadow: 0 0 10px 1px #b7b7b7;
}
#cart_msg_area:empty {
display:none;
}
#cart_progress::before {
content: "\f01e";
display: block;
font-family: FontAwesome;
font-size :96px;
color: #fff;
animation: circle 3s linear infinite;
}
#cart_msg_area:not(:empty) + #cart_progress::before {
display: none;
}
@keyframes circle {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.add_cart_wrap {
text-align: center;
}
.add_cart_wrap select {
width: auto;
}
.add_cart_trigger {
cursor: pointer;
}
.v_cart_wrap br.sp_only {
display: none;
}
@media (max-width: 768px) {
.v_cart_wrap br.sp_only {
display: inline;
}
}
#cart_list th,
#cart_list td {
vertical-align: middle;
}
#cart_list th {
text-align: center;
word-break: keep-all;
}
#cart_list .del_cart_trigger {
cursor: pointer;
text-decoration: underline;
}
#cart_list .del_cart_trigger:hover {
color: #68A341;
}
#cart_list #prices {
display: flex;
flex-wrap: wrap;
align-items: stretch;
font-weight:bold;
text-align: right;
font-size: 1.2em;
border-top: 3px solid #000;
}
#cart_list .heading {
width: 65%;
}
#cart_list .price {
width: 35%;
}
#cart_list #prices .big_area {
font-size: 1.5em;
background: #dcdcdc;
padding: 1em 0;
margin: 1em 0;
}
#cart_list #about_price {
font-weight: bold;
text-align:right;
}
#cart_list #cart_btns {
display: flex;
flex-wrap: wrap;
justify-content: center;
grid-gap: 1em;
margin: 1em 0;
}
#cart_list #cart_btns .linkBtn {
cursor: pointer;
margin: 0;
}
@media (max-width: 768px) {
#cart_list #prices {
font-size: 1em;
}
#cart_list #prices .big_area {
font-size: 1.2em;
}
#cart_list .thumb_wrap {
margin-bottom: .5em;
}
#cart_list img {
max-height: 25vh;
display: block;
margin: 0 auto;
}
#cart_list br.sp_only {
display: inline;
}
#cart_list .heading {
width: 100px;
display: flex;
justify-content: center;
align-items: center;
}
#cart_list .price {
width: calc( 100% - 100px );
}
}
#shopping_form .linkBtn {
display: block;
width: 10em;
margin: 0 auto;
}
#shopping_list th {
width: auto;
text-align: center;
}
#shopping_list .t_right ,
#shopping_list .t_right * {
text-align: right !important;
}
#shopping_list .name {
text-align: center;
}
#shopping_list .result {
font-weight: bold;
}
#cart_list .cart_err {
color: #e92d2d;
border: 1px solid;
font-weight: bold;
padding: .5em;
}
@media (max-width: 768px) {
#shopping_list {
font-size: 80%;
}
} #vcs_history .history_content {
border: 1px solid #dcdcdc;
padding: 1em;
margin-bottom: 1em;
}
#vcs_history .heading {
font-size: 1.5em;
border-bottom: 1px solid;
padding-bottom: .5em;
margin-bottom: .5em;
}
.cart_member_msg a {
text-decoration: underline;
color: #ce4543;
}