@import url("https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700");

::placeholder 
{ 
  	color: #777;
}

:root
{
    --textcolor: #777;
    --linkcolor: #000;
    --linkhovercolor: #777;
    --btnprimary: #777;
    --btnprimaryhover: #666;
    --btnprimarytext: #fff;
    --btnprimarytexthover: #fff;
    --btnsecondary: #fff;
    --btnsecondaryhover: #eee;
    --btnsecondarytext: #777;
    --btnsecondarytexthover: #777;
    --titlecolor: #000;
    --labelcolor: #000;
    --bordercolor: #ddd;
    --borderfocuscolor: #000;
    --inputcolor: #fff;
    --inputtext: #495057;
    --checkboxcolor: #777;
}

body 
{
    position: relative;
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    font-size: 15px;
    background: #eff1f5;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.3;
    color: var(--textcolor);
    overflow-x: hidden;
    box-sizing: border-box;
}

body.overflow
{
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6
{
	line-height:1.3;
    color: var(--titlecolor);
}

label
{
    color: var(--labelcolor);
    margin-bottom: 5px;
}

label sup
{
	margin-left:5px;
}

hr
{
	display:inline-block;
	width:100%;
	margin:10px 0px;
}

a, a:not([href]):not([tabindex])
{
    color: var(--linkcolor);
}

a:hover
{
    text-decoration: none;
    color: var(--linkhovercolor);
}

/***** BUTTON *****/
a.button:not([href]):not([tabindex])
{
    color: var(--btnprimarytext);
    cursor: pointer;
}

.button, button
{
	position:relative;
	display: inline-block;
	border-radius: 20px;
	padding: 6px 25px 7px 25px;
	transition: 0.3s ease;
    font-size: 15px;
    font-weight: 500;
    text-align:center;
    text-transform:capitalize;
	background: var(--btnprimary);
    color: var(--btnprimarytext);
    margin-top: 10px;
    border: 1px solid;
    border-color: var(--btnprimarytext);
}

.button:hover, button:hover
{
    text-decoration: none;
	background: var(--btnprimaryhover);
	color: var(--btnprimarytexthover);
    border-color: var(--btnprimarytexthover);
}

.button > i.fa, button > i.fa
{
	margin-right:10px;
}

.btn-secondary
{
    padding: 5px 25px 6px 25px;
    border: 1px solid;
    border-color: var(--btnsecondarytext);
    color: var(--btnsecondarytext);
    background: var(--btnsecondary);
}

.btn-secondary:hover
{
    border: 1px solid;
    border-color: var(--btnsecondarytexthover);
    color: var(--btnsecondarytexthover);
    background: var(--btnsecondaryhover);
}
/***** END BUTTON *****/

/***** INPUT *****/
:focus
{
	outline: 0;
}

input, textarea
{
	padding: 7px 15px;
	width:100%;
	background: var(--inputcolor);
    font-size: 15px;
    color: var(--inputtext);
    border:1px solid;
    border-color:var(--bordercolor);
    border-radius:5px;
    -webkit-appearance:none;
}

input:focus,
textarea:focus,
button:focus,
.select2-container--open .select2-selection--single .select2-selection__rendered
.select2-container--default .select2-selection--single .select2-selection__rendered,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show>.btn-secondary.dropdown-toggle:focus
{
    border-color:var(--borderfocuscolor);
	outline: 0;
	box-shadow: none;
}

input[readonly], input[readonly]:focus
{
    background: #eee;
    border-color:var(--bordercolor);
    cursor: not-allowed;
}

.input-row
{
	position:relative;
}

.input-row label.input
{
	position: absolute;
	font-size: 14px;
	width: 100%;
	top: 4px;
	left:0px;
	color: #666;
	padding: 0px 16px;
	transition: all 0.2s ease-out;
	user-input:none;
	pointer-events:none;
	opacity:0;
	font-weight: 400;
	z-index:9;
}

.input-row label.input.active
{
	transform: none;
	opacity:1;
    font-weight: 500;
    color: #000;
    margin-bottom: 0px;
}

.input-row input
{
	padding:11.5px 15px 12px 15px;
}

.input-row .select2-container--default .select2-selection--single .select2-selection__rendered
{
	padding:10px 15px 10.5px 15px;
    font-size: 15px;
}

.input-row label.input.active + input, .input-row label.input.active + span input
{
	padding-top: 20.5px;
	padding-bottom: 3px;
}

.input-row label.input.active + textarea
{
    padding-top: 25px;
}

.input-row label.input.active ~ .select2-container--default .select2-selection--single .select2-selection__rendered,
.input-row label.input.active + span .select2-container--default .select2-selection--single .select2-selection__rendered
{
	padding-top: 20px;
	padding-bottom: 0.5px;
    border: 0px;
    font-size: 15px;
}

.select2-container .select2-choice, .select2-container .select2-selection
{
    background: var(--inputcolor);
    color: var(--inputtext);
    border:1px solid;
    border-color:var(--bordercolor);
    border-radius:5px;
    font-size: 15px;
}

.select2-container--default .select2-search--dropdown .select2-search__field,
.select2-container--open .select2-dropdown--below
{
    border-color:var(--bordercolor);
}

.select2-results__option
{
    padding: 7px 15px;
}
/***** END INPUT *****/

/*** CUSTOM CHECKBOX / RADIO ***/
[type="checkbox"], [type="radio"]
{
	width:auto;
    position: absolute;
    left: -9999px;
}

[type="checkbox"] + label, [type="radio"] + label
{
    position: relative;
	display:inline-block;
    padding-left: 30px;
    cursor: pointer;
    line-height: 1.5;
	font-weight:normal;
}

[type="checkbox"] + label:before, [type="radio"] + label:before
{
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
	height: 18px;
	border: 1px solid;
    border-color: var(--bordercolor);
	border-radius:2px;
    background: var(--inputcolor);
}

[type="radio"] + label:before
{
    border-radius: 100%;
}

[type="checkbox"] + label:after, [type="radio"] + label:after
{
    position: absolute;
    top: 7px;
	left: 4px;
    width: 9px;
	height: 9px;
    content: '';
	background: var(--checkboxcolor);
    transition: all 0.2s ease;
}

[type="checkbox"] + label:after
{
    top: 5.5px;
	left: 6px;
	width: 6px;
	height: 10px;
	background:var(--checkboxcolor);
	border-bottom: 3px solid #FFF;
	border-right: 3px solid #FFF;
  	transform: rotate(45deg);
}

[type="radio"] + label:after
{
    border-radius: 100%;
	width:10px;
	height:10px;
	background:var(--checkboxcolor);
}

[type="checkbox"]:not(:checked) + label:after, [type="radio"]:not(:checked) + label:after 
{
    opacity: 0;
}

[type="checkbox"]:checked + label:before
{
	border-color: var(--checkboxcolor);
	background: var(--checkboxcolor);
}

[type="radio"]:checked + label:before
{
	border-color: var(--checkboxcolor);
	background: var(--inputcolor);
}

[type="checkbox"]:disabled + label::before, [type="radio"]:disabled + label::before
{
	border-color: #DDD;
	background: #f1f1f1;
}

[type="checkbox"]:disabled + label::after
{
	border-color: #666;
}

[type="radio"]:disabled + label::after
{
	background: #666;
}

td.checkbox [type="checkbox"] + label, td.checkbox [type="radio"] + label
{
	display:inline-block !important;
	width:18px;
	height:18px;
	vertical-align:top;
	margin-bottom:0px;
	padding-left:0px;
}
/*** END CUSTOM CHECKBOX / RADIO ***/

/*** CUSTOM FILE UPLOAD ***/
.file_box
{
	display: flex;
	width: 100%;
    border: 1px solid var(--bordercolor);
	background:#FFF;
    border-radius: 5px;
    align-items: center;
}

.file_box:hover
{
	cursor:pointer;
}

.file_text
{
    width: 100%;
	padding:12.8px 15px 12px 15px;
    word-break: break-all;
    border-right:1px solid var(--bordercolor);
    cursor: pointer;
}

.file_btn
{
	max-width:100px;
	text-align:right;
}

.file_btn input[type=button]
{
	margin-top:0px;
	border:0px;
}

.file_hidden
{
	height:0px;
	width:0px;
	overflow:hidden;
}
/*** END CUSTOM FILE UPLOAD ***/

/***** ALERT MESSAGE *****/
.alert-msg
{
	padding:7px 10px;
	font-size:14px;
	margin-bottom:20px;
}

.alert-msg.success
{
	background-color: #e9f9e5;
	color: #1c8400;
	border: 1px solid #b4e8aa;
}

.alert-msg.error
{
	background-color: #f9e5e6;
	color: #b50007;
	border: 1px solid #e8aaad;
}

.alert-msg ul, .error-msg ul
{
    padding: 0px;
    margin-bottom: 0px;
}

.alert-msg ul li, .error-msg ul li
{
	display:flex;
    margin-bottom: 5px;
}

.alert-msg ul li:before, .error-msg ul li:before
{
	content:"-";
	margin-right:10px;
}

.error-msg
{
	display:inline-block;
	width:100%;
	text-align:left;
}
/***** END ALERT MESSAGE *****/

/***** NOT FOUND PAGE *****/
.notfound-box
{
	margin:0px auto;
	text-align:center;
}

.notfound-box img
{
	margin-bottom:70px;
}

.notfound-title
{
	font-size: 36px;
	line-height: 36px;
	margin-bottom: 26px;
	font-weight: 400;
}

.notfound-text
{
	font-size: 16px;
}

.notfound-box a.button
{
	margin-top:60px;
	padding:15px 34px 16px;
	border-radius:30px;
}
/***** END NOT FOUND PAGE *****/

/**** PAGINATION ****/
.pagination
{
	display:inline-block;
	width:100%;
	text-align:center;
	margin-top:30px;
	margin-bottom:0px;
}

.pagination > a
{
	position:relative;
	display:inline-block;
	width:40px;
	height:30px;
	border-radius: 15px;
	margin: 0 3px 7px 3px;
	padding: 5px 0px;
	border: 0px;
	color:var(--textcolor);
	font-weight:500;
}

.pagination > a.active, .pagination > a:hover, .pagination > a:focus
{
	background-color: var(--btnprimary);
	color:var(--btnprimarytext) !important;
}

.pagination > a.prev-next
{
	color:#000;
}

.pagination > a.prev-next:hover, .pagination > a.prev-next:focus
{
	background-color: var(--btnsecondaryhover);
	color: var(--btnsecondarytexthover) !important;
}
/**** END PAGINATION ****/

/**** DATETIME PICKER ****/
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current
{
    background:#000;
    box-shadow: #000 0 1px 3px 0 inset;
    color: #FFF !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover
{
    background: #777 !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current.xdsoft_disabled,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current.xdsoft_disabled,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current.xdsoft_disabled:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current.xdsoft_disabled:hover
{
    background:#f5f5f5 !important;
    box-shadow: none !important;
    color: #777 !important;
    font-weight: normal !important;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect
{
    text-align: left;
}

.xdsoft_scrollbar
{
    width: 5px;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current
{
    background: #777;
    box-shadow: none;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today
{
    color: #000;
    font-weight: bold
}
/**** END DATETIME PICKER ****/

/**** POPUP ****/
/* overlay */
#bg-overlay
{
	position:fixed;
    display: none;
	width:100%;
	top:0;
    left:0;
    bottom: 0;
    right: 0;
	background-color: rgba(0, 0, 0, .5);
	z-index:99;
    overflow: auto;
}

#bg-overlay > i
{
    display: none;
	font-size: 65px;
	position: absolute;
	top: 45%;
	left: 47%;
	transform: translate(-50%, -50%);
    z-index: 999;
    color: #FFF;
}

#bg-overlay.loading > i
{
    display: block;
}
/* END overlay */

/* alert */
#popup-alert-box
{
	position: relative;
    display: none;
	width: 350px;
    max-width: 100%;
    top: calc(50% - 30px);
    transform: translateY(-50%);
	background: #EEE;
	border-radius: 5px;
	padding: 15px 20px;
    margin: 30px auto;
	font-size:15px;
	color: #000;
	text-align: center;
	box-shadow: 0 0px 5px rgba(0,0,0,0.19),6px 6px 6px rgba(0,0,0,0.22);
    z-index: 9999;
}

#popup-alert-box > span
{
	display: inline-block;
	width: 100%;
	margin-bottom: 10px;
}

#popup-alert-box .error-msg
{
	text-align:left;
}

#popup-alert-box .error-msg > strong
{
	display:inline-block;
	width:100%;
	margin-bottom:5px;
    color: red;
}

#popup-alert-box .error-msg > p:last-child
{
    margin-bottom: 0px;
}

#popup-alert-box button
{
	margin-bottom:10px;
}
/* END alert */
/**** END POPUP ****/

/***** LISTING *****/
.listing-box
{
    display: table;
    width: 100%;
    color: #000;
}

.listing-header
{
    display: table-row;
    font-weight: bold;
}

.listing-body
{
    display: table-row;
}

.listing-header > div, .listing-body > div
{
    display: table-cell;
    border-bottom: 1px solid;
    border-color: var(--bordercolor);
    vertical-align: top;
}

.listing-header > div
{
    padding: 5px 10px;
}

.listing-body > div > span, .listing-body > div > span:first-child:last-child
{
    display: inline-block;
    padding: 5px 10px;
}

.listing-body > div > span:first-child
{
    display: none;
}

.listing-body .button
{
    width: 100%;
    margin-top: 3px;
    margin-bottom: 3px;
}
/***** END LISTING *****/

/***** HEADER *****/
header
{
    padding: 15px 0px;
}

header .logo img
{
    max-width: 200px;
}

header .member-menu > ul
{
    list-style: none;
    margin: 0px;
    padding: 0px;
}

header .member-menu > ul > li
{
    display: inline-block;
    margin-left: 5px;
}

header .member-menu .button
{
    margin-top: 0px;
}
/***** END HEADER *****/

/***** FOOTER *****/
footer .copyright
{
    background:#000;
    padding: 15px 0px;
    font-size: 14px;
    color: #999;
    text-align: center;
}

footer .copyright a
{
    color: #fff;
    text-decoration: none;
}

footer .copyright a:hover
{
    color: #777777;
}

footer .go-top
{
    position: fixed;
    visibility:hidden;
    cursor: pointer;
    width: 40px;
    height: 40px;
    line-height: 36px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    z-index: 111;
    bottom: 20px;
	right: 30px; 
	background:transparent;
	border: 2px solid #777;
	color: #777;
}

footer .go-top span
{
    display: inline-block;
	font-size:15px;
}

footer .go-top:hover
{
	background:#FFF;
	border-color:#FFF;
}
/***** END FOOTER *****/

/***** BOX *****/
.content-box
{
    display: flex;
    margin: 40px 0px 50px 0px;
}

.white-box
{
    display: inline-block;
    width: 100%;
    border-radius: 5px;
    background-color: #fff;
    padding: 20px 30px;
}

.white-box h3
{
    font-size: 26px;
    font-weight: normal;
}

.white-box h4
{
    font-size: 20px;
    font-weight: normal;
}

.login-box
{
    padding: 0px;
}

.login-box h3
{
    text-transform: uppercase;
    padding: 30px 50px;
    text-align: center;
    font-weight: normal;
    border-bottom: 1px solid;
    border-color:var(--bordercolor);
}

.login-box form
{
    padding:30px 50px;
}
/***** END BOX *****/

/***** MEMBER MENU *****/
.member-name
{
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    padding: 15px 0px;
}

.member-menu-dropdown
{
    position: absolute;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    min-width: 271px;
    background: #fff;
    padding: 20px;
    top: calc(100% + 20px);
    right: 0px;
    transition: 0.3s ease;
    border-top: 1px solid #777777;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 5px 40px rgba(82, 85, 90, 0.2);
    text-align: left;
}

.member-account:hover .member-menu-dropdown
{
    visibility: visible;
    opacity: 1;
    z-index: 99;
    top: 100%;
}

.member-menu-dropdown:before
{
    content: '';
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #777777;
    bottom: 100%;
    right: 30px;
}

.member-menu-dropdown ul
{
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.member-menu-dropdown ul > li > a
{
    display:inline-block;
    width: 100%;
    border-radius: 4px;
    padding: 10px;
    color: #777;
}

.member-menu-dropdown ul > li > a > span
{
    margin-right: 15px;
}

.member-menu-dropdown ul > li > a:hover
{
    background: #777;
    color: #FFF;
}
/***** END MEMBER MENU *****/

/***** BREADCRUMB *****/
.breadcrumb
{
    background: #777;
    padding: 0px;
    border-radius: 0px;
    margin-top: 10px;
}

.breadcrumb-box
{
    padding: 22px 0px;
    font-size: 30px;
    font-weight: bold;
    text-transform: capitalize;
    color: #FFF;
}
/***** END BREADCRUMB *****/

/***** DASHBOARD *****/
.dashboard-box
{
    text-align: center;
}

.dashboard-box > div
{
    margin-top: 30px;
}

.dashboard-summary .white-box, .dashboard-box .white-box
{
    height: 100%;
}

.dashboard-box a > img
{
    max-width: 70px;
    max-height: 70px;
}

.dashboard-box a > label
{
    font-weight: 500;
    margin-top: 7px;
    font-size: 17px;
    margin-bottom: 0px;
}

.dashboard-box a:hover > label
{
    color: #777;
}

.dashboard-box .counter-base-postion
{
    position: relative;
}

.dashboard-box .counter-circle
{
    background: red;
    width: 30px;
    line-height: 30px;
    border-radius: 100px;
    top: 0%;
    right: 5%;
    color: white;
    font-weight: bolder;
    position: absolute;
}

}
/***** END DASHBOARD *****/

/***** PROFILE *****/
h3.toggle
{
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    cursor: pointer;
}

h3.toggle.active
{
    margin-bottom: 20px;
}

h3.toggle > span
{
    flex-grow: 1;
    text-align: right;
    font-size: 16px;
    font-weight: bold;
}
/***** END PROFILE *****/

/***** ADDRESS BOOK *****/
.search-box
{
    position: relative;
}

.search-box .input-row input
{
    padding-right: 35px;
}

.btn-search
{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0px;
    background: none;
    padding: 0px;
}

.btn-search:hover
{
    background: none;
}

.btn-search img
{
    width: 20px;
}

.listing-cust .listing-col-1
{
    width:20%;
}

.listing-cust .listing-col-2
{
    width:20%;
}

.listing-cust .listing-col-4
{
    width:15%;
}
/***** END ADDRESS BOOK *****/

/***** ORDER *****/
.listing-order .listing-body > div
{
    padding: 5px 10px;
}

.listing-order .listing-col-2
{
    width: 20%;
}

.listing-order .listing-col-3
{
    width: 20%;
}

.product-name
{
    font-weight: bold;
}

.product-sku
{
    font-size: 14px;
    font-style: italic;
}

.product-image img
{
    max-width: 100px;
    margin-top: 5px;
}

.product-price s
{
    display: block;
    color: #777;
}

.product-qty-box
{
    display: flex;
    justify-content: right;
    margin-top: 3px;
    margin-bottom: 3px;
}

.product-qty-box > button
{
    background: #eee;
    border-radius: 0px;
    color: #777;
    margin: 0px;
    padding: 0px 15px;
    width: auto;
    border: 1px solid #ddd;
}

.product-qty-box > input
{
    width: 50px;
    border-radius: 0px;
    padding: 7px;
    text-align: center;
    border-left: 0px;
    border-right: 0px;
}

.product-qty-box > input:focus
{
    border-color: var(--bordercolor);
}

.product-stock-box
{
    font-size: 14px;
}

.product-more
{
    margin-top: 10px;
}

.order-total
{
    font-size: 22px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #000;
}

.listing-order-step2 .listing-body > div
{
    padding: 10px 0px;
}

.listing-order-step2 .listing-body:first-child > div
{
    padding-top: 0px;
}

.listing-order-step2 .product-qty-box
{
    justify-content: flex-start;
}

.listing-order-step2 .product-stock-box
{
    margin-top: 5px;
}

.order-view-summary-box
{
    border: 1px solid var(--bordercolor);
    border-radius: 5px;
    padding: 3px 15px;
}

.order-view
{
    margin: 0px;
    border-bottom: 1px solid var(--bordercolor);
}

.order-view:last-child
{
    border-bottom: 0px;
}

.order-view > div:first-child
{
    padding-left: 0px;
}

.order-view > div:last-child
{
    padding-right: 0px;
}

.order-view > div > span
{
    display: block;
    padding: 7px 0px;
}

.order-view > div:first-child > span
{
    font-weight: bold;
}

.order-view-product
{
    display: flex;
    border-bottom: 1px solid var(--bordercolor);
    padding: 7px 0px;
    margin: 0px;
}

.order-view-product:nth-child(2)
{
    padding-top: 0px;
}

.order-view-product:nth-child(2):last-child, .order-view-product:last-child
{
    border-bottom: 0px;
}

.order-view-product > div
{
    padding: 0px;
}

.order-view-product > div:first-child
{
    padding-left: 0px;
}

.order-view-product > div:last-child
{
    padding-right: 0px;
}

.order-view-product-sku
{
    font-size: 13px;
}

.order-transfer-box
{
    background: #eee;
    display: inline-block;
    padding: 15px 15px 0px 15px;
    width: 100%;
}

.order-transfer-amount
{
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.listing-order-all .listing-col-1
{
    width: 110px;
}

.listing-order-all .listing-col-2
{
    width: 120px;
}

.listing-order-all .listing-col-4
{
    width: 100px;
}

.listing-order-all .listing-col-5
{
    width: 100px;
}

.listing-order-all .listing-col-6
{
    width: 110px;
}

.listing-order-all-address
{
    color: #777;
}
/***** END ORDER *****/

/***** INVENTORY *****/
.listing-inventory .listing-col-1
{
    width: 120px;
}

.listing-inventory .listing-col-2
{
    width: 250px;
}

.listing-inventory .listing-col-4
{
    width: 120px;
}

.listing-inventory .listing-col-5
{
    width: 120px;
}

.listing-inventory-summary .white-box
{
    height: 100%;
}
/***** END INVENTORY *****/

/***** STATEMENTS *****/
.listing-statement-summary .white-box
{
    height: 100%;
}

.listing-payment .listing-col-1
{
    width: 120px;
}

.listing-payment .listing-col-3
{
    width: 150px;
}

.listing-payment .listing-col-4
{
    width: 150px;
}

.listing-payment .listing-col-5
{
    width: 170px;
}

.receipt-box
{
    background: #EEE;
    padding: 5px;
    font-size: 13px;
    margin: 3px 0px;
}
/***** END STATEMENTS *****/

/***** OTHERS *****/
.flex-vcenter
{
    align-items:center;
}

.mt-10
{
    margin-top: 10px;
}

.mt-20
{
    margin-top: 20px;
}

.mt-30
{
    margin-top: 30px;
}

.mb-30
{
    margin-bottom: 30px;
}

.hide
{
    display: none;
}

.hint-box
{
    background:#f7e07e;
    color: #000;
}

.hint-color
{
    color:#FF0000;
}

.hint-color:hover
{
    color: #999;
}
/***** END OTHERS *****/

@media only screen and (max-width:991px)  /* ipad */
{
    .listing-inventory .listing-col-2
    {
        width: 150px;
    }
}

@media only screen and (max-width:767px) /* iphone plus landscape */
{
    .listing-header
    {
        display: none;
    }
    
    .listing-body
    {
        display: inline-block;
        width: 100%;
        border:1px solid;
        border-color: var(--bordercolor);
        border-bottom: 0px;
        margin-bottom: 20px;
    }
    
    .listing-order-step2 .listing-body:nth-child(odd)
    {
        background: none;
    }
    
    .listing-body:nth-child(odd)
    {
        background: #f7e07e35;
    }
    
    .listing-body:last-child
    {
        margin-bottom: 0px;
    }
    
    .listing-body > div
    {
        display: flex;
        width: 100% !important;
        text-align: left !important;
    }
    
    .listing-body > div > span:first-child
    {
        display: block;
        font-weight: bold;
        border-right: 1px solid;
        border-color: var(--bordercolor);
        width: 110px;
        flex-shrink: 0;
    }
    
    .listing-body > div > span:last-child
    {
        flex-grow: 1;
    }
    
    .listing-body > div > span:first-child:last-child
    {
        border-right: 0px;
    }
    
    .listing-order .listing-body
    {
        display: flex;
    }
    
    .listing-order .listing-body > div
    {
        display: inline-block;
    }
    
    .listing-order .listing-body > div:first-child
    {
        width: auto !important;
        flex-grow: 1;
    }
    
    .listing-order .listing-body > div:nth-child(2)
    {
        display: none;
    }
    
    .listing-order .listing-body > div:last-child
    {
        width: 150px !important;
        flex-shrink: 0;
    }
    
    .product-image img
    {
        max-width: 80px;
    }
    
    .product-price
    {
        font-weight: 500;
        margin-top: 5px;
    }
    
    .listing-order-step2 .listing-body > div
    {
        display: inline-block;
        padding: 10px !important;
    }
    
    .listing-order-step2 .product-qty-box, .listing-order-step2 .product-stock-box
    {
        justify-content: flex-end;
        text-align: right;
    }
    
    .listing-inventory .listing-body > div > span:first-child, .listing-payment .listing-body > div > span:first-child
    {
        width:150px;
    }
    
    .mobile-hide
    {
        display: none !important;
    }
    
    header .member-menu > ul.active
    {
        position: fixed;
        background: #FFF;
        top: 0px;
        right: 0px;
        width: 250px;
        text-align: left;
        height: 100%;
        z-index: 999;
        box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
    }
    
    header .member-menu > ul.active > li
    {
        margin: 0px;
        height: 100%;
    }
    
    .member-name
    {
        display: none;
        margin-right: -250px;
    }
    
    .member-menu > ul.active .member-name
    {
        display: inline-block;
        padding: 22px 30px;
        text-align: center;
        width: 100%;
        background-color: #eff1f5;
        border-bottom: 1px solid #777;
        margin-right: 0px;
    }
    
    .member-menu-dropdown
    {
        top: 0px;
        display: none;
        visibility: visible;
        opacity: 1;
        z-index: 99999;
        transition: none;
        margin-right: -250px;
    }
    
    .member-menu > ul.active .member-menu-dropdown
    {
        position: relative;
        display: inline-block;
        min-width: unset;
        width: 100%;
        height: calc(100% - 114px);
        right: 0px;
        top: 0px;
        border-top: 0px;
        margin-right: 0px;
        overflow-y: auto;
    }
    
    .member-menu-dropdown::before
    {
        display: none;
    }
    
    .menu-icon
    {
        font-size: 28px;
        color: #000;
        font-weight: bold;
        cursor: pointer;
    }
    
    .menu-close
    {
        display: none !important;
        cursor: pointer;
    }
    
    .member-menu > ul.active .menu-icon
    {
        display: none !important;
    }
    
    .member-menu > ul.active .menu-close
    {
        position: absolute;
        display: inline-block !important;
        top: 7px;
        left: 7px;
        color: #000;
        font-size: 20px;
    }
    
    .mobile-footer-menu
    {
        position: fixed;
        bottom: 0px;
        background: #FFF;
        width: 100%;
        box-shadow: 0 -2px 5px -2px #333;
        text-align: center;
        font-size: 12px;
        z-index: 999;
    }
    
    .mobile-footer-menu > .row
    {
        height: 100%;
        margin: 0px;
    }
    
    .mobile-footer-menu > .row > div
    {
        padding: 0px;
    }
    
    .mobile-footer-menu a
    {
        display: inline-block;
        width: 100%;
        padding: 10px 5px;;
    }
    
    .mobile-footer-menu a > span
    {
        display: block;
        margin-bottom: 3px;
    }
    
    footer .go-top
    {
        bottom: 60px;
    }
}

@media only screen and (max-width:576px) /* iphone plus */
{
    body
    {
        font-size: 14px;
    }
    
    header
    {
        padding: 10px 0px;
    }

    header .logo img
    {
        max-width: 150px;
    }
    
    .white-box
    {
        padding: 20px;
    }
    
    .login-box h3,
    .login-box form
    {
        padding:25px 0px;
    }
    
    .login-box h3
    {
        padding-top: 15px;
    }
    
    .member-name
    {
        padding:10px 0px;
    }
    
    .breadcrumb
    {
        margin-top: 5px;
    }
    
    .breadcrumb-box
    {
        padding: 10px 0px;
        font-size: 24px;
    }
    
    .content-box
    {
        margin-top: 30px;
        margin-bottom: 40px;
    }
    
    .dashboard-summary > div:first-child
    {
        margin-bottom: 20px;
    }
    
    .product-sku, .product-stock-box
    {
        font-size: 13px;
    }
    
    .order-view-product > div:last-child
    {
        text-align: right;
    }
    
    .order-view-product-qty
    {
        min-width: unset;
    }
    
    .listing-inventory .listing-body > div > span:first-child
    {
        width:110px;
    }
    
    .listing-inventory-summary > div:first-child
    {
        margin-bottom: 20px;
    }
    
    .listing-inventory-summary > div:first-child:last-child
    {
        margin-bottom: 0px;
    }
    
    .listing-statement-summary > div:first-child
    {
        /*margin-top: 20px;
        order: 3;*/
    }
}

@media only screen and (max-width:400px) /* normal iphone */
{
}

@media only screen and (min-width:576px) and (max-width:767px) /* tablet */
{
    .v-default {
        display: none;
    }
}

@media only screen and (max-width:575px), (min-width:768px) /* tablet */
{
    .v-tablet {
        display: none;
    }
}