.kikson-boost-icon{
  background-color: #e2c153;
  padding: 10px 20px 8px 25px;
  border-radius: 90px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all .3s linear;
}
.boost-text{
  margin: 0px 5px 0px 0px;
  font-size: 1rem;
  font-weight: 600;
}
.kikson-boost-icon svg{
  display: block;
}

/* ANIMATE BOOST */

.kikson-boost.active .kikson-boost-icon{
  background-color: #32b15d;
  transition: all .3s linear;
}

.kikson-boost.active .boost-icon{
  animation-name: boost_rocket;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

@keyframes boost_rocket{
  0%   {transform: translate(3px, -3px);}
  25%  {transform: translate(6px, -6px);}
  50%  {transform: translate(9px, -9px);}
  75%  {transform: translate(12px, -12px);}
  100% {transform: translate(15px, -15px);}
}

/* ANIMATE BOOST */

.kikson-boost.boost-off{
  display: none;
}

/* GUN ARCHIVE */

.gun-archive-doughter{
  display: flex;
}
.gun-archive-left{
  width: 270px;
}
.gun-archive-left_child{
  background-color: #000;
  padding: 40px 40px 40px 40px;
  transition: all .3s linear;
  width: 270px;
}
.gun-archive-left.fixed .gun-archive-left_child {
  position: fixed;
  top: 120px;
  transition: all .3s linear;
}
.logged-in .gun-archive-left.fixed .gun-archive-left_child {
  top: 152px;
}
.gun-archive-left_title{
  margin: 0px 0px 20px 0px;
}
.gun-archive-left_title h4{
  margin: 0px 0px 0px 0px;
  color: #e2c153;
}
.gun-archive-left_categories ul{
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}
.gun-archive-left_categories ul li{
  list-style-type: none;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}
.gun-archive-left_categories ul li:last-child{
  border-bottom: solid 0px #fff;
}
.gun-archive-left_categories ul li a{
  text-decoration: none;
  color: #fff;
  transition: all .3s linear;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px 5px 10px;
}
.parent-drop-category{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.parent-drop-category ul{
  display: none;
}
.parent-drop-category.active ul{
  display: block;
  height: 250px;
  background-color: #ffffff;
  overflow-x: scroll;
  width: 100%;
  padding: 0px 0px 0px 0px;
}

/* SCROLLBAR COLOR */

.parent-drop-category.active ul {
  --scrollbarBG: #000;
  --thumbBG: #e2c153;
  overflow-x: hidden
}
.parent-drop-category.active ul::-webkit-scrollbar {
  width: 11px;
}
.parent-drop-category.active ul {
  scrollbar-width: thin;
  scrollbar-color: #000 #e2c153;
}
.parent-drop-category.active ul::-webkit-scrollbar-track {
  background: #e2c153;
}
.parent-drop-category.active ul::-webkit-scrollbar-thumb {
  background-color: #e2c153 ;
  border-radius: 6px;
  border: 3px solid #000;
}

/* SCROLLBAR COLOR */

.parent-drop-category.active ul li a{
  color: #000;
}
.parent-drop-category .cat_icon{
  transition: all .3s linear;
  width: 17px;
  width: 17px;
}
.parent-drop-category.active .cat_icon{
  transform: rotate(180deg);
  transition: all .3s linear;
}
.parent-drop-category .cat_link{
  width: fit-content;
}
.gun-archive-left_categories .cat_text{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gun-archive-left_categories .cat_icon{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gun-archive-left_categories ul li a:hover{
  transition: all .3s linear;
  color: #e2c153;
}
.gun-archive-left_categories ul li a svg path{
  transition: all .3s linear;
}
.gun-archive-left_categories ul li a:hover svg path{
  transition: all .3s linear;
  fill: #000;
}
.gun-archive-left_categories ul li a svg{
  transition: all .3s linear;
}
.gun-archive-left_categories ul li a:hover svg{
  transition: all .3s linear;
  transform: rotate(180deg);
}
.gun-archive-left_categories ul ul{
  padding: 0px 0px 0px 20px;
}
.gun-archive-right{
  width: calc(100% - 270px);
}
.gun-cort-navigate{
  display: flex;
  justify-content: space-between;
  margin: 0px 20px 20px 0px;
  column-gap: 20px;
}
.gun-sort-template{
  display: flex;
  align-items: center;
  column-gap: 7px;
}
.find-products{
  width: 100%;
  border-radius: 180px;
}
.find-products form{
  display: flex;
  align-items: center;
}
.find-products form input{ 
  padding: 0px 0px 0px 0px;
  border: solid 0px #000;
  outline: none;
  background-color: transparent;
  height: 46px;
  background-color: #f4f4f4;
  border-radius: 0px 180px 180px 0px;
  padding: 0px 20px 0px 20px;
  width: calc(100% - 51px);
}
.find-products form button{
  padding: 0px 0px 0px 0px;
  border: solid 0px #000;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  height: 46px;
  background-color: #f4f4f4;
  width: 51px;
  border-radius: 90px 0px 0px 90px;
  border-right: solid 1px #fff;
}
.find-products form button svg{
  margin: 6px 0px 0px 3px;
}
.gun-sort-clear a{
  color: #6d6d6d !important;
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition:    all .3s ease-in-out;
  -o-transition:      all .3s ease-in-out;
  -ms-transition:     all .3s ease-in-out;
  transition:         all .3s ease-in-out;
}
.gun-sort-clear a:hover{
  color: red !important;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition:    all .3s ease-in-out;
  -o-transition:      all .3s ease-in-out;
  -ms-transition:     all .3s ease-in-out;
  transition:         all .3s ease-in-out;
}
.gun-sort-template svg{
  display: block;
  cursor: pointer;
}
.gun-sort-thumb.active path{
  stroke: #e2c153;
}
.gun-sort-list.active path{
  stroke: #e2c153;
}
.gun-sort-thumb{
  margin: 0px 0px 0px 0px;
}
.gun-sort-panel{
  display: flex;
  justify-content: flex-end;
}
.gun-sort-panel .dropbtn{
  background-color: #E2C153 !important;
  color: #000 !important;
  transition: all 0.3s linear;
  outline: none;
}
.gun-sort-by{
  display: flex;
  align-items: center;
}
.gun-sort-by select{
  width: 196px;
  margin: 0px 0px 40px 0px;
}
.gun-products{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 20px;
  padding: 0px 0px 0px 0px;
  margin: 0px 20px 80px 0px;
  position: relative;
}
body.gun-sort-list_active .gun-products{
  grid-template-columns: repeat(1, 1fr);
}
.single-gun-product{
  border: solid 1px rgba(0, 0, 0, 0.1);
  transition: all .3s linear;
  display: flex;
  flex-direction: column;
}
body.gun-sort-list_active .single-gun-product{
  flex-direction: row;
}
.single-gun-product:hover{
  border: solid 1px #000;
  transition: all .3s linear;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}
.single-gun-product img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /*transition: all .3s linear;*/
}
/*.single-gun-product:hover img{
  transform: scale(1.05);
  transition: all .3s linear;
}*/
.single-gun-product svg{
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.gun-image{
  overflow: hidden;
  border-bottom: solid 1px rgb(229, 229, 229);
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  background-color: #e5e5e5;
  position: relative;
}
.view-woo{
	display: flex;
	position: absolute;
	top: 10px;
	right: 10px;
	column-gap: 5px;
  background-color: #32b15d;
  align-items: center;
  border-radius: 180px;
  width: fit-content;
  padding: 3px 10px 3px 10px;
  border: solid 1px #0000004d;
}
.view-woo-left svg{
  display: block;
  width: 30px;
  height: 30px;
}
.view-woo-right{
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
body.gun-sort-list_active .gun-image{
  width: 50%;
}
body.gun-sort-list_active .gun-content{
  width: 50%;
}
.gun-image img, .gun-image picture{
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}
.gun-content{
  padding: 20px 20px 20px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  column-gap: 10px;
  row-gap: 10px;
}
.gun-title{
  margin: 0px 0px 0px 0px;
  color: #000;
}
.gun-title h4{
  margin: 0px 0px 10px 0px;
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  color: #000;
}
.gun-date, .gun-area, .gun-type, .gun-brand{
  color: #000;
  opacity: 0.8;
  position: relative;
  display: flex;
  align-items: center;
  word-break: break-all;
}
.gun-content .empty{
  color: red;
}
.gun-content .empty svg{
  width: auto;
  height: auto;
  display: block;
  margin: 0px 0px 0px 5px;
}
.gun-brand{
  margin-bottom: 20px;
}
.gun-date::after, .gun-area::after, .gun-type::after{
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgb(0 0 0 / 10%);
  position: absolute;
  bottom: -6px;
  left: 0px;
}
.gun-action{
  flex-grow: 1;
  display: flex;
  align-items: end;
}
.gun-action-doughter{
  column-gap: 10px;
  row-gap: 10px;
  display: flex;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
}
.gun-price{
  margin: 0px 0px 0px 0px;
  color: #000;
  flex-grow: 1;
  display: flex;
  align-items: end;
}
.gun-price span{
  color: #000;
  font-weight: 800;
}
.gun-more{
  background-color: #e2c153;
  color: #000;
  border-radius: 90px;
  padding: 12px 24px 12px 24px;
  font-weight: 600;
  transition: all .3s linear;
}
.gun-more:hover{
  transition: all .3s linear;
  color: #fff;
  background-color: #000;
}
.gun-pagination-doughter{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.gun-pagination{
  padding: 0px 0px 0px 40px;
}
.single-gun-pagination a{
  width: 27px;
  height: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px 5px 5px 5px;
  cursor: pointer;
  transition: all .3s linear;
  cursor: pointer;
  border-radius: 180px;
}
.single-gun-pagination a{
  transition: all .3s linear;
}
.single-gun-pagination a:hover{
  transition: all .3s linear;
  /*transform: scale(1.1);*/
}
.single-gun-pagination.number a{
  color: rgba(0, 0, 0, 0.7);
}
.single-gun-pagination.number a:hover{
  background-color: #e2ba31;
  color: #000;
  transition: all .3s linear;
}
.single-gun-pagination.number.active a{
  background-color: #e2ba31;
  color: #000;
  transition: all .3s linear;
}


.dropbtn {
  background-color: #f9f9f9;
  color: #0f0f0f;
  padding: 15px 35px 15px 35px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E2C153;
  }
  .dropbtn span{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .dropbtn span svg{
    margin: 0px 10px 0px 0px;
  }

  .dropdown {
  position: relative;
  }

  .dropdown-content {
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 98;
  max-height: 0;
  min-width: 160px;
  transition: max-height 0.15s ease-out;
  overflow: hidden;
  bottom: 0;
  transform: translate(0%, 100%);
  flex-direction: column;
  }

  .dropdown-content a {
  color: black;
  background-color: #f9f9f9;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  width: 100%;
  }

  .dropdown-content a:hover {
  background-color: #e2e2e2;
  }

  .dropdown:hover .dropdown-content {
  max-height: 500px;
  min-width: 160px;
  transition: max-height 0.25s ease-in;
  }

  .dropdown:hover .dropbtn {
  background-color: #E2C153;
  color: #000;
  }
  .first-arrow svg path, .last-arrow svg path{
    stroke: #e2ba31;
  }
  .single-gun-pagination.first-arrow a,
  .single-gun-pagination.last-arrow a
  .single-gun-pagination.left-arrow a,
  .single-gun-pagination.right-arrow a{
    background-color: transparent !important;
  }

  .kikson-4mounth{
    position: fixed;
    top: 50%;
    right: 0px;
    background-color: #000000;
    padding: 40px 40px 40px 40px;
    border-radius: 16px 0px 0px 16px;
    z-index: 100;
    transform: translate(0%, -50%);
  }
  .kikson-4mounth-title {
    font-size: 28px;
    line-height: 36px;
    font-weight: 600;
    text-align: center;
    margin: 0px 0px 10px 0px;
    color: #fff;
}
.kikson-4mounth-description{
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  border-top: solid 1px #fff;
  padding: 10px 0px 0px 0px;
}
.kikson-4mounth-description span{
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  display: block;
  color: #E2C153;
  margin: 10px 0px 0px 0px;
}

@keyframes animate {
    0% {
      background-position: 0%;
    }
    100% {
      background-position: 400%;
    }
  }

  @media (max-width: 1024px) {
    .gun-products {
      grid-template-columns: repeat(2, 1fr);
      padding: 0px 0px 0px 0px;
      margin: 0px 0px 0px 0px;
    }
    .gun-pagination {
      padding: 0px 0px 0px 0px;
    }
    body.gun-sort-list_active .gun-content {
      width: 100%;
    }
  }

  @media (max-width: 768px) {
    .gun-archive-doughter {
      flex-direction: column;
    }
    .gun-archive-left {
      width: 100%;
      margin: 0px 0px 40px 0px;
    }
    .gun-archive-right {
      width: 100%;
    }
    .gun-archive-left_child{
      width: 100%;
    }
    .gun-title h4{
      font-size: 20px;
      line-height: 28px;
    }
    .gun-content {
      padding: 20px 10px 20px 10px;
    }
    .gun-more {
      font-size: 14px;
      padding: 8px 15px 8px 15px;
    }
    .gun-date, .gun-area, .gun-type, .gun-brand{
      font-size: 14px;
    }
    .view-woo-left svg {
        display: block;
        width: 20px;
        height: 20px;
    }
    .view-woo {
      width: fit-content;
   }
   .gun-cort-navigate {
      margin: 0px 0px 20px 0px;
      flex-direction: column-reverse;
      width: 100%;
      align-items: end;
      row-gap: 20px;
  }
  }

  @media (max-width: 500px) {
    body.gun-sort-list_active .single-gun-product {
      flex-direction: column;
    }
    body.gun-sort-list_active .gun-image {
      width: 100%;
    }
    .gun-products {
      column-gap: 10px;
      row-gap: 10px;
      padding: 0px 0px 0px 0px;
  }
  }

  @media (max-width: 360px){
        .gun-content {
        padding: 20px 10px 20px 10px;
    }
    .gun-products {
      column-gap: 10px;
      row-gap: 10px;
  }
      .gun-more {
        font-size: 12px;
    }
  }

  .spiner-box{
    position: absolute;
    background-color: rgb(0 0 0 / 10%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.spiner-box .spinner {
  width: 40px;
  height: 40px;

  position: relative;
  margin: 100px auto;
}

.spiner-box .double-bounce1{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}
.spiner-box .double-bounce2{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #e2c153;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.spiner-box .double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}


/* GUN ARCHIVE */

/* SHARE PRODUCT */

.kikson-share-panel{
  display: inline-flex;
  gap: 7px;
}
.kikson-share-panel_single{
  border: 1px solid #E8E8E8;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  transition: border 0.3s ease;
}
.kikson-share-panel_single svg{
  display: block;
}
.kikson-share-panel_single:hover{
  border: 1px solid #E2C153;
}

/* SHARE PRODUCT */
