@font-face {
  font-family: "Brinnan-Regular";
  src: url(../fonts/Brinnan-Regular.ttf);
}
@font-face {
  font-family: "Lorena";
  src: url(../fonts/Lorena.otf);
}
@font-face {
  font-family: "Nexa Bold";
  src: url(../fonts/Nexa Bold.otf);
}
h1, h2, h3, h4, h5, h6, p, span, ul, li, a, .btn-default, textarea {
	margin: 0;
	padding: 0;
}
* {
	margin: 0;
	padding: 0;
}
a,a:hover {
	text-decoration: none;
}
a:focus {
	text-decoration: none;
}
body {
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}
.container{
	max-width: 1300px;
}

/**** GLOBAL CSS START
*************************/
.cta-btn {
    font-family: "Brinnan-Regular";
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
    border: 2px solid #fff;
    outline: none;
    padding: 25px 60px;
    display: inline-block;
    background: transparent;
}
.cta-btn:hover {
	color: #ef2323;
	border-color: #ef2323;
}
.sectionHeading {
    font-size: 100px;
    font-weight: 400;
    font-family: "Lorena", sans-serif;
    color: #1e1f1f;
    text-transform: uppercase;
    letter-spacing: -6px;
    line-height: 1.0;
    width: 6ch;
}
.sectionHeading span {
	color: #ef2323;
}
.white-text {
	color: #fff;
}
.black-btn {
    color: #0b283b;
    border-color: #0b283b;
    transition: all 0.4s ease-in-out;
}
.black-btn:hover {
    color: #ef2323;
    border-color: #ef2323;
}
/**** GLOBAL CSS END
*************************/

/**** HEADER CSS START
*************************/
header {
    position: relative;
    z-index: 1;
}
.header-wrap {
    max-width: 1300px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
}
.logo {
    margin: 0 0 -45px;
}
.logo img {
    max-width: 250px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.main-menu {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 15px;
}
.main-menu>li>a {
    font-size: 14px;
    font-weight: 400;
    color: #0b283b;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    font-family: "Brinnan-Regular";
    padding: 15px 5px;
    position: relative;
    z-index: 1;
}
.main-menu>li>a:before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: 0;
    right: 0;
    width: 30px;
    height: 25px;
    background: #0b283b;
    transition: all 0.4s ease-in-out;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    z-index: 0;
    margin: 0 auto;
    transform: scale(0);
}
.main-menu>li>a:after {
    content: '';
    position: absolute;
    bottom: -65%;
    left: 0;
    right: 0;
    width: 45px;
    height: 35px;
    background: #fff;
    transition: all 0.4s ease-in-out;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    z-index: -1;
    margin: 0 auto;
    transform: scale(0);
}
.main-menu>li>a:hover {
    color: #ef2323;
}
.main-menu>li>a:hover:before {
    transform: scale(1);
}
.main-menu>li>a:hover:after {
    transform: scale(1);
}
.header-wrap .rightCol {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.search-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}
.login-btn {
	font-size: 14px;
    font-weight: 400;
    color: #0b283b;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    font-family: "Brinnan-Regular";
    padding: 10px 0;
    margin-right: 15px;
}
.login-btn:hover {
    color: #ef2323;
}
.search-btn {
    color: #0b283b;
    transition: all 0.4s ease-in-out;
}
.cart_btn {
    color: #0b283b;
    transition: all 0.4s ease-in-out;
}
.search-btn:hover, .cart_btn:hover {
    color: #ef2323;
}
/**** HEADER CSS END
*************************/

/** SEARCH OVERLY CSS START
************************************/
.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: #282828de;
}
.overlay-content {
  position: relative;
  width: 100%;
  max-width: 1170px;
  text-align: center;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.overlay-content form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  cursor: pointer;
  color: #fff;
  z-index: 9999;
}
.overlay input[type=search] {
  padding: 22px 30px;
  font-size: 16px;
  font-family: "Brinnan-Regular";
  font-weight: 400;
  border: none;
  width: 100%;
  background: white;
  border-radius: 40px 0 0 40px;
  color: #282828;
  outline: none;
}
.overlay button {
  max-width: 200px;
  width: 100%;
  padding: 10px 0;
  background: #ef2323;
  color: #fff;
  font-size: 33px;
  border: none;
  border-radius: 0 40px 40px 0;
  outline: none;
  transition: all 0.3s ease-in-out;
}
.overlay button:hover {
  background: #282828;
}
/** SEARCH OVERLY CSS END
*************************************/

/**** INDEX PAGE CSS START
*****************************/
.index-sec1 {
	position: relative;
	background: #1e1f1f url(../images/index-banner.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	min-height: 830px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 50px 0;
}
.banner-content h1 {
    font-size: 100px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.0;
    width: 10ch;
    font-family: "Lorena", sans-serif;
}
.banner-content h1 span {
	color: #ef2323;
}
.banner-button {
    margin: 30px 0 0;
}
.index-sec2 {
    position: relative;
    background: #ccdbde url(../images/indexSec2-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 880px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 70px 0;
    margin: 40px 10px;
}
.indexSec2-content {
    text-align: end;
}
.index-sec3 {
	position: relative;
	background: #81868b url(../images/indexSec3-bg.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	min-height: 900px;
	display: flex;
	align-items: flex-end;
	padding: 70px 0;
}
.indexSec3-content {
    margin: 30px 0 0;
}
.index-sec4 {
	position: relative;
	background: #232323 url(../images/indexSec4-bg.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	min-height: 900px;
	display: flex;
	align-items: flex-end;
	padding: 70px 0;
	margin: 40px 10px 0;
}
.indexSec3-content {
    margin: 30px 0 0;
}
.indexSec4-content {
    max-width: 350px;
    position: absolute;
    bottom: 10%;
    right: 8%;
}
.index-sec5 {
	padding: 40px 0;
	position: relative;
}
.indexSec5-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}
.indexSec5-imageBox {
    background-size: cover !important;
    background-position: center center !important;
    min-height: 680px;
    display: flex;
    align-items: center;
    flex: 1;
    padding: 0 35px;
}
.index-sec6 {
    position: relative;
    background: #0f131c;
    padding: 100px 0 80px;
}
.product-slider {
    z-index: 0;
}
.product-slide {
	text-align: center;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}
.product-slide:before {
    content: '';
    position: absolute;
    bottom: -1%;
    left: -1.5%;
    width: 103%;
    height: 50%;
    background: #f92338;
    z-index: -1;
    transition: all 0.3s ease-in-out;
    transform: scale(0);
}
.product-slide img {
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease-in-out;
    min-height: 650px;
    max-height: 650px;
}
.product-slider .owl-stage-outer {
	padding: 40px 0;
}
.product-slider .owl-item.center {
	z-index: 1;
}
.product-slider .owl-item.center .product-slide {
	transform: scale(1.1);
}
.product-slider .owl-item.center .product-slide:before {
	transform: scale(1);
}

/**** INDEX PAGE CSS END
*****************************/





/**** FOOTER CSS START
*************************/
footer {
	position: relative;
	background: #121314;
}
.footer-top {
    padding: 20px 0 30px;
}
.footer-links-wrap {
    display: flex;
    align-items: flex-start;
    gap: 100px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.f-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 25px;
}
.footer-liks {
	list-style-type: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer-liks>li>a {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    transition: all 0.3s ease-in-out;
    position: relative;
    padding: 5px 0;
}
.footer-liks>li>a:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 1px;
	background: #f92338;
	transition: all 0.3s ease-in-out;
}
.footer-liks>li>a:hover:before {
	width: 100%;
}
.payment-links {
    text-align: end;
    max-width: 520px;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 15px 0;
    border-top: 1px solid #423e3e;
}
.footer-bottom p, .footer-bottom a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}
.footer-bottom a:hover {
	color: #f92338;
}
/**** FOOTER CSS END
*************************/

/**** INNER PAGES CSS START
*****************************/
.innerBanner_section {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.innerBanner-content {
    text-align: center;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}
.innerBanner-content h1 {
    font-size: 100px;
    font-weight: 400;
    color: #ef2323;
    text-transform: uppercase;
    font-family: "Lorena", sans-serif;
}
.product-section {
    position: relative;
    padding: 70px 0;
}
.product-section-top {
    border-bottom: 1px solid #0b283b;
}
.product-section-top .wrap {
    max-width: 1300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    margin: 0 auto;
}
.product-section-top p, .product-section-top a {
    font-size: 16px;
    font-weight: 400;
    color: #0b283b;
    font-family: "Brinnan-Regular";
    display: inline-block;
}
.product-section-top a span {
    display: inline-block;
}
.padding_none {
    border: 1px solid #0b283b;
    border-top: 0;
    padding: 50px 50px 30px;
}
.padding_none:nth-child(2) {
    border-left: 0;
    border-right: 0;
}
.padding_none:nth-child(5) {
    border-left: 0;
    border-right: 0;
}
.padding_none:nth-child(8) {
    border-left: 0;
    border-right: 0;
}
.product_card {
    overflow: hidden;
    max-height: 550px;
}
.product_card .image img {
    width: 100%;
    max-height: 450px;
    min-height: 450px;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease-in-out;
    border: 1px solid #0b283b;
}
.product_footer {
    text-align: center;
    padding: 20px 0 0;
}
.product_footer p {
    font-size: 14px;
    font-weight: 400;
    color: #0b283b;
    font-family: "Brinnan-Regular";
}
.product_colors {
    margin: 10px 0 0;
    transition: all 0.3s ease-in-out;
    transform: translate(0%, 100%);
}
.available-colors {
    font-size: 14px;
    font-weight: 400;
    color: #0b283b;
    font-family: "Brinnan-Regular";
    display: block;
}
.product_colors span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}
.product_colors span.red_color {
    background: #ef2323;
}
.product_colors span.blue_color {
    background: #0090ff;
}
.product_colors span.black_color {
    background: #000;
}
.product_card:hover .product_colors {
    transform: translate(0%, 0%);
}
.shop-button {
    padding: 50px 0 30px;
}

/** PRODUCT DETAIL PAGE CSS START
*************************************/
.productDetail-sec2 {
  padding: 70px 0;
}
/*Swiper Slider CSS Start*/
.swiper-slide {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.swiper-container {
  width: 80%;
  height: 700px;
  float: left;
  transition: opacity 0.6s ease, transform 0.3s ease;
  z-index: 0;
}
.main-slider {
  width: 75%;
  margin-left: 20px;
}
.swiper-container.nav-slider {
  width: 20%;
}
.swiper-container.nav-slider .swiper-slide {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.swiper-container.nav-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.swiper-container.nav-slider .swiper-slide .content {
  width: 100%;
}
.swiper-container.nav-slider .swiper-slide .content .title {
  font-size: 20px;
}
.swiper-container:hover .swiper-button-prev,
.swiper-container:hover .swiper-button-next {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.swiper-container.loading {
  opacity: 0;
  visibility: hidden;
}
.swiper-slide {
  overflow: hidden;
}
.swiper-slide .slide-bgimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
.swiper-slide .entity-img {
  display: none;
}
.swiper-slide .content {
  position: absolute;
  top: 40%;
  left: 0;
  width: 50%;
  padding-left: 5%;
  color: #fff;
}
.swiper-slide .content .title {
  font-size: 2.6em;
  font-weight: bold;
  margin-bottom: 30px;
}
.swiper-slide .content .caption {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  transform: translateX(50px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.7s ease;
}
.swiper-slide .content .caption.show {
  transform: translateX(0);
  opacity: 1;
}
[class^=swiper-button-] {
  width: 44px;
  opacity: 0;
  visibility: hidden;
}
.swiper-button-prev {
  transform: translateX(50px);
}
.swiper-button-next {
  transform: translateX(-50px);
}
/*End*/

.productDetail-content .black-heading {
    font-size: 40px;
    font-weight: 400;
    color: #0b283b;
}
.reviewwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 270px;
}
.reviewwrap .paragraph {
    color: #0b283b;
}
.product-info {
  max-width: 270px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.product-info span {
  width: 50%;
}
#stock-bar {
  width: 100%;
  height: 10px;
}
.stockBar .paragraph {
    color: #0b283b;
}
.stockBar span {
  font-size: 14px;
  font-weight: 600;
  color: #ef2323;
}
.productDetails-butotns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0;
}
.product-size {
    padding: 17px 15px;
    border: 1px solid #0b283b;
    outline: none;
    font-size: 14px;
    font-weight: 400;
}
.dashed-btn {
  font-size: 16px;
  font-weight: 400;
  color: #0b283b;
  width: 100%;
  border: 2px solid #0b283b;
  outline: none;
  padding: 15px;
  display: inline-block;
  text-align: center;
  transition: all 0.4s ease-in-out;
}
.dashed-btn:hover {
  color: #ef2323;
  border-color: #ef2323;
}
.addCart-btn {
    font-size: 14px;
    font-weight: 400;
    color: #0b283b;
    display: inline-block;
    border: 1px solid #0b283b;
    padding: 15px 50px;
    transition: all 0.4s ease-in-out;
}
.addCart-btn:hover {
    color: #ef2323;
    border-color: #ef2323;
}
.product-rating span {
    color: #ffa500;
    margin: 0 -1px;
}
/** PRODUCT QUANTITY CSS START
*******************************/
.quntity-counter {
    font-size: 16px;
    font-weight: 400;
    color: #0b283b;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 120px;
    width: 100%;
    border: 1px solid #0b283b;
}
.quntity-counter span {
  font-size: 12px;
  cursor: pointer;
}
.quntity-counter input {
  width: 100%;
  margin: 0 10px;
  border: none;
  outline: none;
  text-align: center;
}
/** PRODUCT QUANTITY CSS END
********************************/
.productDetail-sec3 {
    padding: 0 0 80px;
    position: relative;
}
.product-details-tabs .nav-pills {
  justify-content: center;
  border-bottom: 2px solid #e5e5e5;
}
.product-details-tabs .nav-pills .nav-link {
  background: 0 0;
  border: 0;
  border-radius: 0;
  font-size: 24px;
  font-weight: 400;
  color: #0b283b;
  line-height: 1;
  padding: 15px;
  font-family: "Brinnan-Regular";
}
.product-details-tabs .nav-pills .nav-link.active, .product-details-tabs .nav-pills .show>.nav-link {
  color: #ef2323;
  background-color: transparent;
  border-bottom: 2px solid #ef2323;
}
.productDetail-content {
    font-family: "Brinnan-Regular";
}
.product-details-tabs .tab-content .desc{
  font-size: 16px;
  color: #000000;
}
.product-details-tabs .descListing li {
  padding-bottom: 10px;
  padding-left: 18px;
  position: relative;
}
.product-details-tabs .descListing li:before {
  content: '-';
  position: absolute;
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
  font-size: 20px;
}
.product-detail-sec-3 .moreBtn {
  margin-top: 40px;
}
.product-detail-sec-3 .absImages .abs-img.type-1 {
  left: 50px;
  top: auto;
  bottom: 25%;
}
.product-details-tab-box .black-heading {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.4;
    font-family: "Brinnan-Regular";
}
.product-details-tab-box .right-col img {
  width: 100%;
  object-fit: cover;
  object-position: top;
  max-height: 400px;
  min-height: 400px;
}

/** PRODUCT DETAIL PAGE CSS END
*************************************/


/**** INNER PAGES CSS END
*****************************/

/*** CART PAGE START
*************************************/
.cart-sec-2 {
    position: relative;
    padding: 100px 0;
}
/*** CART PAGE END
*************************************/

/*** CHECKOUT PAGE START
*************************************/
.checkout-sec-2{
  padding: 50px 0;
  background-size: cover;
  background: #fff;
}
.checkout-tabs ul{
  display: flex;
  justify-content: space-between;
  width: 100%;
  list-style-type: none;
  position: relative;
  border: none;
}
.checkout-tabs ul:before{
  content: '';
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 70px);
  height: 2px;
  background: #161616;
}
.checkout-tabs ul li{
  text-align: center;
  width: 110px;
  position: relative;
}
.checkout-tabs ul li .circle{
  width: 45px;
  height: 45px;
  font-size: 20px;
  font-weight: 600;
  border: 1px solid #161616;
  border-radius: 50%;
  margin: 0 auto;
  background: #fff;
  color: #161616;
  transition: all 0.25s;
}
.checkout-tabs ul li a {
    border: none !important;
    cursor: pointer;
}
.xy-center {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.checkout-tabs ul li a.active,
.checkout-tabs ul li a:hover{
  background: transparent !important;
  border: none !important;
}
.checkout-tabs ul li a.active .circle,
.checkout-tabs ul li a:hover .circle{
  background: #ef2323;
  color: #fff;
  border-color: #ef2323;
}
.checkout-tabs ul li span:nth-of-type(2){
  font-size: 14px;
  font-weight: 600;
  color: #ef2323;
}
.checkout-sec-1 .checkout-form{
  padding-top: 20px;
}
.checkout-form .form-top-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.checkout-form .title{
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 15px;
  padding-top: 15px;
  color: #282828;
}
.checkout-form .form-group{
  margin-bottom: 20px;
}
.checkout-form input[type=text],
.checkout-form input[type=email],
.checkout-form input[type=number],
.checkout-form input[type=tel]{
 width: 100%;
 border: 1px solid #ccc;
 padding: 5px 16px;
 height: 51px;
 outline: none;
 box-shadow: none;
 background: #efefef;
}
.checkout-form input::placeholder{
  font-size: 16px;
}
.checkout-form .submit {
    height: 55px;
    width: 100%;
    border: 1px solid #ef2323;
    box-shadow: none;
    outline: none;
    background: #ef2323;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 2px;
    font-family: "Brinnan-Regular";
    transition: all 0.4s ease-in-out;
}
.checkout-form .submit:hover{
  background: #0b283b;
  color: #fff !important;
  border-color: #0b283b;
}
.checkout-form .cart-list-item .product-name {
  width: 60%;
  padding-left: 10px;
}
.checkout-form .cart-list-item{
  border-bottom: 1px solid #ddd;
}
.checkout-form .cart-list-item .product-img {
    width: 100px;
    overflow-y: hidden;
}
.checkout-form  .cart-list-item .product-action-price {
  width: calc(35% - 90px);
}
.checkout-form .order-details-wrap{
  margin-top: 30px;
  background: #f4f4f4;
  border-radius: 15px;
  padding: 10px;
  margin-bottom: 30px;
}
.checkout-form .order-detail-group{
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
.checkout-form .order-detail-group .group-name{
  width: 30%;
}
.checkout-form .order-detail-group .group-name p{
  color: #282828;
  font-size: 18px;
  font-weight: 600;
}
.checkout-form .order-detail-group .group-details{
  width: calc(70% - 50px);
  padding-left: 15px;
}
.checkout-form .form-switch{
  width: 50px;
}
.checkout-form .form-switch input.form-check-input{
  box-shadow: none !important;
  outline: none !important;
}
.checkout-form .form-switch input.form-check-input:checked{
  background-color: #ef2323;
  border-color: #ef2323;
}
.checkout-form .order-detail-group .group-details p{
  font-size: 15px;
  line-height: 1.3;
  color: #000;
}
.checkout-form .order-detail-group .group-details .edit{
  font-size: 16px;
  color: #191919;
  font-weight: 600;
  text-decoration: underline;
}

/*PAYMENT FORM*/
.payment-card .field-container input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.payment-card .field-container {
  position: relative;
  max-width: 100%;
  color: #707070;
}
.payment-card label {
  padding-bottom: 5px;
  font-size: 13px;
}
.payment-card input {
  width: 100%;
  border: 2px solid #eaeaea;
  padding: 5px 16px;
  height: 51px;
  outline: none;
  box-shadow: none;
}
.payment-card .field-container input[type=submit]{

}
.ccicon {
  height: 30px;
  position: absolute;
  right: 20px;
  top: calc(50% - 25px);
  width: 60px;
}
/* CREDIT CARD IMAGE STYLING */
.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
.payment-card .container {
  width: 100%;
  max-width: 400px;
  max-height: 251px;
  height: 54vw;
  padding: 20px;
}
#ccsingle {
  position: absolute;
  right: 15px;
  top: 20px;
}
#ccsingle svg {
  width: 100px;
  max-height: 60px;
}
.creditcard svg#cardfront,
.creditcard svg#cardback {
  width: 100%;
  -webkit-box-shadow: 1px 5px 6px 0px black;
  box-shadow: 1px 5px 6px 0px black;
  border-radius: 22px;
}
#generatecard{
  cursor: pointer;
  float: right;
  font-size: 12px;
  color: #fff;
  padding: 2px 4px;
  background-color: #909090;
  border-radius: 4px;
  cursor: pointer;
  float:right;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: -99;
}
/* CHANGEABLE CARD ELEMENTS */
.creditcard .lightcolor,
.creditcard .darkcolor {
  -webkit-transition: fill .5s;
  transition: fill .5s;
}
.creditcard .lightblue {
  fill: #03A9F4;
}
.creditcard .lightbluedark {
  fill: #0288D1;
}
.creditcard .red {
  fill: #ef5350;
}
.creditcard .reddark {
  fill: #d32f2f;
}
.creditcard .purple {
  fill: #ab47bc;
}
.creditcard .purpledark {
  fill: #7b1fa2;
}
.creditcard .cyan {
  fill: #26c6da;
}
.creditcard .cyandark {
  fill: #0097a7;
}
.creditcard .green {
  fill: #66bb6a;
}
.creditcard .greendark {
  fill: #388e3c;
}
.creditcard .lime {
  fill: #d4e157;
}
.creditcard .limedark {
  fill: #afb42b;
}
.creditcard .yellow {
  fill: #ffeb3b;
}
.creditcard .yellowdark {
  fill: #f9a825;
}
.creditcard .orange {
  fill: #ff9800;
}
.creditcard .orangedark {
  fill: #ef6c00;
}
.creditcard .grey {
  fill: #ef2323;
}
.creditcard .greydark {
  fill: var(--theme-color-2);
}
/* FRONT OF CARD */
#svgname {
  text-transform: uppercase;
}
#cardfront .st2 {
  fill: #FFFFFF;
}
#cardfront .st3 {
  font-family: 'Source Code Pro', monospace;
  font-weight: 600;
}
#cardfront .st4 {
  font-size: 54.7817px;
}
#cardfront .st5 {
  font-family: 'Source Code Pro', monospace;
  font-weight: 400;
}
#cardfront .st6 {
  font-size: 33.1112px;
}
#cardfront .st7 {
  opacity: 0.6;
  fill: #FFFFFF;
}
#cardfront .st8 {
  font-size: 24px;
}
#cardfront .st9 {
  font-size: 36.5498px;
}
#cardfront .st10 {
  font-family: 'Source Code Pro', monospace;
  font-weight: 300;
}
#cardfront .st11 {
  font-size: 16.1716px;
}
#cardfront .st12 {
  fill: #4C4C4C;
}
/* BACK OF CARD */
#cardback .st0 {
  fill: none;
  stroke: #0F0F0F;
  stroke-miterlimit: 10;
}
#cardback .st2 {
  fill: #3c3c3c;
}
#cardback .st3 {
  fill: #F2F2F2;
}
#cardback .st4 {
  fill: #D8D2DB;
}
#cardback .st5 {
  fill: #C4C4C4;
}
#cardback .st6 {
  font-family: 'Source Code Pro', monospace;
  font-weight: 400;
}
#cardback .st7 {
  font-size: 27px;
}
#cardback .st8 {
  opacity: 0.6;
}
#cardback .st9 {
  fill: #FFFFFF;
}
#cardback .st10 {
  font-size: 24px;
}
#cardback .st11 {
  fill: #EAEAEA;
}
#cardback .st12 {
  font-family: 'Rock Salt', cursive;
}
#cardback .st13 {
  font-size: 37.769px;
}
/* FLIP ANIMATION */
.payment-card .container {
  perspective: 1000px;
}
.creditcard {
  width: 100%;
  max-width: 400px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transition: -webkit-transform 0.6s;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  cursor: pointer;
}
.creditcard .front,
.creditcard .back {
  position: absolute;
  width: 100%;
  max-width: 400px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  color: #47525d;
}
.creditcard .back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.creditcard.flipped {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.payment-form{
  margin-top: 15px;
}
.checkout-tabs ::placeholder{
  font-size: 19px;
  line-height: 1;
}
.order-summary-card{
  padding: 0 15px;
  border-radius: 15px;
  background: #efefef;
  max-width: 400px;
}
.order-summary-card .title {
    text-align: center;
    font-size: 24px;
    color: #ef2323;
    font-weight: 600;
    text-transform: uppercase;
}
.order-summary-card .summary-group{
  border-bottom: 1px solid #191919;
  padding: 15px 0;
}
.order-summary-card .summary-group:last-of-type{
  border-bottom: none;
}
.order-summary-card .summary-group ul{
  list-style-type: none;
}
.order-summary-card .summary-group ul li{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
}
.order-summary-card .summary-group ul li:nth-last-child(1) {
    margin-bottom: 0;
}
.order-summary-card .summary-group ul li span{
  font-size: 16px;
  font-weight: 500;
}
.order-summary-card .summary-group .total{
  font-weight: 600;
}
.order-summary-card a.cart-next{
  width: 100%;
  height: 40px;
  outline: none;
  border: none;
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
  border-radius: 25px;
  margin: 10px auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.25s;
  color: #fff;
  background: #191919;
}
  .order-summary-card .black-button{
    width: 100%;
    margin-top: 20px;
    border-radius: 10px;
    font-size: 18px;
  }
  .order-summary-card .black-button i{
    padding-left: 10px;
  }
.order-summary-card .gen-btn {
    width: 100%;
    background: #ef2323;
    display: block;
    text-align: center;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition: all 0.4s ease-in-out;
}
.order-summary-card .gen-btn:hover {
    background: #0b283b;
}
  .cart-list-item{
    border-bottom: 1px solid #ddd;
    /*border-top: 1px solid #ddd;*/
    padding: 15px 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
  }
  .cart-list-item:last-of-type{
    border-bottom: none;
  }
  .cart-list-item:first-of-type{
    border-bottom: 1px solid #ddd;
  }
  .cart-list-item .product-img{
    width: 100px;
    max-height: 120px;
  }
.cart-list-item .product-img img {
    width: 100%;
    min-height: 130px;
    max-height: 130px;
    object-fit: cover;
    object-position: center;
}
  .cart-list-item .product-name{
    width: calc(40% - 6px);
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .cart-list-item .product-name p.name{
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: #0b283b;
  }
  .cart-list-item .product-name p.code{
    font-size: 13px;
    padding: 5px 0;
  }
  .cart-list-item .product-name p.code span:nth-of-type(1){
    font-weight: 600;
    color: #054a55;
  }
  .cart-list-item .product-name p.code span:nth-of-type(2){
    font-weight: 500;
  }
  .cart-list-item .product-name p.price{
    font-size: 15px;
    font-weight: 600;
    color: #ef2323;
  }
  .cart-list-item .product-quantity-wrap {
    width: 200px;
  }
  .cart-list-item .product-quantity-wrap .quaitity-box{
    margin: 0;
  }
  .cart-list-item .product-action-price{
    width: calc(35% - 100px);
    justify-content: space-between;
    padding-left: 15px;
  }
  .cart-list-item .product-action-price p{
    color: #282828; 
    font-size: 18px;
    font-weight: 600;
  }
  .cart-list-item .product-action-price .remove-cart-item{
    color: #ef2323; 
  }
  .cart-list-item .product-action-price .add-cart-item{
   color: #1eac01;
   margin-right: 1.5rem;
 }
 .cart-list-item .product-action-price .remove-cart-item i,
 .cart-list-item .product-action-price .add-cart-icon i, 
 .cart-list-item .product-action-price .add-cart-item i{
  font-size: 20px;
}
.cart-list-item .product-action-price .add-cart-icon{
  color: #282828;
  margin-right: 10px;
}
/*** CHECKOUT PAGE START END
*********************************/

/*PRODUCT QUANTITY INPUT*/
.quaitity-box{
  margin-top: 15px;
  margin-right: 15px;
  display: inline-block;
  padding: 10px 15px;
  border: 1px solid #ef2323;
  border-radius: 100px;
  width: 100%;
  background: transparent;
}
.quaitity-box .plus-minus {
  position: relative;
  padding-left: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #0b283b;
}
.quaitity-box .plus-minus label {
  position: absolute;
  left: 0;
  font-size: 15px;
  padding-top: 3px;
  margin: 0;
}
.quaitity-box .qty .count {
  color: #000;
  display: inline-block;
  vertical-align: top;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
  padding: 0 2px;
  min-width: 35px;
  text-align: center
}
.quaitity-box .qty .plus {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  color: #fff;
  width: 30px;
  height: 30px;
  font: 30px/1 Arial, sans-serif;
  text-align: center;
  border-radius: 50%;
  color: #282828;
  cursor: pointer;
}
.quaitity-box .qty .minus {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  color: #fff;
  width: 30px;
  height: 30px;
  font: 30px/1 Arial, sans-serif;
  text-align: center;
  border-radius: 50%;
  background-clip: padding-box;
  color: #282828;
  cursor: pointer;
}
.quaitity-box .plus-minus span {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}
.quaitity-box .plus-minus .minus{
  font-size: 13px;
}
.quaitity-box .plus-minus input {
    border: 0;
    width: 2%;
    background: #ef2323 !important;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    border: 1px solid #c2c2c2;
    text-align: center;
    width: 27px;
    margin: 0 7px;
    outline: none;
}
.quaitity-box .plus-minus input::-webkit-inner-spin-button,
.quaitity-box .plus-minus input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0
}
.quaitity-box .plus-minus input:disabled {
  background-color: #fff
}
.y-center {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
/*PRODUCT QUANTITY INPUT*/