@import url(https://fonts.googleapis.com/css?family=Open+Sans);
#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #menu-button {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#cssmenu:after,
#cssmenu > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
#cssmenu #menu-button {
  display: none;
}
#cssmenu {
  font-family: 'Open Sans', sans-serif;
  line-height: 1;
  background: #ffffff;
  width: auto;
}
#menu-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: #009ae1;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
#cssmenu > ul > li {
  float: left;
}
#cssmenu.align-center > ul {
  font-size: 0;
  text-align: center;
}
#cssmenu.align-center > ul > li {
  display: inline-block;
  float: none;
}
#cssmenu.align-center ul ul {
  text-align: left;
}
#cssmenu.align-right > ul > li {
  float: right;
}
#cssmenu.align-right ul ul {
  text-align: right;
}
#cssmenu > ul > li > a {
  padding: 20px 14px;
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  color: #000000;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
#cssmenu > ul > li:hover > a,
#cssmenu > ul > li.active > a {
  color: #009ae1;
}
#cssmenu > ul > li.has-sub > a {
  padding-right: 25px;
}
#cssmenu > ul > li.has-sub > a::after {
  position: absolute;
  top: 21px;
  right: 10px;
  width: 4px;
  height: 4px;
  border-bottom: 1px solid #000000;
  border-right: 1px solid #000000;
  content: "";
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: border-color 0.2s ease;
  -moz-transition: border-color 0.2s ease;
  -ms-transition: border-color 0.2s ease;
  -o-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
#cssmenu > ul > li.has-sub:hover > a::after {
  border-color: #009ae1;
}
#cssmenu ul ul {
  position: absolute;
  left: -9999px;
}
#cssmenu li:hover > ul {
  left: auto;
}
#cssmenu.align-right li:hover > ul {
  right: 0;
}
#cssmenu ul ul ul {
  margin-left: 100%;
  top: 0;
}
#cssmenu.align-right ul ul ul {
  margin-left: 0;
  margin-right: 100%;
}
#cssmenu ul ul li {
  height: 0;
  -webkit-transition: height .2s ease;
  -moz-transition: height .2s ease;
  -ms-transition: height .2s ease;
  -o-transition: height .2s ease;
  transition: height .2s ease;
}
#cssmenu ul li:hover > ul > li {
  height: 32px;
}
#cssmenu ul ul li a {
  padding: 10px 20px;
  width: 160px;
  font-size: 12px;
  background: #333333;
  text-decoration: none;
  color: #dddddd;
  text-align: left;
  font-weight: normal;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
#cssmenu ul ul li:hover > a,
#cssmenu ul ul li a:hover {
  color: #ffffff;
}
#cssmenu ul ul li.has-sub > a::after {
  position: absolute;
  top: 13px;
  right: 10px;
  width: 4px;
  height: 4px;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  content: "";
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: border-color 0.2s ease;
  -moz-transition: border-color 0.2s ease;
  -ms-transition: border-color 0.2s ease;
  -o-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
#cssmenu.align-right ul ul li.has-sub > a::after {
  right: auto;
  left: 10px;
  border-bottom: 0;
  border-right: 0;
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}
#cssmenu ul ul li.has-sub:hover > a::after {
  border-color: #ffffff;
}
#cssmenu.small-screen {
  width: 100%;
}
#cssmenu.small-screen ul {
  width: 100%;
  display: none;
}
#cssmenu.small-screen.align-center > ul,
#cssmenu.small-screen.align-right ul ul {
  text-align: left;
}
#cssmenu.small-screen ul li,
#cssmenu.small-screen ul ul li,
#cssmenu.small-screen ul li:hover > ul > li {
  width: 100%;
  height: auto;
  border-top: 1px solid rgba(120, 120, 120, 0.15);
}
#cssmenu.small-screen ul li a,
#cssmenu.small-screen ul ul li a {
  width: 100%;
}
#cssmenu.small-screen > ul > li,
#cssmenu.small-screen.align-center > ul > li,
#cssmenu.small-screen.align-right > ul > li {
  float: none;
  display: block;
}
#cssmenu.small-screen ul ul li a {
  padding: 20px 20px 20px 30px;
  font-size: 12px;
  color: #000000;
  background: none;
}
#cssmenu.small-screen ul ul li:hover > a,
#cssmenu.small-screen ul ul li a:hover {
  color: #000000;
}
#cssmenu.small-screen ul ul ul li a {
  padding-left: 40px;
}
#cssmenu.small-screen ul ul,
#cssmenu.small-screen ul ul ul {
  position: relative;
  left: 0;
  right: auto;
  width: 100%;
  margin: 0;
}
#cssmenu.small-screen > ul > li.has-sub > a::after,
#cssmenu.small-screen ul ul li.has-sub > a::after {
  display: none;
}
#cssmenu.small-screen #menu-line {
  display: none;
}
#cssmenu.small-screen #menu-button {
  display: block;
  padding: 20px;
  color: #000000;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
}
#cssmenu.small-screen #menu-button::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  width: 15px;
  height: 2px;
  background: #000000;
}
#cssmenu.small-screen #menu-button::before {
  content: '';
  position: absolute;
  top: 25px;
  right: 20px;
  display: block;
  width: 15px;
  height: 3px;
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
}
#cssmenu.small-screen .submenu-button {
  position: absolute;
  z-index: 10;
  right: 0;
  top: 0;
  display: block;
  border-left: 1px solid rgba(120, 120, 120, 0.15);
  height: 52px;
  width: 52px;
  cursor: pointer;
}
#cssmenu.small-screen .submenu-button::after {
  content: '';
  position: absolute;
  top: 21px;
  left: 26px;
  display: block;
  width: 1px;
  height: 11px;
  background: #000000;
  z-index: 99;
}
#cssmenu.small-screen .submenu-button::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 26px;
  display: block;
  width: 11px;
  height: 1px;
  background: #000000;
  z-index: 99;
}
#cssmenu.small-screen .submenu-button.submenu-opened:after {
  display: none;
}
#cssmenu.small-screen.select-list {
  padding: 5px;
}
.eapps-countdown-timer-container {
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.eapps-countdown-timer-container strong {
    font-weight: bold;
}
.top-promo-codes a, .top-promo-codes img {
	display: inline-block;
	vertical-align: top;
}
table.footer-top-new, table.footer-top-new table {
    border-collapse: separate;
    border-spacing: 2px;
}
table.footer-top-new td, table.footer-bottom-new td {
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
table.footer-bottom-new > tbody > tr > td {
    padding-top: 3px;
    box-sizing: border-box;
}
.footer-bottom-new a:hover {
    text-decoration: underline;
}
.footer-top-new img {
    max-width: none;
}
.top-promo-codes + tr > th > table {
    margin: 0 auto;
}
.pagination-review {
    text-align: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
}
.pagination-review li {
    display: inline-block;
    vertical-align: top;
    margin: 3px;
}
.pagination-review li a {
    display: inline-block;
    vertical-align: top;
    background-color: #5e5e5e;
    width: 40px;
    height: 40px;
    line-height: 40px;
	font-size: 16px;
    text-align: center;
    border-radius: 3px;
    -moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.pagination-review li a:hover, .pagination-review li.active a {
    background-color: #cd273f;
    color: #fff;
}
.review-table > tbody > tr > td {
    border-bottom: 1px solid #eee;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.cart-main-table input[type="radio"] {
  margin: 2px 8px 3px;
}

.main-total-wrap, .main-total-wrap tbody, .main-total-wrap tr,
.promo-section, .promo-section tbody, .promo-section tr {
  display: block;
}
.main-total-wrap {
  border-top: 2px solid #989a99;
  padding: 27px 20px 27px 0;
  margin-top: 24px;
  font-size: 0;
  box-sizing: border-box;
}
.main-total-wrap th, .main-total-wrap td,
.promo-section th, .promo-section td {
  vertical-align: top;
  width: auto;
  line-height: 25px;
  font-size: 18px;
}
#ccp_2 {
  padding-left: 10px;
  box-sizing: border-box;
}
#shipdiv .main-total-wrap td:last-child {
  padding: 0 !important;
}
.main-total-wrap #redeem_code,
.promo-section #redeem_code {
  border: 2px solid #197abe;
  height: 38px;
  width: 190px;
  padding: 0 12px;
  box-sizing: border-box;
  border-radius: 5px;
  font-size: 16px;
  color: #6b6b6b;
  margin-bottom: 10px;
}
.main-total-wrap input[type="button"],
.promo-section input[type="button"] {
  height: 38px;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  border: 0;
  background: #197abe;
  color: #fff;
  border-radius: 5px;
  width: 86px;
  font-weight: bold;
  font-size: 13px;
  cursor: pointer;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}
.main-total-wrap input[type="button"]:hover,
.promo-section input[type="button"]:hover {
  background-color: red;
  background: #6b6b6b;
}
.main-total-wrap #ccp_1,
.promo-section #ccp_1 {
  font-size: 18px;
  font-weight: normal;
  margin: 7px 0 7px 0px;
  min-width: 102px;
  box-sizing: border-box;
  color: #6b6b6b;
}
.main-total-wrap #shipping_price_tag,
.main-total-wrap #discount_tag,
.promo-section #shipping_price_tag,
.promo-section #discount_tag {
  font-size: 18px;
  font-weight: normal;
  padding: 0;
  margin-right: 9px;
  min-width: 102px;
  color: #6b6b6b;
}
.main-total-wrap #discount_html,
.promo-section #discount_html {
  font-size: 18px;
  font-weight: normal;
  color: #36bb44 !important;
  margin-bottom: 15px;
}
.main-total-wrap #shipping_price,
.promo-section #shipping_price {
  color: #676767 !important;
  font-size: 16px !important;
  font-weight: normal !important;
  margin-top: 2px;
}
.main-total-wrap #discount_html img,
.promo-section #discount_html img {
  margin-top: 3px;
}

.cart-item-container > tbody > tr > td:first-child {
  width: 10% !important;
  min-width: 122px;
}
#shipdiv table {
  width: 100%;
}
#shipdiv td:first-child table td:last-child {
  padding: 0 6px;
}
.total-price-big {
  padding-left: 28px !important;
}
.promo-section {
  display: table-row;
}
.promo-section > td {
  display: table-cell;
}
.promo-section > td > table {
  width: 428px;
  border-top: 3px solid #151f20;
  margin-top: 13px;
  padding-top: 18px;
  display: block;
  padding-right: 7px;
  margin-bottom: 5px;
  text-align: left;
}
.promo-section input[type="button"] {
  margin-left: 6px;
}
.promo-section #redeem_code {
  width: 235px;
}
.promo-section #ccp_1,
.promo-section #shipping_price_tag, .promo-section #discount_tag {
  min-width: 75px;
}
.promo-section .total-price-big {
    font-size: 18px !important;
    font-weight: normal !important;
    padding: 0 9px 0 0 !important;
    min-width: 75px;
    color: #6b6b6b !important;
}
.promo-section #textsubtotal {
    font-size: 16px !important;
    font-weight: normal !important;
    color: #d20005 !important;
}
.promo-section #textsubtotal .each_value:before {
    height: 26px;
    width: 2px;
    top: -3px;
    background-color: #8a8a8a;
}
.promo-section #textsubtotal .each_value {
	top: 0;
	padding-left: 7px;
	margin-left: 6px;
}
.promo-section #discount_html {
	margin-bottom: 2px;
}
.ordernow-top-price {
	display: none !important;
}

/*----18-01-2020----*/
table.block-order-wrap .selectbox label{
	position: absolute;
    background: #fff;
    line-height: 120%;
    left: 5px;
    font-weight: bold;
    font-size: 15px;
    top: 7px;
    pointer-events: none;
    color:#000;
    font-family: "Droid Sans",sans-serif;
    -moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
table.block-order-wrap .selectbox.has-focus label {
    top: -7px;
    font-size: 12px;
    padding: 0px 6px;
    left: 8px;
}
table.block-order-wrap .selectbox select {
    background: #fff;
    border-radius: 6px !important;
    border: 2px solid #ccc !important;
    box-shadow: none !important;
    width: 100% !important;
    padding: 0px 50px 0 10px!important;
    box-sizing: border-box;
    height: 42px !IMPORTANT;
    color:#858585;
}
html:root body table.block-order-wrap .selectbox {
    position: relative;
    overflow: visible;
    width: 425px;
    margin-top: 10px;
    margin: 21px 0 0 0;
    box-shadow: none;
    padding: 0 !important;
    box-sizing: border-box;
    border-radius: 7px !important;
    height: 42px !IMPORTANT;
    background: #f7f6f4 !important;
    text-align: center;
    margin-right:4px;
}
table.block-order-wrap .selectbox.active select {
    border-color: #91c253!important;
}
table.block-order-wrap .selectbox.has-error select {
    border-color: red !important;
}
table.block-order-wrap .selectbox:before {
    content: "";
    position: absolute;
    right: 10px;
    top: -3px;
    bottom: 0;
    height: 7px;
    width: 7px;
    margin: auto;
    border: 0;
    border-left: 2px solid #858585;
    border-bottom: 2px solid #858585;
    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
    pointer-events: none;
}
table.block-order-wrap .selectbox:after {
    content: "\f058";
    position: absolute;
    right: 30px;
    font-family: fontawesome;
    color: #91c253;
    font-size: 22px;
    background: #fff;
    border-radius: 50px;
    line-height: 19px;
    height: 18px;
    width: 18px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    opacity:0;
    -moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;

}
table.block-order-wrap .selectbox.active:after {
	opacity:1;
}
table.block-order-wrap .selectbox > img {
    margin: 11px auto 0;
    display: block;
}
table.block-order-wrap td.styleNew1 {
    padding-top: 10px;
    font-size:0 !important;
}
table.block-order-wrap .selectbox select option {
    background: #fff;
}
.promo-section #textsubtotal{
	font-size:18px !important;
}
.promo-section #textsubtotal .each_value{
	font-size:18px;
}

/*---18-01-2020---*/

/*-----12-02-2020-----*/

form.cart-page-form .empty_cart {
    margin-top: -41px;
}
form.cart-page-form {
    width: 790px;
    margin-top: 41px;
}

/*-----12-02-2020-----*/