.pre-button
{
/*visibility:hidden;*/
display:none!important;

}
.sd_notifyme
{
width:100%;
margin-top: 15px;	
}

.sd_preorder
{
	/*background:red;
	color:white;
	border:2px solid transparent;
	padding:8px 25px;
	font-family:inherit;
	outline: none!important;
	font-size: 15px;
	overflow:inherit!important;*/
}

#submit_notify
{
	background:red;
	color:white;
	border:none;
	padding:10px 20px;
	font-family:inherit;
	margin-left: 10px;
	outline: none!important;
}

input#notify_email {
padding: 12px 18px!important;
outline: none!important;
border: 1px solid #e8e9eb;
/*width: 260px;*/
width: 60%;
float:left;
margin-bottom: 0;
}
/**
 * Tooltip Styles
 */

/* Base styles for the element that has a tooltip */
.sd_preorder[data-tooltip],
.sd_preorder.tooltip {
  position: relative;
  cursor: pointer;
}

/* Base styles for the entire tooltip */
.sd_preorder[data-tooltip]:before,
.sd_preorder[data-tooltip]:after,
.sd_preorder.tooltip:before,
.sd_preorder.tooltip:after {
  position: absolute;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: 
      opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    -moz-transition:    
        opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition:         
        opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform:    translate3d(0, 0, 0);
  transform:         translate3d(0, 0, 0);
  pointer-events: none;
}

/* Show the entire tooltip on hover and focus */
.sd_preorder[data-tooltip]:hover:before,
.sd_preorder[data-tooltip]:hover:after,
.sd_preorder[data-tooltip]:focus:before,
.sd_preorder[data-tooltip]:focus:after,
.sd_preorder.tooltip:hover:before,
.sd_preorder.tooltip:hover:after,
.sd_preorder.tooltip:focus:before,
.sd_preorder.tooltip:focus:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* Base styles for the tooltip's directional arrow */
.sd_preorder.tooltip:before,
.sd_preorder[data-tooltip]:before {
  z-index: 1001;
  border: 8px solid transparent;
  background: transparent;
  content: "";
}

/* Base styles for the tooltip's content area */
.sd_preorder.tooltip:after,
.sd_preorder[data-tooltip]:after {
  z-index: 1000;
  padding: 8px;
  width: 160px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  font-size: 14px;
  line-height: 1.2;
}

/* Directions */

/* Top (default) */
.sd_preorder[data-tooltip]:before,
.sd_preorder[data-tooltip]:after,
.sd_preorder.tooltip:before,
.sd_preorder.tooltip:after,
.sd_preorder.tooltip-top:before,
.sd_preorder.tooltip-top:after {
  bottom: 120%;
  left: 50%;
}

.sd_preorder[data-tooltip]:before,
.sd_preorder.tooltip:before,
.sd_preorder.tooltip-top:before {
  margin-left: -6px;
  margin-bottom: -16px;
  border-top-color: #000;
  border-top-color: hsla(0, 0%, 20%, 0.9);
}

/* Horizontally align top/bottom tooltips */
.sd_preorder[data-tooltip]:after,
.sd_preorder.tooltip:after,
.sd_preorder.tooltip-top:after {
  margin-left: -80px;
}

.sd_preorder[data-tooltip]:hover:before,
.sd_preorder[data-tooltip]:hover:after,
.sd_preorder[data-tooltip]:focus:before,
.sd_preorder[data-tooltip]:focus:after,
.sd_preorder.tooltip:hover:before,
.sd_preorder.tooltip:hover:after,
.sd_preorder.tooltip:focus:before,
.sd_preorder.tooltip:focus:after,
.sd_preorder.tooltip-top:hover:before,
.sd_preorder.tooltip-top:hover:after,
.sd_preorder.tooltip-top:focus:before,
.sd_preorder.tooltip-top:focus:after {
  -webkit-transform: translateY(-12px);
  -moz-transform:    translateY(-12px);
  transform:         translateY(-12px); 
}

/* Left */
.sd_preorder.tooltip-left:before,
.sd_preorder.tooltip-left:after {
  right: 110%;
  bottom: 50%;
  left: auto;
}

.sd_preorder.tooltip-left:before {
  margin-left: 0;
  margin-right: -16px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-left-color: #000;
  border-left-color: hsla(0, 0%, 20%, 0.9);
}

.sd_preorder.tooltip-left:hover:before,
.sd_preorder.tooltip-left:hover:after,
.sd_preorder.tooltip-left:focus:before,
.sd_preorder.tooltip-left:focus:after {
  -webkit-transform: translateX(-12px);
  -moz-transform:    translateX(-12px);
  transform:         translateX(-12px); 
}

/* Bottom */
.sd_preorder.tooltip-bottom:before,
.sd_preorder.tooltip-bottom:after {
  top: 125%;
  bottom: auto;
  left: 50%;
}

.sd_preorder.tooltip-bottom:before {
  margin-top: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-bottom-color: #000;
  border-bottom-color: hsla(0, 0%, 20%, 0.9);
}

.sd_preorder.tooltip-bottom:hover:before,
.sd_preorder.tooltip-bottom:hover:after,
.sd_preorder.tooltip-bottom:focus:before,
.sd_preorder.tooltip-bottom:focus:after {
  -webkit-transform: translateY(12px);
  -moz-transform:    translateY(12px);
  transform:         translateY(12px); 
}

/* Right */
.sd_preorder.tooltip-right:before,
.sd_preorder.tooltip-right:after {
  bottom: 50%;
  left: 110%;
}

.sd_preorder.tooltip-right:before {
  margin-bottom: 0;
  margin-left: -16px;
  border-top-color: transparent;
  border-right-color: #000;
  border-right-color: hsla(0, 0%, 20%, 0.9);
}

.sd_preorder.tooltip-right:hover:before,
.sd_preorder.tooltip-right:hover:after,
.sd_preorder.tooltip-right:focus:before,
.sd_preorder.tooltip-right:focus:after {
  -webkit-transform: translateX(12px);
  -moz-transform:    translateX(12px);
  transform:         translateX(12px); 
}

/* Move directional arrows down a bit for left/right tooltips */
.sd_preorder.tooltip-left:before,
.sd_preorder.tooltip-right:before {
  top: 13px;
}

/* Vertically center tooltip content for left/right tooltips */
.sd_preorder.tooltip-left:after,
.sd_preorder.tooltip-right:after {
  margin-left: 0;
  margin-bottom: -16px;
}


span.sd_premessage {
    width: 100%;
    clear: both;
    display: inline-block;
   /* position: absolute;*/
   position:relative;
    left: 5px;
    margin-top: 6px;
    padding-bottom: 26px;
    color: #000;
}

.sd_product-index {
    margin: 15px 0px;
}
.sd_pop_notify{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9999999;
	display:none;
}

.sd_emailsection {
    width: 400px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 0 25px rgba(0,0,0,0.2);
    z-index: 999999999999;
    padding: 50px 20px;
    min-height: 200px;
	position: relative;
	margin-top: 80px;
}

.sd_emailsection input#notify_email {
    width: 100%;
	float:none;
}

.sd_emailsection #submit_notify {
    width: 100%;
    margin-left: 0!important;
    margin-top: 20px;
}

.sd_epopclose
{
	background:url(../images/closeimg.png);
	width:11px;
	height:11px;
	background-size:100% 100%;
	position: absolute;
	right:10px;
	top:10px;
	cursor: pointer;
}
/*.stick_body
{
	overflow:hidden!important;
}*/

.sd_emailsection h3 {
    color: #444;
    font-weight: 600;
    font-size: 24px;
    line-height: 22px;
	font-family: inherit;
}
.sd_emailsection .sd_error
{
	color: #FF1818;
    text-align: center;
    position: relative;
    top: 8px;
    font-family: inherit;
}
.sd_emailsection .sd_response
{
    color: green;
    text-align: center;
    position: relative;
    top: 8px;
    font-family: inherit;
}
.sd_messagebelow
{
    font-size: 12px;
    line-height: 17px;
    color: #444;
    font-weight: normal;
    font-family: inherit;
    padding: 20px 0 0;
}
.sd_toggle_notify .sd_response
{
	color: green;
    text-align: left;
    position: relative;
    top: 8px;
    font-family: inherit;
}

.sd_toggle_notify .sd_error
{
	color: #FF1818;
    text-align: left;
    position: relative;
    top: 8px;
    font-family: inherit;
}

/* for qnapdirect store */

.product-view .product-options-bottom .add-to-cart-box {
    overflow: inherit;
}
.product-options-bottom .sd_preorder {

    padding: 10px 39px;
	white-space: inherit !important;
   
}

/* end */
div#sd_partialpay {
    margin-top: 25px;
	float: left;
	width: 100%;
}
#sd_partialpay table {
    width: 100%;
	background: #fff;
	box-shadow: 0px 0px 2px #b7b4b4;
}
#sd_partialpay table td {
    border: 1px dotted #eae4e4;
    padding: 7px;
	text-align: center;
	padding: 8px;
	font-size: 13px;
	color: #575558;
}
#sd_partialpay table th {
    border-bottom-width: 2px;
	font-weight: 600;
white-space: nowrap;
font-size: 14px;
color: #212850;
padding: 14px 8px;
border: 1px dotted #eae4e4;
text-align: center;
}




@media (max-width: 640px) {

.sd_emailsection {
    width: 94%!important;
    
}
}


/*Count DOwn*/

.sd_main_counter h4 {
    color: #706f84;
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0px;
	line-height: 26px;
	margin-bottom: 20px;
	text-align:left !important;
}

.sd_counter1 .big-sale ul li {
    font-family: 'Fjalla One', sans-serif;
    display: inline;
    color: #706f84;
    font-size: 27px;
    float: left;
    text-align: center;
    box-shadow: 0px 7px 12px rgba(0,0,0,0.16);
    margin-right: 10px;
    border-radius: 15px;
    padding: 10px 0px;
    width: 92px;
    height: auto;
    font-weight: 600;
	margin-top:0;
}
.big-sale ul li span {
    font-family: 'Open Sans', sans-serif;
    float: left;
    color: #706f84;
    font-size: 10px;
    text-transform: uppercase;
    width: 100%;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.sd_contdown_container {
    float: left;
    max-width: 500px;
	width:100%;
    text-align: center;
	margin-bottom: 30px;
	margin-top: 30px;
}
.big-sale ul li:last-child {
    margin-right: 0px;
}
/* sd_contdown_container */
/* sd_contdown_container-2 */
.sd_main_counter.sd_counter2 h4 {
    color: #706f84;
    font-size: 20px!important;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    padding: 25px 0px 19px 45px !important;
	width: 100%;
}
.sd_counter2 .big-sale ul li {
    font-family: 'Fjalla One', sans-serif;
    display: inline;
    color: #fff;
    font-size: 22px;
    float: left;
    text-align: center;
    box-shadow: 0px 7px 12px rgba(0,0,0,0.16);
    margin-right: 8px;
    border-radius: 16px;
    padding: 12px 0px 12px;
    width: 85px;
    height: auto;
    font-weight: 600;
}
.sd_counter2 .big-sale ul li:first-child {
   background-image: -moz-linear-gradient( 90deg, rgb(255,10,142) 0%, rgb(255,20,27) 100%);
  background-image: -webkit-linear-gradient( 90deg, rgb(255,10,142) 0%, rgb(255,20,27) 100%);
  background-image: -ms-linear-gradient( 90deg, rgb(255,10,142) 0%, rgb(255,20,27) 100%);
  box-shadow: 0px 7px 12px 0px rgba(0, 0, 0, 0.16);
}
.sd_counter2 .big-sale ul li:last-child {
  background-image: -moz-linear-gradient( 90deg, rgb(255,192,0) 0%, rgb(252,112,0) 100%);
  background-image: -webkit-linear-gradient( 90deg, rgb(255,192,0) 0%, rgb(252,112,0) 100%);
  background-image: -ms-linear-gradient( 90deg, rgb(255,192,0) 0%, rgb(252,112,0) 100%);
  box-shadow: 0px 7px 12px 0px rgba(0, 0, 0, 0.16);
}
.sd_counter2 .big-sale ul li:nth-child(2) {
  background-image: -moz-linear-gradient( 90deg, rgb(0,198,255) 0%, rgb(0,92,178) 100%);
  background-image: -webkit-linear-gradient( 90deg, rgb(0,198,255) 0%, rgb(0,92,178) 100%);
  background-image: -ms-linear-gradient( 90deg, rgb(0,198,255) 0%, rgb(0,92,178) 100%);
  box-shadow: 0px 7px 12px 0px rgba(0, 0, 0, 0.16);
}
.sd_counter2 .big-sale ul li:nth-child(3) {
  background-image: -moz-linear-gradient( 90deg, rgb(255,10,142) 0%, rgb(255,20,27) 100%);
  background-image: -webkit-linear-gradient( 90deg, rgb(255,10,142) 0%, rgb(255,20,27) 100%);
  background-image: -ms-linear-gradient( 90deg, rgb(255,10,142) 0%, rgb(255,20,27) 100%);
  box-shadow: 0px 7px 12px 0px rgba(0, 0, 0, 0.16);
}
.sd_counter2 .big-sale ul li span {
    font-family: 'Open Sans', sans-serif;
    float: left;
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    width: 100%;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.sd_contdown_container.sd_counter2 {
    float: left;
    width: 100%;
    text-align: left;
    /*background: url(../images/bg-con-2.png);*/
    background-repeat: no-repeat;
    /*padding: 60px 0px 30px 75px;*/
	padding:0px;
    position: relative;
   /* height: 300px;*/
	background-size: 100% 100%;
}
.big-sale-2 ul li:last-child {
    margin-right: 0px;
}
img.time {
    position: absolute;
    /*left: 72px;
    top: 24px;*/
    left: 0;
    top: 46px;
    width: 40px;
}
.sd_main_counter {
    margin-top: 20px;
	position:relative;
	display: inline-block;
}

.sd_counter3 .big-sale ul li {
    font-family: 'Fjalla One', sans-serif;
    display: inline;
    color: #fff;
    font-size: 28px;
    float: left;
    text-align: center;
    box-shadow: 0px 7px 12px rgba(0,0,0,0.16);
    margin-right: 14px;
    border-radius: 15px;
    padding: 10px 0px;
    width: 90px;
    height: auto;
    font-weight: 600;
	margin-top:0;
	background:#000;
	
}
.sd_counter3 .big-sale ul li span {
    color: #e8cb6a;
    font-size: 12px;

}

span.sd_partial_msg {
    display: block;
    clear: both;
    padding: 12px 2px;
    font-size: 12px;
    font-family: inherit;
    color: #000;
	width:100%;
}

img.sd_check {
    margin-right: 6px;
    margin-top: 0px;
    position: relative;
    top: 4px;
    width: 16px!important;
    height: 16px!important;
	vertical-align: inherit;
}



@media (max-width: 690px) {


.sd_counter3 .big-sale ul li {
   
    font-size: 16px;
    float: left;
    padding: 10px 0px;
    width: 62px;
	margin-right: 8px;
	margin-bottom: 5px;
    border-radius: 10px;
}
.big-sale ul li span {
   
    font-size: 9px;
}
.sd_counter3 .big-sale ul li span {
    font-size: 9px;
}
.sd_main_counter h4 {
  
    font-size: 16px;
}
.sd_main_counter.sd_counter2 h4 {
    font-size: 16px!important;
    padding: 25px 0px 19px 45px !important;
	width: 100%;
}
.sd_counter2 .big-sale ul li {
    font-size: 16px;
    margin-right: 8px;
    border-radius: 10px;
    padding: 10px 0px 10px;
    width: 60px;
    height: auto;
}

.sd_contdown_container.sd_counter2 {
    padding: 58px 0px 30px 28px;
    height: 300px;
}
img.time {
    left: 42px;
    top: 14px;
}

.sd_counter2 .big-sale ul li span {
    font-size: 10px;
}
.sd_counter1 .big-sale ul li {
    font-size: 16px;
    margin-right: 8px;
    border-radius: 12px;
    padding: 10px 0px;
    width: 64px;
    height: auto;
}

}


/*** new css ***/
input#sd_coupon_input {
    margin-right: 10px;
    width: 180px;
    float: left;
    background: transparent;
    border: 2px dashed #e1dce4;
    outline: 0 none;
	padding: 5px 8px;
}
button#sd_coupon_submit {
    padding: 6px 20px;
    border: none;
}
span.sd_preorder_message {
    float: left;
    width: 100%;
}
.sd_coupon_text{
	cursor: pointer;
	font-size: 14px;
font-weight: 500;
color: #329c21;
}
.sd_coupon_box {
    margin-top: 10px;
}
#sd_partialpay input#sd_coupon_input {
    float: left;
    display: inline-block;
    margin-right: 0px;
	margin-bottom: 5px;
	padding: 5px;
	border: 1px dashed #ccc;
	font-size: 13px;
}
#sd_partialpay button#sd_coupon_submit {
    padding: 2px 15px;
}
#sd_partialpay .sd_preorder_message span{
	position: absolute;
    left: 0;
    top: 0px;
    bottom: -1px;
    background: rgba(0,0,0,1);
    color: #fff;
    right: 0;
    text-align: center;
    padding: 8px;
}
#sd_partialpay .sd_coupon_box{
	position: relative;
}
/*** new css 18 mar ***/
.sd_coupon_list {
   position: fixed;
    top: 0;
    right: -100%;
    z-index: 999999999;
    background: #f2f2f2;
    height: 100vh;
    padding: 15px;
    width: 20%;
    transition: all 800ms ease-in 0s;
	overflow-y: scroll;
}
.sd_sidebaractive{
	right: 0% !Important;
}
.sd_bodyactive{
	background: rgba(0,0,0,0.6);
    position: fixed;
    width: 100%;
    height: 100%;
    float: left;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
}
.sd_coupon_list ul li {
    float: left;
    width: 100%;
    border: 1px dashed #ccc;
    margin-bottom: 18px;
    padding: 10px;
    text-transform: uppercase;
	cursor: pointer;
	font-size: 15px;
	transition: all 0.2s ease-in 0s;
	text-align: center;
	background: #fff;
	box-shadow: 0 6px 8px #d4d5d9;
	border-radius: 7px;
	font-family: 'Arial';
}
.sd_coupon_list ul li:hover {
	border-color: #0b0b98 !important;
	background: #00b8ff29 !important;
}
span.mydiscount {
    float: left;
    width: 100%;
	font-size: 12px;
    margin: 8px 0 0;
    text-transform: uppercase;
}
.sd_coupon_list ul li label {
    cursor: pointer;
    margin: 0 auto;
    width: 100%;
    max-width: 150px;
    padding: 5px;
	border-radius: 4px;
	color: #000;
	transition: all 0.2s ease-in 0s;
	font-family: 'Arial';
}
.sd_coupon_list ul li:hover label,
li.sd_coupon_active label{
    background: #0b0b98;
    color: #fff !important;
}

li.sd_coupon_active {
    border-color: #0b0b98 !important;
	background: #00b8ff29 !important;
    /*box-shadow: 2px 2px 5px #329c21ba;*/
}
.sd_coupon_list h4 {
    font-family: 'Arial';
    text-transform: uppercase;
}
#sd_partialpay h1 {
    font-size: 22px;
    text-transform: uppercase;
	color: red;
	font-family: inherit;
	float:left;
}


/*** new css cart page ***/
.sd_partial_checkout .sd_coupon_box {
    display: none;
}
.sd_partial_checkout span.sd_coupon_text {
    font-size: 13px;
}
.sd_partial_checkout input#sd_coupon_input {
    background: none;
    border: none;
}
.sd_correct_status img {
    width: 12px;
    height: 12px;
}
.sd_correct_status {
    font-size: 11px;
    float: right;
    margin-top: 5px;
    margin-left: 9px;
    color: green;
}
.sd_blinking{
    animation:sdblinkingText 1s infinite;
}
@keyframes sdblinkingText{
    0%{     color: green;    }
    49%{    color: transparent; }
    50%{    color: transparent; }
    99%{    color:transparent;  }
    100%{   color: green;    }
}
.sd_partialpayment {
    color: #fff !important;
	padding: 8px 20px;
	line-height: line-height: 1.42;
}
/*** new css ***/
.sd_part_checkout {
    display: inline-block;
    width: 100%;
}
.sd_part_checkout .sd_partialpayment {
    margin: 0 !important;
}
span.sd_smallsize {
    font-size: 10px;
}

.sd_hide_check {
    display: none !important;
}

.sd_pre_badge.searchresults {
    left: 0px!important;
    right: 0px;
    display: inline-table;
	max-width: 150px;
}

.sd_pre_badge {
	max-width: 150px;
	text-align:center;
	font-family:inherit;
}

.sd_pre_badge.product {
    max-width: 150px;
}
.sd_single_badge{
position:relative;
}

button.sd_preorder {
    /*border-radius: 0!important;*/
}

/*** new css ***/
.sd_partial_carttotal {
    padding: 10px;
    text-align: center;
    background: #dfe3e8;
    color: #454f5b;
    text-transform: uppercase;
    box-shadow: 0 1px 3px #ccc;
	font-weight: 600;
	box-shadow: 0 1px 4px #00000042;
	margin: 20px 0 40px;
	font-family: inherit;
	    float: left;
    width: 100%;
}
span.sd_inclu {
    text-transform: initial;
    font-size: 12px;
}

/**** new css for add radio button ***/
.sd_payment_type [type="radio"]:checked,
.sd_payment_type [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.sd_payment_type [type="radio"]:checked + label,
.sd_payment_type [type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
.sd_payment_type [type="radio"]:checked + label:before,
.sd_payment_type [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
.sd_payment_type [type="radio"]:checked + label:after,
.sd_payment_type [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #aaa;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.sd_payment_type [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.sd_payment_type [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.sd_payment_type {
    float: left;
    width: 100%;
    margin: 10px 0;
}
.sd_payment_type label {
    float: left;
    width: 100%;
}
.sd_payment_type span {
    float: left;
    width: 45%;
    margin: 10px 0 0;
}


.sd_bottom_btn {
    position: fixed;
    z-index: 99999999999;
    bottom: 30px;
    left: 2%;
   /* background: red;
    color: #fff;
    padding: 10px;
    border-radius: 100%;
    width: 70px;*/
    text-align: center;
    width: 9%;
}
.sd_bottom_btn a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-family: inherit;
	margin: 0 auto;
}
.sd_partial_checkout span.sd_coupon_text {
    font-size: 13px;
    margin-top: 10px;
    float: right;
	color: #329c21;
}


.sd_rainbow-button {
	width: 70px;
    height: 70px;
    background-image: linear-gradient(90deg, #00C0FF 0%, #FFCF00 49%, #FC4F4F 80%, #00C0FF 100%);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: bold;
	animation:sd_slidebg 2s linear infinite;
}
.sd_rainbow-button:after {
 content: attr(alt);
    width: 60px;
    height: 60px;
    background: #fff;
    /* display: inline-block; */
    /* align-items: center; */
    text-align: center;
    border-radius: 100%;
	line-height: 17px;
	padding-top: 13px;
	color: red;
	
}
.sd_part_text {
    font-size: 12px;
    margin-top: 10px;
	color: #524b4b;
	line-height: 14px;
	font-weight: 600;
}

@keyframes sd_slidebg {
  to {
    background-position:20vw;
  }
}
#paybal{
	background: red;
	color: #fff!important;
	font-weight: 600!important;
	border: none;
    white-space: nowrap;
    border-radius: 5px;
}
#sd_partialpay table tbody tr:hover {
    background: #a5a2a221;
    transition: all 0.3s ease-in 0s;
}

/*** new css bulk pay ***/
#bulk_pay, #bulk_order_pay{
	float: right;
	background: red;
    color: #fff!important;
    font-weight: 600!important;
    border: none;
    white-space: nowrap;
    border-radius: 5px;
	cursor: pointer;
}
.bulk_footer {
    float: left;
    width: 100%;
    text-align: right;
}
.bulk_total span:nth-child(2) {
    margin-left: 30px;
	font-weight: 600;
}
button#bulk_order_pay {
    margin-top: 10px;
}
.bulk_popup {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 99999999999;
    display: none;
}
.bulk_layer {
    opacity: 0.85;
    position: absolute;
    background-color: rgb(24, 39, 56);
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    transition: opacity 0.3s ease 0s;
    cursor: pointer;
}
.bulk_inner {
    /*width: 100%;
    height: 100%;
    overflow-y: scroll;
    z-index: 99999999;
    position: relative;*/
}
.bulk_template_inner {
   opacity: 1;
   width: 50%;
   min-height: 400px;
   position: absolute;
   margin: 0 auto;
   margin-bottom: 0px;
   background: rgb(244, 246, 248);
   transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
   border-radius: 3px;
   padding: 20px;
   margin-bottom: 18px;
   left: 0;
   right: 0;
   position: absolute;
   top: 30%;
   left: 50%;
   -webkit-transform: translate(-50%,-50%);
   -moz-transform: translate(-50%,-50%);
   -ms-transform: translate(-50%,-50%);
   transform: translate(-50%,-50%);
}
.bulk_cross{
    position: absolute;
    top: 0px;
    right: -50px;
    display: block;
    width: 40px;
    height: 40px;
    transition: transform 0.1s;
    -webkit-transition: transform 0.1s;
    -moz-transition: transform 0.1s;
    background: #fff;
    border-radius: 100%;
    cursor: pointer;
}
.bulk_template_inner table tbody {
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
    display: block;
    max-height: 200px;
    min-height: 200px;
}
.bulk_template_inner table tbody tr, .bulk_template_inner table thead {
    display: table;
    table-layout: fixed;
    width: 100%;
}
#sd_partialpay input#bulk_code {
    display: inline-block;
    margin-right: 0px;
	margin-bottom: 5px;
	padding: 4px;
	border: 1px dashed #ccc;
	font-size: 13px;
}
#sd_partialpay button#code_submit {
    padding: 2px 15px !important;
	background: #000000;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: normal;
	border: none;
    margin-left: 5px;
}
.sd_row_first {
    float: left;
    width: 63%;
    text-align: left;
}
.sd_row_second {
    float: right;
}
.bulk_total {
    float: left;
    width: 100%;
}
span.coupon_message {
    float: left;
    width: 100%;
}
.bulk_total .sd_row_first span:nth-child(2) {
    margin-left: 7px;
}
#sd_partialpay table th,#sd_partialpay table td {
    background: #fff;

}
.sd_loadergif {
 border: 8px solid #f3f3f3; /* Light grey */
 border-top: 8px solid #3498db; /* Blue */
 border-radius: 50%;
 width: 40px;
 height: 40px;
 animation: sd_spin 2s linear infinite;
}

@keyframes sd_spin {
 0% { transform: rotate(0deg); }
 100% { transform: rotate(360deg); }
}
@media (min-width:768px) and (max-width:1260px){
.bulk_template_inner {
    -webkit-transform: translate(-50%,-150%);
    -moz-transform: translate(-50%,-150%);
    -ms-transform: translate(-50%,-150%);
    transform: translate(-50%,150%);
	width: 82%;
}
.bulk_cross {
    right: -19px;
}
.payment-container {
    overflow-x: scroll;
    float: left;
    width: 100%;
}
}
/* Landscape */
@media only screen 
    and (min-width : 340px) 
    and (max-height: 680px) {
.bulk_template_inner {
    width: 89%;
    -webkit-transform: translate(-50%,-32%);
    -moz-transform: translate(-50%,-32%);
    -ms-transform: translate(-50%,-32%);
    transform: translate(-50%,-40%);
    max-height: 85px;
    min-height: 336px;
}
.bulk_template_inner table tbody {
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
    display: block;
    max-height: 90px;
    min-height: 90px;
}
	}
@media (min-width:300px) and (max-width:767px){
.bulk_template_inner {
	width: 89%;
    -webkit-transform: translate(-50%,-32%);
    -moz-transform: translate(-50%,-32%);
    -ms-transform: translate(-50%,-32%);
    transform: translate(-50%,-32%);
}
.bulk_cross {
    top: 0px;
    right: -14px;
}
.sd_row_first {
    width: 100%;
    margin-top: 15px;
	text-align: center;
}
.bulk_total span:nth-child(2) {
    margin-left: 12px;
}
.payment-container,.bulkpop-container {
    overflow-x: scroll;
    float: left;
    width: 100%;
}
.bulkpop-container table {
    min-width: 562px;
}
.sd_row_first span {

    font-size: 14px;
    text-align: left;
}
#sd_partialpay input#bulk_code {
    width: 36%;
}
#sd_partialpay button#code_submit {
    padding: 2px 8px !important;
}
table {
    margin-bottom: 10.5px;
}
#bulk_order_pay {
    float: none;
}
.bulk_footer {
    float: left;
    width: 100%;
    text-align: center;
}
.bulk_checkout {
    float: left;
    width: 100%;
    text-align: center;
}
.sd_bottom_btn {
    z-index: 9999999;
}
.sd_row_second {
    float: right;
    width: 100%;
}

}

@media (min-width:320px) and (max-width:1500px){
.sd_partial_carttotal {
    width: 80%;
    margin: 15px auto 0;
    float: none;
}	
}

@media (min-width:320px) and (max-width:480px){
/*** responsive ****/
.sd_payment_type label {
    text-align: left;
	padding-left: 30px;
}
.sd_payment_type span {
    width: 42%;
    text-align: center;
    margin: 15px auto 0;
    float: none;
    display: inline-block;
}
.sd_partialpayment{
    margin-left: 0px;
    width: 100%;
    float: left;
    text-align: center;
    padding: 20px;
}	
}
@media (min-width:481px) and (max-width:770px){
.sd_payment_type label {
    text-align: center;
}
.sd_payment_type span {
    width: 35%;
    text-align: center;
    margin: 15px auto 0;
    float: none;
    display: inline-block;
}
.sd_partialpayment{
    margin-left: 0px;
    float: right;
    text-align: center;
    padding: 20px;
}		
}


/*** double button css ***/
form[action="/cart/add"] span.sd_partial_msg:nth-of-type(2), form[action="/cart/add"] .sd_payment_type:nth-of-type(2) {
    display: none;
}

/**** new animation css ****/
.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
/* Shrink */
.hvr-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-shrink:hover, .hvr-shrink:focus, .hvr-shrink:active {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
/* Pulse */
@-webkit-keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
.hvr-pulse {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-pulse:hover, .hvr-pulse:focus, .hvr-pulse:active {
  -webkit-animation-name: hvr-pulse;
  animation-name: hvr-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
/* Push */
@-webkit-keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.hvr-push {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-push:hover, .hvr-push:focus, .hvr-push:active {
  -webkit-animation-name: hvr-push;
  animation-name: hvr-push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Bob */
@-webkit-keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@-webkit-keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
.hvr-bob {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-bob:hover, .hvr-bob:focus, .hvr-bob:active {
  -webkit-animation-name: hvr-bob-float, hvr-bob;
  animation-name: hvr-bob-float, hvr-bob;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}
/* Skew */
.hvr-skew {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-skew:hover, .hvr-skew:focus, .hvr-skew:active {
  -webkit-transform: skew(-10deg);
  transform: skew(-10deg);
}
/* Wobble Top */
@-webkit-keyframes hvr-wobble-top {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
@keyframes hvr-wobble-top {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
.hvr-wobble-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.hvr-wobble-top:hover, .hvr-wobble-top:focus, .hvr-wobble-top:active {
  -webkit-animation-name: hvr-wobble-top;
  animation-name: hvr-wobble-top;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Buzz */
@-webkit-keyframes hvr-buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}
@keyframes hvr-buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}
.hvr-buzz {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-buzz:hover, .hvr-buzz:focus, .hvr-buzz:active {
  -webkit-animation-name: hvr-buzz;
  animation-name: hvr-buzz;
  -webkit-animation-duration: 0.15s;
  animation-duration: 0.15s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
/* Shadow */
.hvr-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
}
.hvr-shadow:hover, .hvr-shadow:focus, .hvr-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}
/* Grow Shadow */
.hvr-grow-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform;
}
.hvr-grow-shadow:hover, .hvr-grow-shadow:focus, .hvr-grow-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
/* Float Shadow */
.hvr-float-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-float-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}
.hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  /* move the element up by 5px */
}
.hvr-float-shadow:hover:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:active:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}
/* Glow */
.hvr-glow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
}
.hvr-glow:hover, .hvr-glow:focus, .hvr-glow:active {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
/* Shadow Radial */
.hvr-shadow-radial {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-shadow-radial:before, .hvr-shadow-radial:after {
  pointer-events: none;
  position: absolute;
  content: '';
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-repeat: no-repeat;
  height: 5px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.hvr-shadow-radial:before {
  bottom: 100%;
  background: -webkit-radial-gradient(50% 150%, ellipse, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at 50% 150%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
}
.hvr-shadow-radial:after {
  top: 100%;
  background: -webkit-radial-gradient(50% -50%, ellipse, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at 50% -50%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
}
.hvr-shadow-radial:hover:before, .hvr-shadow-radial:focus:before, .hvr-shadow-radial:active:before, .hvr-shadow-radial:hover:after, .hvr-shadow-radial:focus:after, .hvr-shadow-radial:active:after {
  opacity: 1;
}
/* Box Shadow Outset */
.hvr-box-shadow-outset {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
}
.hvr-box-shadow-outset:hover, .hvr-box-shadow-outset:focus, .hvr-box-shadow-outset:active {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

/* Box Shadow Inset */
.hvr-box-shadow-inset {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}
.hvr-box-shadow-inset:hover, .hvr-box-shadow-inset:focus, .hvr-box-shadow-inset:active {
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}
/* Fade */
.hvr-fade {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  overflow: hidden;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
}
.hvr-fade:hover, .hvr-fade:focus, .hvr-fade:active {
  color: white;
}

/* neww */

.bottom_desc:before, .bottom_desc:after{
display:none!important;
}

.sd_desc_always
{
	padding: 10px 20px;
    text-align: center;
	width: auto;
    display: block;
}

/*** new css limit preorder ***/
.sd_qty_errormsg {
    position: relative;
    float: left;
    width: 100%;
	margin: 15px 0;
	background: #dfe3e8;
    box-shadow: 0 1px 4px #00000042;
    padding: 10px;
}
.sd_qty_errormsg ul {
    float: left;
    width: 100%;
}
.sd_qty_errormsg li {
    color: red;
}

.sd_preorder[disabled="disabled"] {
    pointer-events: none;
}