@import "reset.css";
@import "normalize.css";

/* Common */
body {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

a {
    transition: 0.2s;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
}

.button {
    height: 50px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    font-size: 18px;
    font-weight: 700;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.button:hover {
    opacity: 0.7;
}

.button--primary {
    border: 1px solid #3598C6;
    background-color: #3598C6;
    color: #fff;
    letter-spacing: 0.05em;
}

.button--standard1 {
    border: 1px solid #3598C6;
    background-color: #fff;
    color: #3598C6;
}

.button--standard2 {
    border: 1px solid #ccc;
    color: #666;
}

.button--small {
    height: 40px;
    font-size: 15px;
}
.history-button{width:160px !important;}

.button i {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.button i img {
    width: 100%;
}

.select {
    appearance: none;
    width: 180px;
    border: 1px solid #ccc;
    height: 40px;
    border-radius: 4px;
    padding-left: 10px;
    background: url(/images/icon_arrow-select.svg) no-repeat right 10px center;
    background-size: 8px 5px;
}

.select:hover {
    cursor: pointer;
}

.select:focus-visible {
    outline: none;
    border: 1px solid #3598C6;
}

.table--basic {
    border-collapse: collapse;
    width: 100%;
    font-size: 14px;
}

.table--basic th {
    border: 1px solid #ccc;
    background: #F8F8F8;
    padding: 9px 15px;
    font-weight: normal;
    text-align: left;
}

.table--basic td {
    border: 1px solid #ccc;
    padding: 9px 15px;
}
.small-text {
    font-size: 11px;
}

.order-status{margin-bottom: 10px;padding: 5px 20px;background-color: #efefef;font-size:12px;}
.order-status.status--not{background-color: #f7efec;color: #CA001E;font-weight:bold;}

/* Header */
#header {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #ccc;
    padding-left: 40px;
    z-index: 50;
    position: fixed;
}

.header__right {
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
    padding-right: 100px;
}

.header__right .user {
    position: relative;
    margin-right: 25px;
}

.header__right .user::before {
    content: '';
    width: 24px;
    height: 24px;
    position: absolute;
    background: url(/images/icon_user.svg) no-repeat;
    background-size: contain;
    left: -30px;
    top: -3px;
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 700;
}

.drawer .menu__hamburger {
    width: 70px;
    height: 70px;
    background: #0C295F;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 999;
    top: 0;
    right: 0;
}

.drawer .menu__hamburger:hover {
    cursor: pointer;
}

.drawer .menu__hamburger span {
    background: #fff;
    width: 25px;
    height: 2px;
    position: absolute;
    transition: 0.2s ease-out;
}

.drawer .menu__hamburger span:nth-of-type(1) {
    top: 25px;
}

.drawer .menu__hamburger span:nth-of-type(3) {
    bottom: 25px;
}

.drawer .menu__hamburger.active span:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
    transition: 0.2s ease-out;
}

.drawer .menu__hamburger.active span:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
    transition: 0.2s ease-out;
}

.drawer .menu__hamburger.active span:nth-of-type(2) {
    opacity: 0;
}

.drawer .menu__drawer {
    background-color: #0C295F;
    width: 300px;
    position: absolute;
    right: -320px;
    transition: 0.2s ease-out;
    height: 100vh;
    top: 0;
    padding: 100px 40px 40px 50px;
    /* z-index: 900; */
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.15);
}

.drawer .menu__drawer.open {
    right: 0;
    transition: 0.2s ease-out;
}

.drawer .menu__drawer ul li {
    color: #fff;
    margin-bottom: 36px;
}

.drawer .menu__drawer ul li a {
    position: relative;
    margin-left: 17px;
}

.drawer .menu__drawer ul li a::before {
    content: '';
    position: absolute;
    height: 1px;
    width: 10px;
    background-color: #7E899F;
    left: -17px;
    top: 7px;
}

.menu__overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 600;
    transition: 0.3s;
    display: none;
    opacity: 0;
}

.menu__overlay.show {
    display: block;
    opacity: 1;
}

/* Main */
#main {
    width: 100%;
    padding: 70px 20px 0;
    position: relative;
}

#main .main__innner {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 100px;
}

#main .main__innner .title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

#main .main__innner__commnet{position: absolute;top: 90px;right: 100px;}
#main .main__innner__commnet a{color: #CA001E;font-weight: bold;text-decoration: underline;}
#main .main__innner__commnet a:hover{color:#f37b8c;}
.header__newmember a:first-child{margin-right:15px;}

.d__flexbox {display:flex;}
.d__flexbox.align-items--center{align-items: center;}
.d__flexbox.justify-content--space-between{justify-content: space-between;}
.d__flexbox.justify-content--center{justify-content: center;}
.column__left{width:230px;}
.column__right{width:calc(100% - 230px) ;}
.button-article{padding:0 10px;}
.form-top--messege{padding-bottom: 20px;text-align:center;}

/* Side Menu*/
.column__left dl{margin-top: 0;padding: 0;}
.column__left dl dt{font-weight: bold; padding: 0 0px 5px 5px;}
.column__left dl dd{padding-bottom:10px;}

/* Right box */
.product--next--bottom{padding-top: 15px;}
.product-list__item .product__info .product--next--bottom .product__price{margin-top:0;}
.search--results{margin-bottom: 40px;padding: 20px;border: 1px solid #ddd;text-align: center;font-size: 18px;}

/* Login messe */
.login--form .register-form{width: 500px;}

/* Main item */
.button-area--top {
    padding: 15px 20px 0;
    position: absolute;
    top: 70px;
}

.button-area--top .button--back {
    width: 140px;
    font-weight: normal;
}

.button-area--top .button--back i {
    margin-right: 5px;
}

.action-area {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.side_box {
    width: 20%;
    text-align:right;
}

.head_right_box {
    width:100%;
    text-align:right;
    margin-bottom: 20px;
}
.cost_name {
    font-size: 20px;
    font-weight: 700;
}
.csv_dl {
    width: 180px;
    text-align:right;
    font-size: 20px;
    font-weight: 700;
}

.button.button--register {
    width: 180px;
}

.tab {
    width: 100%;
    display: flex;
    border-bottom: 1px solid #ccc;
    z-index: 0;
}

.tab .tab__item {
    width: 160px;
    height: 40px;
    border: 1px solid #ccc;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background: #eee;
    color: #666;
    text-align: center;
    padding-top: 8px;
    margin-right: 7px;
    margin-bottom: -1px;
    transition: 0.2s;
}

.tab .tab__item:last-child {
    margin-right: 0;
}

.tab .tab__item.active {
    background: #fff;
    color: #333;
    border-bottom: 1px solid #fff;
    z-index: 10;
}

.tab .tab__item:hover {
    color: #333;
    cursor: pointer;
}

.tab .tab__item a {
    display: block;
}

.tab__content {
    display: none;
    margin-top: 20px;
}

.tab__content.active {
    display: block;
}

.product-list {
    margin-bottom: 50px;
}

.material-list__item {
    width: 100%;
    padding: 50px;
}

.material-list__item .product__info.no-margin{margin-left:0;}

.material-list__item .product__info.fullwidth{width:100%;}

.material-list__item .product__info .product__name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align:  center; 
}


.product-list__item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    padding: 50px;
    opacity: 1;
}

.product-list__item.is-hidden {
    opacity: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

.product-list__item.is-hidden * {
    display: none;
}

.product-list__item .product__image {
    width: 180px;
    height: 180px;
}

.product-list__item .product__image img {
    width: 100%;
}

.product-list__item .product__info {
    margin-left: 30px;
    flex: 1;
}

.product-list__item .product__info.no-margin{margin-left:0;}

.product-list__item .product__info.fullwidth{width:100%;}

.product-list__item .product__info .product__name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align:  center; 
}

.product-list__item .product__info .product__spec {
    border-collapse: collapse;
    width: 100%;
}

.product-list__item .product__info .product__spec th {
//    width: 16%;
    padding: 5px 10px;
    font-weight: bold;
    text-align: center;
}
.product-list__item .product__info .product__spec td {
    padding: 5px 10px;
    text-align: center;
}

.product-list__item .product__info .product__price {
    color: #CA001E;
    font-size: 20px;
    font-weight: 700;
    text-align: right;
    margin-top: 15px;
}

.product-list__item .product__info .product__price span {
    font-size: 15px;
}

.product-list__item .product__info .product__price span.text-normal {
    font-weight: normal;
    color: #333;
    padding-left: 5px;
}

.product-list__item .product__edit {
    margin-left: 30px;
    margin-top: 30px;
}

.product-list__item .product__edit .button {
    width: 130px;
    margin-bottom: 13px;
}

.product-list__item .product__edit .button i {
    margin-right: 3px;
}

.product-list__item .product__edit .button i img {
    width: 100%;
}

.product-list__item .product__edit.edit--nextpage{display: flex;align-items: center;margin-top:0;}

.button-area--bottom {
    text-align: center;
}

.button-area--bottom .button {
    width: 230px;
    display: inline-block;
}

.button--more.is-btn-hidden {
    display: none;
}
.button-area--head {
    text-align: left;
    padding: 50px;

}

/* 商品詳細 */
.product-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    margin-top: 20px;
}

.product-detail__image,
.product-detail__info {
    width: 100%;
    max-width: 480px;
}

.product-detail__image img {
    width: 100%;
}

.image__list {
    display: flex;
    flex-wrap: wrap;
}

.image__list .image__list__item {
    width: 24%;
    margin-right: 1.3%;
}

.image__list .image__list__item:nth-child(5),
.image__list .image__list__item:first-child {
    margin-right: 0;
}

.image__list .image__list__item.image--main {
    width: 100%;
}

h1.header__logo{margin: 0;font-size: 0;}

.product-detail__info h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    margin-top: 0;
}

.product-detail__info .product-detail__price {
    color: #CA001E;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-detail__info .product-detail__price span {
    font-size: 15px;
}

.product-detail__info .product-detail__price span.text-normal {
    color: #333;
    font-weight: normal;
    padding-left: 5px;
}

.product-detail__info .product-detail__spec {
    margin-bottom: 30px;
    margin-top: 30px;
}

.product-detail__info .product-detail__spec th {
    width: 25%;
    padding: 5px 10px;
}
.product-detail__info .product-detail__spec td {
    padding: 5px 10px;
}

.product-detail__info .product-detail__note {
    margin-bottom: 30px;
    line-height: 1.6;
}

.product-detail__info .product-detail__note .note__title {
    font-weight: 700;
    margin-bottom: 10px;
    border-bottom: #ccc 1px solid;
    padding-bottom: 5px;
    color: #666;
}

.product-detail__info .product-detail__note.note--company .company__name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.product-detail__info .button--hold {
    width: 100%;
}

/* 新規登録 */
.register-form {
    width: 600px;
    margin: 0 auto;
}

.register-form th,
.register-form td {
    padding: 8px 0;
    text-align: left;
    vertical-align: top;
}

.register-form th {
    padding: 8px 10px 8px 0;
    width: 20%;
    position: relative;
}

input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text] {
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    padding: 10px;
    width: 100%;
    line-height: 1;
}

input.unit--width{width:90%;margin-right:5px;}
input.half--width{width:45%;margin-right:5px;}

input[type=radio] {
    display: none;
    margin: 0;
}

input[type=radio]+label {
    display: inline-block;
    padding: 0 20px 0 30px;
    position: relative;
    cursor: pointer;
}

input[type=radio]+label::before {
    box-sizing: border-box;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -9px;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

input[type=radio]:checked+label::before {
    border-color: #3598C6;
}

input[type=radio]:checked+label::after {
    background: #3598C6;
    border-radius: 5px;
    box-sizing: border-box;
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    margin-top: -4px;
    margin-left: 5px;
}

textarea {
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    padding: 10px;
    width: 100%;
    line-height: 1.6;
}

input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #3598C6;
}

.register-form .select {
    position: relative;
    width: 260px;
    display: inline-block;
}

.register-form .select::after {
    content: '';
    border: 5px solid transparent;
    border-top: 8px solid #CCC;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -4px;
    pointer-events: none;
    z-index: 0;
}

.form {
    width: 500px;
    margin: 5% auto;
}

.form__container {
    position: relative;
    width: 100%;
    height: 200px;
    border: 2px dashed silver;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: silver;
    margin-bottom: 5px;
}

.form__container.active {
    background-color: rgba(192, 192, 192, 0.2);
}

.form__file {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    opacity: 0;
}

.form__files-container {
    display: block;
    width: 100%;
    font-size: 0;
    margin-top: 20px;
}

.form__image-container {
    display: inline-block;
    width: 49%;
    height: 200px;
    margin-bottom: 10px;
    position: relative;
}

.form__image-container:not(:nth-child(2n)) {
    margin-right: 2%;
}

.form__image-container:after {
    content: "✕";
    position: absolute;
    line-height: 200px;
    font-size: 30px;
    margin: auto;
    top: 0;
    right: 0;
    left: 0;
    text-align: center;
    font-weight: bold;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.form__image-container:hover:after {
    opacity: 1;
    cursor: pointer;
}

.form__image {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

/* Footer */
#footer {
    background-color: #0C295F;
    width: 100%;
}

#footer .footer__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.footer__logo {
    max-width: 243px;
}

.footer__menu {
    display: flex;
    justify-content: space-between;
    width: 63%;
}

.footer__menu .footer__menu__list {
    color: #fff;
    font-size: 14px;
    width: calc(100% / 3);
}

.footer__menu .footer__menu__list li {
    margin-bottom: 20px;
}

.footer__menu .footer__menu__list li a {
    position: relative;
}

.footer__menu .footer__menu__list li a::before {
    content: '';
    position: absolute;
    height: 1px;
    width: 10px;
    background-color: #7E899F;
    left: -15px;
    top: 6px;
}

#footer .copy {
    position: absolute;
    color: #7E899F;
    font-size: 12px;
    bottom: 25px;
    right: 0;
}

/* Modaal 微修正 */
.modaal-gallery-item.is_active {
    max-width: 600px;
    height: 600px;
}

.modaal-image .modaal-container,
.modaal-gallery-item img {
    max-width: 600px;
    height: 600px;
}

/* 【dropzone】ドラッグ＆ドロップ　ファイルアップロード */
.dropzone {
    border: 2px dashed #ccc;
    max-width: 600px;
    margin: 30px auto;
    transition: 0.2s;
    color: #3598C6;
}

.dropzone:hover {
    background-color: #f8f8f8;
}

.dropzone-previews {
    max-width: 600px;
    margin: 0 auto 30px;
}

.dropzone-previews .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    min-height: 100px;
    border: 1px solid #ccc;
    padding: 10px;
    width: 142px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.dropzone-previews .dz-preview:nth-of-type(4n) {
    margin-right: 0;
}

.dropzone-previews .dz-preview:hover {
    z-index: 1000
}

.dropzone-previews .dz-preview:hover .dz-details {
    opacity: 1
}

.dropzone-previews .dz-preview.dz-file-preview .dz-image {
    background: #999;
    background: linear-gradient(to bottom, #eee, #ddd)
}

.dropzone-previews .dz-preview.dz-file-preview .dz-details {
    opacity: 1
}

.dropzone-previews .dz-preview.dz-image-preview {
    background: #fff
}

.dropzone-previews .dz-preview.dz-image-preview .dz-details {
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    -ms-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear
}

.dropzone-previews .dz-preview .dz-remove {
    font-size: 14px;
    text-align: center;
    display: block;
    cursor: pointer;
    border: none;
    margin-top: 5px;
}

.dropzone-previews .dz-preview .dz-remove:hover {
    text-decoration: underline
}

.dropzone-previews .dz-preview:hover .dz-details {
    opacity: 1
}

.dropzone-previews .dz-preview .dz-details {
    z-index: 20;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    font-size: 13px;
    min-width: 100%;
    max-width: 100%;
    padding: 2em 1em;
    text-align: center;
    color: rgba(0, 0, 0, .9);
    line-height: 150%
}

.dropzone-previews .dz-preview .dz-details .dz-size {
    margin-bottom: 1em;
    font-size: 16px
}

.dropzone-previews .dz-preview .dz-details .dz-filename {
    white-space: nowrap
}

.dropzone-previews .dz-preview .dz-details .dz-filename:hover span {
    border: 1px solid rgba(200, 200, 200, .8);
    background-color: rgba(255, 255, 255, .8)
}

.dropzone-previews .dz-preview .dz-details .dz-filename:not(:hover) {
    overflow: hidden;
    text-overflow: ellipsis
}

.dropzone-previews .dz-preview .dz-details .dz-filename:not(:hover) span {
    border: 1px solid transparent
}

.dropzone-previews .dz-preview .dz-details .dz-filename span,
.dropzone-previews .dz-preview .dz-details .dz-size span {
    background-color: rgba(255, 255, 255, .4);
    padding: 0 .4em;
    border-radius: 3px
}

.dropzone-previews .dz-preview:hover .dz-image img {
    -webkit-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
    -webkit-filter: blur(8px);
    filter: blur(8px)
}

.dropzone-previews .dz-preview .dz-image {
    overflow: hidden;
    width: 120px;
    height: 120px;
    position: relative;
    display: block;
    z-index: 10
}

.dropzone-previews .dz-preview .dz-image img {
    display: block
}

.dropzone-previews .dz-preview.dz-success .dz-success-mark {
    -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1)
}

.dropzone-previews .dz-preview.dz-error .dz-error-mark {
    opacity: 1;
    -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1)
}

.dropzone-previews .dz-preview .dz-success-mark,
.dropzone-previews .dz-preview .dz-error-mark {
    pointer-events: none;
    opacity: 0;
    z-index: 500;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    margin-left: -27px;
    margin-top: -27px
}

.dropzone-previews .dz-preview .dz-success-mark svg,
.dropzone-previews .dz-preview .dz-error-mark svg {
    display: block;
    width: 54px;
    height: 54px
}

.dropzone-previews .dz-preview.dz-processing .dz-progress {
    opacity: 1;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear
}

.dropzone-previews .dz-preview.dz-complete .dz-progress {
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in;
    -moz-transition: opacity 0.4s ease-in;
    -ms-transition: opacity 0.4s ease-in;
    -o-transition: opacity 0.4s ease-in;
    transition: opacity 0.4s ease-in
}

.dropzone-previews .dz-preview:not(.dz-processing) .dz-progress {
    -webkit-animation: pulse 6s ease infinite;
    -moz-animation: pulse 6s ease infinite;
    -ms-animation: pulse 6s ease infinite;
    -o-animation: pulse 6s ease infinite;
    animation: pulse 6s ease infinite
}

.dropzone-previews .dz-preview .dz-progress {
    opacity: 1;
    z-index: 1000;
    pointer-events: none;
    position: absolute;
    height: 16px;
    left: 50%;
    top: 50%;
    margin-top: -8px;
    width: 80px;
    margin-left: -40px;
    background: rgba(255, 255, 255, .9);
    /* -webkit-transform: scale(1); */
    border-radius: 8px;
    overflow: hidden
}

.dropzone-previews .dz-preview .dz-progress .dz-upload {
    background: #333;
    background: linear-gradient(to bottom, #666, #444);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    -webkit-transition: width 300ms ease-in-out;
    -moz-transition: width 300ms ease-in-out;
    -ms-transition: width 300ms ease-in-out;
    -o-transition: width 300ms ease-in-out;
    transition: width 300ms ease-in-out
}

.dropzone-previews .dz-preview.dz-error .dz-error-message {
    display: block
}

.dropzone-previews .dz-preview.dz-error:hover .dz-error-message {
    opacity: 1;
    pointer-events: auto
}

.dropzone-previews .dz-preview .dz-error-message {
    pointer-events: none;
    z-index: 1000;
    position: absolute;
    display: block;
    display: none;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    font-size: 13px;
    top: 165px;
    left: 0;
    width: 140px;
    background: #be2626;
    background: linear-gradient(to bottom, #be2626, #a92222);
    padding: .5em 1.2em;
    color: #fff
}

.dropzone-previews .dz-preview .dz-error-message:after {
    content: "";
    position: absolute;
    top: -6px;
    left: 64px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #be2626
}

/* Slick */
.slider {
    margin-bottom: 5px;
}

.product-detail__image img {
    height: auto;
    width: 100%;
}

.thumbnail .slick-track {
    transform: unset !important;
}

.thumbnail-img {
    opacity: 0.3;
    transition: opacity .3s linear;
    width: 25% !important;
    padding-right: 5px;
}

.thumbnail-img:nth-child(4n) {
    padding-right: 0;
}

.thumbnail .slick-current {
    opacity: 1;
}

.slick-prev:before,
.slick-next:before {
    font-size: 40px;
}

.slick-prev {
    left: 10px;
    z-index: 1;
    width: 40px;
    height: 40px;
}

.slick-next {
    right: 10px;
    width: 40px;
    height: 40px;
}

/* margin font span */
.mgtop20{margin-top:20px !important;}
.mgtop40{margin-top:40px !important;}

.font-commnent{font-size:12px;}