@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Montserrat', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: 'nulshock';
    src: url(../fonts/nulshock.otf);
}

/***** Custom Classes *****/


.all-section {
    padding: 100px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}


.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'nulshock';
    margin: 0;
    line-height: 1;
    color: #FFFFFF;
    font-size: 73px;
    font-weight: 500;
}

h2 {
    font-family: 'nulshock';
    color: #000000;
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 20px;
}

h3 {
    font-family: 'nulshock';
    color: #000000;
    font-size: 22px;
    font-weight: 600;

}

h4 {
    font-family: 'nulshock';
    color: #000000;
    font-size: 22px;
    font-weight: 200;
}

h5 {
    font-family: 'nulshock';
    font-size: 20px;
    line-height: 25px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    color: #B91E2A;
    font-family: "Montserrat", Sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

p {
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */
.btn-1 {
    background-image: url(../images/red-button.png);
    font-family: "Montserrat", Sans-serif;
    font-size: 18px !important;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.1em;
    color: #FFFFFF;
    background-repeat: no-repeat;
    padding: 13px 40px !important;
    padding-left: 23px !important;
}

a.btn-1:hover {
    color: #fff;
}
ul#menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

li.logo {
    width: 30.498%;
}

header {
    position: absolute;
    z-index: 99;
    width: 100%;
    top: 0;
}

ul.logo img {
    width: 430px;
    height: 89px;
}
.menuSec {
    padding: 10px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 0px 9px;
    font-family: "Montserrat", Sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
}

.menuSec ul li a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    /* background-color: #393939; */
}

.menuSec ul li:last-child a {
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #ffffff;
    left: 0px;
    width: 130px;
    text-align: left;
    top: 26px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
    color: #494c4f !important;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}



.menuSec li ul li a:hover {
    background-color: #494c4f;
    color: #fff !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators {}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}

.banner_text a {
    display: inline-block;
}

.carousel-item > img {
    width: 100%;
    object-fit: cover;
    height: 740px;
}
ul.logo {
    margin-left: 100px;
}
section.main_slider {
    position: relative;
}

.socail-links {
    position: absolute;
    bottom: 0;
    z-index: 99;
    right: 140px;
}

.socail-links ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.socail-links ul li a {
    color: #fff;
    font-size: 20px;
}
/*banner css end*/


/* about :start */
.about-main ul {
    display: flex;
    justify-content: center;
    gap: 50px;
}
.about-main li {
    position: relative;
    padding: 12px 40px;
    text-align: center;
    display: flex;
    height: 60px;
    align-items: center;
}

.about-main li img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: -2px;
    z-index: -1;
}
.about-text h2 span {
    display: block;
}
.about-text p {
    color: #7a7a7a;
    font-size: 14px;
    font-weight: 500;
}

.about-text {
    width: 85%;
}
a.btn-1.btn-2 {
    display: inline-block;
    padding: 12px 40px !important;
    padding-left: 23px !important;
}
/* about :end */


/* service :start */
section.service-wrap > img {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    top: 0;
}

section.service-wrap.all-section {
    position: relative;
}
.white {
    color: #fff;
}
.service-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-box {
    position: relative;
    margin-top: 30px;
}

.service-box h4 {
    position: absolute;
    bottom: 17px;
    padding: 0 10px;
    transition: 0.5s;
}

.service-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 60%;
}

.service-box:hover::before {
    opacity: 50%;
}

.service-box:hover h4 {
    bottom: 30px;
}
.service-btn a {
    padding: 12px 40px !important;
}
/* service :end */


/* choose :start */
.about-text.chose-text {
    width: 100%;
}
.about-text.chose-text h2 {
    font-size: 55px;
}
.slick-slide {
    opacity: 1;
}
/* choose :end */

/* gallery :start */
ul.slick-dots {
    bottom: -40px;
}


.slick-dots li button:before {
    font-size: 8px;
    opacity: 1;
    color: #00000052;
}
.slick-dots li.slick-active button:before{
    opacity: 1;
    color: #000;
}
li.slick-active {
    opacity: 1;
}
/* gallery :start */


/* testi :start */
ul.star {
    display: flex;
    gap: 8px;
}

.testi-box {
    background-color: #E5E5E5;
    /* -webkit-box-shadow: 9px 11px 14px 0 rgba(0,0,0,.1); */
    /* box-shadow: 9px 11px 14px 0 rgba(0,0,0,.1); */
    padding: 30px;
    padding-left: 60px;
    position: relative;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 1;
    height: 320px;
    border-radius: 14px;
}

ul.star a {
    color: #fec42d;
}

.testi-box p {
    color: rgba(0,0,0,.5);
    font-size: 16px;
    margin: 30px 0;
}

.test-name-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 10px;
    width: 100%;
    padding: 0 60px;
    left: 0;
}

.test-name-list h4 {
    font-size: 18px;
    line-height: 25px;
}

.test-name-list h4 span {
    font-weight: 400;
    display: block;
    font-size: 13px;
    color: rgba(0,0,0,.5);
    font-family: 'Montserrat', sans-serif;
}

.test-name-list i {
    font-size: 48px;
    color: rgba(37,117,252,.2);
}

/* testi :end */


/* contact :start */
.contact-form {
    position: relative;
}

img.cont-shap {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    right: 100px;
}

.contact-form input {
    background-color: #FFFFFF00;
    border-color: #FFFFFF;
    border-width: 0px 0px 1px 0px;
    font-family: "Montserrat", Sans-serif;
    font-size: 12px;
    font-weight: 400;
    width: 100%;
    margin-bottom: 20px;
    padding: 0;
    color: #fff;
}
.contact-form select {
    background-color: #FFFFFF00;
    border-color: #FFFFFF;
    border-width: 0px 0px 1px 0px;
    font-family: "Montserrat", Sans-serif;
    font-size: 12px;
    font-weight: 400;
    width: 100%;
    margin-bottom: 20px;
    padding: 0;
    color: #fff;
}
.contact-form textarea {
    background-color: #FFFFFF00;
    border-color: #FFFFFF;
    border-width: 0px 0px 1px 0px;
    font-family: "Montserrat", Sans-serif;
    font-size: 12px;
    font-weight: 400;
    width: 100%;
    margin-bottom: 20px;
    padding: 0;
    color: #fff;
}

.contact-form textarea {
    height: 90px;
    resize: none;
}

button.btn-1 {
    border: unset;
    background-color: unset;
}

.contact-form form {
    padding: 40px 0;
    padding-right: 180px;
    padding-left: 30px;
}

:focus-visible {
    outline: 0;
}

.contact-form ::placeholder {
    color: #fff;
}

/* contact :end */


/*footer start*/
.footerSec {
    position: relative;
    background: #141414;
    padding: 70px 0px 0px 0px;
}
.footerSec::before{
  position: absolute;
  background-image: url(../images/footer-back.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  z-index: -9999;
}
.footerSec h5 {
    position: relative;
    color: #FFFFFF;
    font-family: "Montserrat", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}
.footerSec h5::after{
  position: absolute;
}
ul.linkList li {
    padding: 10px 0px;
} 
ul.linkList li a{
  color: #AAAAAA;
  font-size: 14px;
}
ul.linklist.list li {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 10px 0px;
    color: #AAAAAA;
    font-size: 14px;
}
ul.linklist.list li a{
  color: #AAAAAA;
  font-size: 14px;
}
.footer-icon ul {
    display: flex;
    margin-top: 20px;
}
.footer-icon ul li{
  padding: 0px 10px;
}
.footer-icon ul li i{
  font-size: 20px;
  color: #fff;
  border-radius: 10px;
}

.footerSec input {
    width: 100%;
    padding: 10px 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}
.footerSec button {padding: 17px 20px !important;background-size: contain;}
.footerSec p{
  color: #AAAAAA;
  font-size: 12px;
  margin-top: 20px;
}
.footer-bottom p {
    text-align: center;
    font-size: 16px;
    margin: 0;
}
.footer-bottom {
    padding: 10px 0px;
    border-top: 1px solid #fff;
    margin-top: 20px;
}

html {
    overflow-x: hidden;
}
.quick-link {
    margin-left: 90px;
}
.choose-img.chose-inner-img {
    float: right;
}

.about-text.chose-text-inner {
    width: 100%;
}


/* blog :start */

section.blog-wrap {
    position: relative;
}

section.blog-wrap > img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    width: 100%;
}

.log-box h5 {
    color: #FFFFFF;
    font-family: "Roboto", Sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 10px;
}

.log-box p {
    margin: 0;
    line-height: 1.5em;
    font-size: 14px;
    color: #777;
}

.log-box a {
    font-size: 12px;
    color: #fff;
}

.log-box img {
    width: 100%;
    object-fit: cover;
    height: 270px;
}

/* blog :end */


/* blog details */

.blog-dtl-text p {
    color: #000;
    font-size: 14px;
}

.blog-dtl-text h5 {
    color: #000000;
    font-family: "Montserrat", Sans-serif;
    font-weight: 700;
    line-height: 27px;
}

.blog-dtl-text ul li {
    color: #000;
    font-size: 14px;
    line-height: 30px;
}

/* blog details */


/*faq start*/
section.faqs-main {
    padding: 80px 0;
}
.gorilla-content .accordion-button.collapsed {
    padding: 20px 20px;
    background-color: #e9e9e9;
    color: #000;
    line-height: 31px;
    font-family: "Montserrat", Sans-serif;
    font-size: 15px;
    font-weight: 400;
}

.gorilla-content .accordion-button {
    color: #000;
    padding: 20px 20px;
    line-height: 30px;
    background-color: #E9E9E9;
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Montserrat", Sans-serif;
    font-size: 15px;
    font-weight: 400;
}


.gorilla-content .gorrila-page-txt .color-red {
  color: #A60000;
  font-weight: 500;
  margin-bottom: 7px;
  margin-top: 30px;
  }

.gorrila-page-txt ul {
  list-style: auto;
}
.gorrila-page-txt ul li{
   color: #000000;
   font-size: 14px;
   line-height: 23px;
   font-family: 'Roboto', sans-serif;
   font-weight: 400;
   margin-bottom: 15px;
   margin-left: 15px;
}
.gorrila-page-txt ul li::marker {
  color: #A60000;
}

.accordion-body.gorrila-page-txt {
    padding: 20px 30px;
    background: #ffffff;
    border: unset !important;
    border-top: none;
}


.gorilla-content .accordion-item{
  
margin-bottom: 30px;
  
border: unset;
}


.gorilla-content  .accordion-button:not(.collapsed){
  box-shadow: none;
  /* border: 1px solid; */
  border-bottom: 0;
}

.accordion-collapse.collapse {
  /* border: 1px solid #A60000; */
  border-top: 0;
  border-radius: 0 0 10px 10px;
  /* margin-bottom: 30px; */
}


.gorilla-content  button:focus:not(:focus-visible){
  box-shadow: none;
}

.gorilla-content .accordion-button::after{
  content: '\f107';
  font-weight: 900;
  font-family: 'Font Awesome 5 free';
  background-image: none;
  color: #B91E2A;
  font-size: 30px;
}

.accordion-button:not(.collapsed)::after{
  content: '\f106';
  font-weight: 900;
  font-family: 'Font Awesome 5 free';
  transform: rotate(0deg);
}
.address {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}
.contact-main h2 {
    font-size: 45px;
    color: #000;
    line-height: 45px;
    padding-bottom: 15px;
    font-weight: 400;
}
section.faqs-main p {
    font-size: 16px;
    color: #000000;
}
/*faq end*/

/*Vinly Sales Stickers Page Start*/

/*inner Banner Start*/
.innerbanner {
    background-image: url(../images/inner-banner.png);
    height: 463px;
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    display: flex;
    align-items: center;
}
.text-innerbanner h1 {
    text-align: center;
    font-size: 48px;
    font-weight: 500;
    margin-top: 70px;
}
/*inner Banner End*/
.product-img-vinly img {
    width: 100%;
}
.text-vinly-sales h4 {
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}
.text-vinly-sales p {
    font-weight: 400;
    color: #B91E2A;
    font-size: 15px;
    padding: 7px 0px;
}
a.prod-btn {
    color: #515151;
    background-color: #e9e6ed;
    padding: 10px 13px;
    font-weight: 700;
    border-radius: 4px;
}
.text-vinly-sales {
    text-align: center;
    padding: 25px 0px;
}
.toptext-vinlysales h2 {
    color: #fff;
    font-family: "Poppins", Sans-serif;
    font-size: 50px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}
.vinly-sales {
    padding: 50px 0px;
    background: #000;
}
.product-img-vinly {
    margin-bottom: 20px;
}
/*Vinly Sales Stickers Page Start*/


/*Hats Page start*/
.text-hats p {
    color: #767676;
    font-family: 'Roboto';
    font-size: 15px;
}
.text-hats p a{
    color: #767676;
    font-family: 'Roboto';
    font-size: 15px;
}
.text-hats h3 {
    font-family: 'Roboto';
    font-weight: 500;
    color: #212529;
    font-size: 42px;
}
.hats-pg-sec .text-vinly-sales h4 {
    color: #cc3366;
    font-weight: 500;
    font-size: 16px;
}
.hats-pg-sec .text-vinly-sales {
    text-align: left;
}
.hats-pg-sec .text-vinly-sales p {
    color: #B3AF54;
}
ul.ulhets-produc {
    display: flex;
    justify-content: space-between;
}
.hatspg-drop .select-dropdown,
.hatspg-drop .select-dropdown * {
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
}
.hatspg-drop .select-dropdown {
    position: relative;
    background-color: #E6E6E6;
    border-radius: 4px;
}
.hatspg-drop .select-dropdown select {
    font-size: 1rem;
    font-weight: normal;
    max-width: 100%;
    padding: 9px 24px 9px 21px;
    border: none;
    /* background-color: transparent; */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 250px;
    border: 1px solid #000;
    border-radius: 5px;
}
.hatspg-drop .select-dropdown select:active, .select-dropdown select:focus {
    outline: none;
    box-shadow: none;
}
.hatspg-drop .select-dropdown:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 0;
    height: 0;
    margin-top: -2px;
    border-top: 5px solid #aaa;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}
ul.ulhets-produc li {
    font-family: 'Montserrat';
}
.eproduct-pg header {
    position: unset;
    background: #000;
}
.eproduct-pg .menuSec {
    padding: 20px 0;
}
/*Hats Page End*/


/*Product Detail Page Start*/
.topproduct-detail .text-hats {
    display: flex;
}
.text-product-detail h2 {
    font-size: 40px;
    font-weight: 500;
    font-family: 'Roboto';
    color: #333333;
}
.text-product-detail p {
    font-size: 20px;
    color: #B3AF54;
    padding: 10px 0px;
}
ul.productdetail-addto li a {
    font-size: 16px;
    border: 1px solid #7F54B3;
    padding: 10px;
    color: #fff;
    background: #7F54B3;
    font-weight: 700;
    border-radius: 5px;
}
ul.category-productdetail {
    display: flex;
    padding: 20px 0px;
}
ul.category-productdetail li a {
    color: #cc3366;
}
ul.category-productdetail li a {
    font-size: 16px;
}
.text-product-detail {
    padding: 38px 0px;
    margin-left: 16px;
}
.text-reviews h2 {
    font-size: 32px;
    font-family: 'Roboto';
    color: #333333;
    font-weight: 500;
    margin: 8px 0px 16px;
}
.text-reviews p {
    font-size: 16px;
    color: #333333;
    font-family: 'Roboto';
    margin-bottom: 8px;
}
.reviewsinput p {
    font-size: 16px;
    color: #333333;
    margin-bottom: 0px;
}
.reviewsinput textarea {
    width: 100%;
    height: 100px;
    border: 1px solid #000;
}
.reviewsinput {
    margin-bottom: 20px;
}
.reviewsinput input {
    width: 100%;
    height: 47px;
    border: 1px solid #000;
}
.reviews-checkbox p {
    font-size: 16px;
    color: #333333;
    font-family: 'Roboto';
}
.reviews-checkbox button {
    padding: 8px 19px;
    border: unset;
    font-weight: 700;
    color: #515151;
}
.toptextrelated h2 {
    font-size: 32px;
    font-family: 'Roboto';
    color: #333333;
    font-weight: 500;
}
.related-pro {
    padding: 40px 0px;
}
.tabs-product-detail  {
    padding: 50px 0px 30px;
}
.tabs-product-detail .nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
    font-family: 'Roboto';
    font-weight: 500;
}
.tabs-product-detail .nav-tabs {
    border-bottom: 1px solid #dee2e6;
    margin-left: 20px;
}
.dvmainform {
    margin-top: 40px;
}
.reviews-stars p {
    font-size: 16px;
    color: #333333;
    font-family: 'Roboto';
    margin-bottom: 0px;
}
.reviews-stars {
    padding: 15px 0px;
}

.rate {
    float: left;
    height: 0px;
    padding: 0 0px;
}
.rate:not(:checked) > input {
    position:absolute;
    top:-9999px;
}
ul.productdetail-addto {
    display: flex;
    align-items: center;
    gap: 10px;
}

ul.productdetail-addto input {
    border: 1px solid #00000040;
    height: 40px;
    border-radius: 5px;
    padding: 0 10px;
    width: 100%;
}


ul.productdetail-addto li:nth-child(1) {
    width: 10% !important;
}
.rate:not(:checked) > label {
    float:right;
    width:1em;
    overflow:hidden;
    white-space:nowrap;
    cursor:pointer;
    font-size:30px;
    color:#ccc;
}
.rate:not(:checked) > label:before {
    content: '★ ';
}
.rate > input:checked ~ label {
    color: #c36;    
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #c36;  
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #c36;
}

.hats {
    padding: 100px 0;
}
.product-detail {
    padding: 100px 0;
}
.text-innerbanner h1 span {
    display: block;
}
/*Product Detail Page End*/

ul.linklist.list p {
    margin: 0;
}


/*================================================
Cart Area CSS
=================================================*/

.cart-table table {
    margin-bottom: 0;
}

.cart-table table thead tr th {
    border-bottom-width: 0px;
    vertical-align: middle;
    padding: 25px 30px;
    white-space: nowrap;
    font-size: var(--font-size);
    font-weight: 600;
}

.cart-table table tbody tr td {
    vertical-align: middle;
    color: var(--paragraph-color);
    white-space: nowrap;
    font-weight: 400;
    font-size: var(--font-size);
    padding: 0px 30px;
}

.cart-table table tbody tr td .remove {
    font-size: 18px;
    color: red;
}

.cart-table table tbody tr td.product-thumbnail a {
    display: inline-block;
}

.cart-table table tbody tr td.product-thumbnail a img {
    /* background-color: #f9fafb; */
    /* border: 1px solid #ebebeb; */
    padding: 15px;
}

.cart-table table tbody tr td.product-name a {
    display: inline-block;
    color: var(--black-color);
}

.cart-table table tbody tr td.product-quantity .input-counter {
    max-width: 130px;
    min-width: 130px;
    text-align: center;
    display: inline-block;
    position: relative;
}

.cart-table table tbody tr td.product-quantity .input-counter span {
    position: absolute;
    top: 0;
    background-color: var(--white-color);
    cursor: pointer;
    color: var(--paragraph-color);
    width: 45px;
    height: 35px;
    line-height: 65px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    font-size: 18px;
    border-radius: 0;
    border: 1px solid #ebebeb;
}

.cart-table table tbody tr td.product-quantity .input-counter span.minus-btn {
    left: 0;
}

.cart-table table tbody tr td.product-quantity .input-counter span.plus-btn {
    right: 0;
}

.cart-table table tbody tr td.product-quantity .input-counter input {
    height: 35px;
    color: var(--black-color);
    outline: 0;
    display: block;
    border: none;
    background-color: var(--white-color);
    text-align: center;
    width: 100%;
    font-size: var(--font-size);
    font-weight: 600;
    border: 1px solid #ebebeb;
}

.cart-table table tbody tr td.product-quantity .input-counter input::-webkit-input-placeholder {
    color: var(--black-color);
}

.cart-table table tbody tr td.product-quantity .input-counter input:-ms-input-placeholder {
    color: var(--black-color);
}

.cart-table table tbody tr td.product-quantity .input-counter input::-ms-input-placeholder {
    color: var(--black-color);
}

.cart-table table tbody tr td.product-quantity .input-counter input::placeholder {
    color: var(--black-color);
}

.cart-table table tbody tr td.product-subtotal {
    overflow: hidden;
}

.cart-buttons {
    margin-top: 30px;
    text-align: end;
    /* background-color: #f9fafb; */
    border: 1px solid #ebebeb;
    padding: 15px;
}

.cart-buttons .shopping-coupon-code {
    position: relative;
    max-width: 530px;
}

.cart-buttons .shopping-coupon-code .form-control {
    height: 60px;
    color: var(--black-color);
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
    border: 1px solid #e1e1e1;
    background-color: var(--white-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border-radius: 3px;
    padding: 25px;
    font-size: 15px;
    font-weight: 400;
}

.cart-buttons .shopping-coupon-code button {
    position: absolute;
    right: 0;
    top: 0;
    height: 60px;
    background: var(--main-colorr);
    color: var(--white-color);
    border: none;
    padding: 0 25px;
    line-height: 50px;
    outline: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    font-size: var(--font-size);
    font-weight: 400;
    cursor: pointer;
}

.cart-buttons .shopping-coupon-code button:hover {
    background-color: var(--optional-color);
}

.cart-buttons .default-btn {
    color: var(--white-color) !important;
    border-radius: 0;
    padding: 18px 30px;
}

.cart-buttons .default-btn span {
    background-color: var(--black-color);
}

.cart-totals {
}

.cart-totals h3 {
    margin-bottom: 25px;
    font-size: 22px;
}

.cart-totals ul {
    padding-left: 0;
    margin: 0 0 25px;
    list-style-type: none;
    /* padding: 10px 20px; */
}

.cart-totals ul li {
    color: var(--paragraph-color);
    overflow: hidden;
    font-size: var(--font-size);
    font-weight: 400;
    border: 1px solid #e9e6ed;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.cart-totals ul li:last-child {
    font-size: 18px;
    margin-bottom: 0;
}

.cart-totals ul li:last-child span {
    color: var(--paragraph-color);
    font-weight: 600;
}

.cart-totals ul li span {
    /* float: right; */
    color: var(--paragraph-color);
}

.cart-totals .default-btn {
    width: 100%;
}


/*================================================
Wishlist Area CSS
=================================================*/

.wishlist-table table {
    margin-bottom: 0;
}

.wishlist-table table thead tr th {
    border-bottom-width: 0px;
    vertical-align: middle;
    padding: 25px 30px;
    white-space: nowrap;
    font-size: var(--font-size);
    font-weight: 600;
}

.wishlist-table table tbody tr td {
    vertical-align: middle;
    color: var(--paragraph-color);
    white-space: nowrap;
    font-weight: 400;
    font-size: var(--font-size);
    padding: 25px 30px;
}

.wishlist-table table tbody tr td .remove {
    font-size: 18px;
}

.wishlist-table table tbody tr td.product-thumbnail a {
    display: inline-block;
}

.wishlist-table table tbody tr td.product-thumbnail a img {
    background-color: #f9fafb;
    border: 1px solid #ebebeb;
    padding: 15px;
    width: 120px;
}

.wishlist-table table tbody tr td.product-name a {
    display: inline-block;
    color: var(--black-color);
}
td.product-thumbnail img {width: 72px;height: 72px;object-fit: cover;}
.cart-totals a {
    background: #7f54b3;
    text-align: center;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}



/*Check Out Start*/
.banner-text.chg ul li h2 {
    color: #b8bbc6;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 0;
    transition: 0.5s;
}
.banner-text.chg ul li i {
    font-size: 30px;
    color: #aeacbd;
}
.banner-text.chg ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}
.banner-text.chg ul li h2:hover {
    color: #fff;
    transition: 0.5s;
}
.checkout-coupon h2 {
    font-size: 15px;
    margin-bottom: 0;
    color: #000;
    font-weight: 600;
    letter-spacing: 0.3px;
    font-family: 'Lato', sans-serif;
}


.checkout-coupon-form {
    border: 2px dashed #ddd;
    margin-top: 25px;
    text-align: center;
    padding: 40px;
}
.checkout-coupon h2 a {
    margin-left: 10px;
    color: #b91e2a;
    font-weight: 600;
    text-decoration: underline;
}
.checkout-coupon-form h2 {
    color: #849191;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 30px;
}
.checkout-coupon-form ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.checkout-coupon-form ul li input {
    width: 265px;
    height: 50px;
    padding: 0 10px;
    border: 2px solid #e6e6e6;
}
.checkout-coupon-form ul li input::placeholder {
    color: #8c9a98;
    font-size: 14px;
      font-family: 'Lato', sans-serif;
}
.checkout-coupon-form ul li button {
    width: 150px;
    height: 50px;
    background: #059ed0;
    border: none;
    color: #fff;
      font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 500;
}
.checkout-main {
    margin-top: 5%;
}
.billing-details-form h2 {
    font-size: 25px;
    color: #242424;
    font-weight: 600;
    font-family: 'Montserrat';
}
.billing-details-form label {
    font-size: 14px;
    color: #242424;
    margin-bottom: 5px;
    font-weight: 500;
    font-family: 'Lato', sans-serif;
}.billing-details-form input,
.billing-details-form select {
    height: 50px;
    padding: 0 10px;
    margin-bottom: 4%;
    border: 2px solid #e6e6e6;
    width: 100%;
}
.billing-details-form input {
    color: #000;
}
.checkout-main label span {
    color: #e01020;
}
.billing-details-form input::placeholder {
    color: #8c9a98;
    font-size: 14px;
     font-family: 'Lato', sans-serif;
}
.billing-details-form select {
    color: #8c9a98;
    font-size: 14px;
      font-family: 'Lato', sans-serif;
}
.billing-details-form textarea {
    width: 100%;
    height: 200px;
    padding: 15px 10px;
    border: 2px solid #e6e6e6;
    color: #000;
}
.billing-details-form textarea::placeholder {
    color: #8c9a98;
    font-size: 14px;
      font-family: 'Lato', sans-serif;
}
.your-order-box h2 {
    font-size: 30px;
    color: #242424;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Montserrat';
}
.your-order-box ul.your-order li h2 {
    font-size: 18px;
    margin-bottom: 0;
}
.your-order-box {
    padding: 30px;
}
.your-order-box ul li {
    display: flex;
    align-content: center;
    justify-content: space-between;
    border-bottom: 2px solid #efefef;
    padding: 15px 0;
}
.your-order-box li.no-padding {
    padding: 18px 0 0 0 !important;
    border: none !important;
}
.your-order-box ul li span {
    color: #84868d;
    font-size: 16px;
}
.your-order-box ul li h3 {
    font-size: 16px;
    margin-bottom: 0;
    font-family: 'Lato', sans-serif;
}
.your-order-box h4 {
    margin-bottom: 0;
    font-size: 22px;
    color: #000000;
    font-family: 'Lato', sans-serif;
    font-weight: 800;
}
.your-order-box ul.assistance {
    background: #f6f5f8;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 25px;
    margin-bottom: 20px;
}
.your-order-box ul.assistance li {
    border: none;
}

.your-order-box p {
    border-top: 1px solid #e6e6e6;
    padding-top: 18px;
    line-height: 25px;
    color: #77777b;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
    font-family: 'Lato', sans-serif;
}
.your-order-box p a {
    color: #333;
    font-weight: 700;
}
.your-order-box button {
    width: 20%;
    height: 50px;
    font-size: 16px;
    background: #7f54b3;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    border: none;
}
ul.assistance li h2 {
    border: 2px solid #000;
    font-size: 16px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: #000;
}
ul.your-order {
    background-color: #fff;
    padding: 20px 20px;
    border: 2px solid #efefef;
}

.your-order-box ul li p {
    color: #000;
    line-height: 23px;
    margin-bottom: 0;
    padding-top: 0;
    border: none;
}
.checkout-coupon-form.faq__panel {
    display: none;
}
.checkout-coupon-form.faq__panel.faq__panel_active {
    display: block;
}
.check-out-sec {
    padding: 100px 0;
}

.inner-shop-banner-text.chg ul li a {
    font-size: 30px;
}

li.link-active a {
    border-bottom: 2px solid #06a9e4;
}

/*Check Out End*/