@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&family=Share+Tech+Mono&family=Titillium+Web&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Share+Tech&display=swap');

@font-face {
  font-family: "fontAws";
  src: url("https://tencelu.com/fonts/fa-solid-900.ttf");
  }

:root {
  --black: #161616;
  --white: #fff;
  --blue: #2a2a86;
  --gray: rgb(179, 179, 179);
  --darkgray: rgb(112, 116, 129);
  --lightgray: #ededed;
  --border: #ddd;
  --red: rgb(255,94,77);
}

.fade-enter-active, .fade-leave-active {
  transition: opacity .1s;
}
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
  opacity: 0;
}

html,
body {
  margin: 0px;
  padding: 0px;
  font-family: "Nunito", Courier, monospace;
  font-size: 14px;
  color: var(--black);
}

*,
*:focus,
*:hover {
  outline: none;
}

.noscroll {
  overflow: hidden;
}

/* custom scrollbar */
::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #d6dee1;
  border-radius: 20px;
  border: 6px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #a8bbbf;
}

::-webkit-scrollbar-thumb:active {
  background-color: #94a3a7;
}
/* end custom scrollbar*/

/*
                    HEADER
*/

.v_header_container {
  width: 100%;
  height: 60px;
  background-color: var(--black);
  display: flex;
  justify-content: center;
  padding: 0px 20px;
}

.v_header_container_main {
  width: 100%;
  line-height: 60px;
  display: flex;
  z-index: 20
}

.v_header_brands{
  width: 100%;
  height: 120px;
  top:60px;
  background: var(--black);
  animation-timing-function: linear !important;
  position: absolute;
  z-index: 10;
  display: flex;
  justify-content: space-around;
  align-items: center;
  
}

.v_header_brands_group {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.v_header_brands_group > div {
  width: 70px;
  height: 70px;
  padding: 7px;
  cursor: pointer;
  border-radius: 3px;
  transition: all .3s;
  margin: 0px 10px;
  font-size: 14px;
  color: var(--gray);
}

.v_header_brands_group > div:hover{
  padding: 0px;
}

.v_header_brands_group > div img{
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.icon {
  width: 200px;
  height: 60px;
}

.icon img {
  height: 30px;
}

.options {
  display: none;
}

.menu_option {
  color: var(--white);
  margin: 0px 20px;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
}

.menu_option:hover {
  color: var(--blue);
}

.shopping_cart {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: var(--white);
  line-height: 60px;
}

.shopping_cart > img {
  margin-left: 30px;
  height: 23px;
  cursor: pointer;
  user-select: none;
}

.shopping_cart > img:hover {
  color: var(--blue);
}

/*
                    CAROUSEL
*/

.carousel-indicators .active {
  background-color: var(--black) !important;
  margin: 0px 20px;
}

.carousel-indicators li {
  border: none !important;
  background-color: var(--gray);
  margin: 0px 20px;
}

.carousel-inner{
  height: 300px;
}

.carousel-inner .item{
  display:block !important;
  height:300px !important;/*set an height */
  line-height:300px !important;/* set the baseline at 100px from top*/
  overflow:hidden !important;/* crops/cut off */
}

.carousel-picture{
  object-fit: cover;
  width: 50px;
  height: 300px;
}

.VueCarousel-navigation-button{
  display: none;
  position:absolute;
  color: gray !important;
  font-family: 'fontAws' !important;
  font-size: 40px;
}

.VueCarousel-navigation-next{
  margin-right: 50px;
}

.VueCarousel-navigation-prev{
  margin-left: 50px;
}

.VueCarousel-navigation-button:hover{
  color:black !important;
}




/*
                    ARTICLES
*/

.search_input_container {
  width: 100%;
  /*height: 120px;*/
  padding: 35px 20px 0px 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  transition: height 0.2s ease-in-out;
  margin-top: 35px;
}

.search_input_container > div {
  width: 100%;
  height: 50px;
  border: 1px solid var(--gray);
  border-radius: 50px;
  display: flex;
}

.search_input {
  width: calc(100% - 60px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
}

.search_input > input {
  width: calc(100% - 20px);
  font-size: 20px;
  border: none;
}

.search_cetegory {
  width: 120px;
  display: none;
  justify-content: center;
  align-items: center;
}

.search_cetegory > select {
  border: none;
  color: var(--darkgray);
}

.search_filter {
  width: 80px;
  display: none;
  justify-content: center;
  align-items: center;
  color: var(--darkgray);
  cursor: pointer;
  user-select: none;
}

.search_filter:hover{
  color: var(--black)
}

.search_icon {
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search_icon > img {
  height: 30px;
}

.articles_list_container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.arrow-page{
  width: calc(50% - 600px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrow-page>i{
  font-size: 40px;
  color: var(--gray);
  cursor: pointer;
  user-select: none;
}

.disable-arrow{
  color: var(--lightgray);
}

.articles_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding-bottom: 10px;
  min-height: 540px;
  transition: height 2s ease-in;
}

.article_container {
  border-radius: 6px;
  width: 100%;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 2px 0 rgba(0, 0, 0, 0.1);
  height: 410px;
  border: 1px solid var(--gray);
  margin: 15px 20px;
  background: white;
  cursor: pointer;
  user-select: none;
  transition: box-shadow 0.2s;
}

.article_container:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.article_container_fake {
  display: none;
}

.article_picture {
  background: white;
  width: 100%;
  height: 300px;
  border-radius: 5px 5px 0px 0px;
  border-bottom: 1px solid var(--gray);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-size: contain;
  background-origin: content-box;
  padding: 50px;
  background-repeat: no-repeat;
  -webkit-transition: background-image 0.5s ease-in-out;
  transition: background-image 0.5s ease-in-out;
  background-position:center;
}

.article_picture > img {
  height: calc(100% - 50px);
  transition: height 0.2s ease-in-out;
}


.article_description {
  width: 100%;
  height: 100px;
}

.article_price {
  font-size: 16px;
  font-weight: 600;
  padding: 15px 15px 0px 15px;
}

.article_name {
  padding: 0px 15px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Share Tech', sans-serif;
  font-size: 26px;
}

.article_category {
  font-size: 14px;
  color: var(--gray);
  padding: 0px 15px;
}

.pagination-container{
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

.fade-enter-to,
.fade-leave {
  opacity: 1;
}

.fade-enter-active {
  transition: opacity 0.5s ease;
}

.fade-leave-active {
  transition: opacity 0.5s ease;
  position: absolute;
}

.fade-move {
  transition: all 0.5s ease;
}



.slowfade-enter,
.slowfade-leave-to {
  opacity: 0;
}

.slowfade-enter-to,
.slowfade-leave {
  opacity: 1;
}

.slowfade-enter-active {
  transition: opacity 2s ease;
}

.slowfade-leave-active {
  transition: opacity 2s ease;
  position: absolute;
}

.slowfade-move {
  transition: all 2s ease;
}

/*
                ARTICLE CARD
*/

.v_article_card_container {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.432);
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
}

.v_article_card_container > div {
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border-radius: 5px;
  background: var(--white);
  padding: 0px;
  display: flex;
  flex-direction: column-reverse;
  /* align-items: flex-start; */
  justify-content: flex-end;
}

.v_article_card_pictures {
  width: calc(100% - 20px);
  height: 300px;
  display: flex;
  margin: 10px 0px;
  flex-direction: column;
}

.v_article_card_pictures > div:first-child {
  width: 100%;
  height: 200px;
  margin-right: 10px;
  border-radius: 6px;
  background-size: auto 95%;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: background-image 0.3s;
}

.v_article_card_pictures > div:last-child {
  width: 100%;
  margin-left: 10px;
  display: flex;
  justify-content: space-between;
  height: 80px;
}

.v_article_card_pictures > div:last-child > div {
  width: 100%;
  height: 80px;
  border-radius: 6px;
  background-size: auto 95%;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  overflow: hidden;
  transition: background-size 0.1s;
}

.v_article_card_pictures > div:last-child > div:hover {
  background-size: auto 110%;
}

.v_article_card_left_container {
  width: 100%;
}

.v_article_card_title {
  margin-top: 15px;
  width: 100%;
  font-size: 18px;
  padding: 0px 20px;
  text-align: left;
}

.v_article_card_title > i {
  color: var(--gray);
  margin-left: 20px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
}

.v_article_card_price {
  font-size: 20px;
  padding: 0px 20px;
  text-align: left;
  font-weight: 800;
  flex-direction: row-reverse !important;
  justify-content: flex-end !important;
}

.v_article_card_details {
  margin: 20px 20px 0px 20px;
  max-height: 180px;
  overflow-y: auto;
}

.v_article_card_add_to_cart{
display: flex;
justify-content: flex-end;
position: fixed;
bottom: 5px;
right: 5px;
}

.v_article_card_add_to_cart > div {
  width: auto;
  height: 50px;
  background-color: white;
  color: var(--white);
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  border: 1px solid var(--lightgray);
}

.v_article_card_add_to_cart > div > img {
    height: auto;
    width: 30px;
}

.v_article_card_add_to_cart > div > div {
    height: 100%;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.v_article_card_add_to_cart > div > input {
    width: 70px;
    height: 30px;
    line-height: 30px;
}

.selected-picture{
  border: 1px solid var(--border);
}

/*
        FOOTER
*/
footer {
  background: #1e1e1e;
  width: 100%;
  padding-left: calc(50% - 350px);
  padding-right: calc(50% - 350px);
  padding-top: 50px;
  padding-bottom: 60px;
  display: none;
}
.footer-container {
  width: 100%;
  display: flex;
}
.footer-container > div {
  width: 100%;
  height: 100%;
  margin: 0 7px;
  color: #797979;
}
.footer-title {
  display: block;
  margin-bottom: 5px;
  color: #d3d3d3;
  font-size: 16px;
}
.distanced {
  line-height: 30px;
}

.footer-sub {
  padding-left: calc(50% - 350px);
  padding-right: calc(50% - 350px);
  width: 100%;
  height: 88px;
  line-height: 87px;
  background: #1e1e1e;
  border-top: 1px solid #3e3e3e;
  font-size: 12px;
  color: #797979;
  padding: 0px 10px;
}
.footer-sub span {
  color: #d3d3d3;
}

.footer-container a {
  color: #797979;
}

.cover_container{
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: var(--black);
  width: 100%;
  height: 100vh;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cover_container > div{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loading_logo{
  width: 200px;
  height:28px;
  display: flex;
  justify-content: center;
}

.loading_logo > img {
  width: 150px;
  height: auto;
}

.loading_bar {
  width: 150px;
  height: 2px;
  background-color: var(--lightgray);
  margin-top: 20px;
  border-radius: 5px;
}

.loading_bar > div{
  height: 2px;
  background-color: var(--blue);
  width: 0px;
  animation: loadingBar 2s;
  animation-fill-mode: forwards;
  border-radius: 5px;
}


@keyframes loadingBar {
  0% {
    width:0%;
  }
  100% {
    width: 100%;
  }
}

.new_filter_container{
  width: 100%;
  height: 35px;
  display: none;
  justify-content: center;
}

.new_filter {
  width: 700px !important;
  height: auto !important;
  border: none !important;
  display: flex;
  justify-content: center;
  color: var(--darkgray);
  padding: 15px;
}

.new_filter > div {
  display: flex;
}

.new_filter > div > div {
  margin-right: 10px;
}

.new_filter > div > input {
  width: 100px;
  margin-right: 10px;
}

.input-xs {
  height: 22px;
  padding: 2px 5px;
  font-size: 12px;
  line-height: 1.5; /* If Placeholder of the input is moved up, rem/modify this. */
  border-radius: 3px;
}

.brand-badge{
  height: 18px; 
  margin-top: 1px; 
  margin-left: 15px;
  user-select: none;
}

.brand-badge>span {
  margin-left: 10px;
  font-size: 11px;
  cursor: pointer;
}

.car-badge{
  margin-top: 1px; 
  margin-left: 5px;
  background-color: var(--red);
  cursor: pointer;
  user-select: none;
}

.float-buttons{
  position: fixed;
  bottom: 0px;
  right: 0px;
}

.float-buttons > img {
  width: 50px;
  margin-right: 10px;
  margin-bottom: 15px;
  cursor: pointer;
}

.bottom-car-badge{
  position: absolute;
  right: 140px;
} 

.shopping-cart-background {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.432);
  z-index: 9900;
  top: 0px;
  left: 0px;
}

.shopping-cart{
  position: fixed;
  width: calc(100% - 30px);
  max-height: calc(100vh - 30px);
  height: auto;
  background-color: var(--white);
  border-radius: 5px;
  bottom: 15px;
  right: 15px;
  border: var(--border) 1px solid;
  overflow-y: auto;
  padding: 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  z-index: 9999;
}

.nice-enter,
.nice-leave-to {
  max-height: 0px;
  overflow: hidden;
}

.nice-enter-to,
.nice-leave {
  max-height: 100vh;
  overflow: auto;
}

.nice-enter-active {
  transition: height 0.5s ease;
}

.nice-leave-active {
  transition: height 0.5s ease;
  position: absolute;
}

.nice-move {
  transition: all 0.5s ease;
}

.shopping-cart-close{
  display: flex;
  text-align: center;
  color: var(--darkgray);
  user-select: none;
  line-height: 30px;
  margin-top: 10px;
}

.shopping-cart-close>div:first-child{
  width: calc(100% - 60px);
  text-align: left;
  font-size: 18px;
  padding-left: 15px;
}

.shopping-cart-close>div:last-child{
  width: 60px;
  cursor: pointer;
  font-size: 25px;
}

.shopping-cart-article{
  width: 100%;
  height: 60px;
  display: flex;
  margin: 15px 0px;
  user-select: none;
  cursor: pointer;
}

.shopping-cart-article-pic{
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.shopping-cart-article-pic > img{
  height: 60px;
}

.shopping-cart-article-body{
  width: calc(100% - 60px);
  padding-left: 5px;
  color: var(--black);
}

.shopping-cart-article-body>span{
  font-size: 16px;
  font-weight: 600;
}

.shopping-cart-article-body>span:nth-child(2){
  font-size: 12px;
  font-weight: 400;
}

.shopping-cart-article-body>span:last-child{
  color: var(--blue);
}

.shopping-cart-empty{
  color: var(--gray);
  font-size: 14px;
  text-align: center;
}

.shopping-cart-total{
  width: 100%;
  height: 30px;
  line-height: 30px;
  text-align: right;
  padding: 0px 15px;
}

.shopping-cart-total>span:first-child{
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.shopping-cart-total>span:last-child{
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
}

.shopping-cart-input{
  margin: 10px;
  width: calc(100% - 20px);
}

.shopping-cart-button{
  margin: 0px 10px 15px 10px;
  width: calc(100% - 20px);
  background-color: var(--blue);
  border-color: var(--blue);
}

.shopping-cart-button:hover{
  background-color: var(--black);
}

.developed_by{
  display: none;
}

.instagram_big{
  display: none;
}

.small_filter{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.small_filter > span {
  font-size: 18px !important;
  height: 26px !important;
}

.small_menu{
  position: fixed;
  width: 100%;
  height: calc(100vh - 60px);
  top: 60px;
  background-color: var(--black);
  color:white;
  overflow-y: auto;
  z-index: 99999;
}

.small_menu_option {
  width: 100%;
  height: 60px;
  border-bottom: 1px solid var(--lightgray);
  line-height: 60px;
  padding-left: 20px;
}

.small_menu_suboption_container{
  display: flex;
  flex-wrap: wrap;
  background-color: #353535;
}

.small_menu_suboption{
  width: 50%;
  height: 60px;
  border-bottom: 1px solid var(--darkgray);
  border-right: 1px solid var(--darkgray);
  line-height: 60px;
  padding-left: 20px;
  background-color: #353535;
}

.article_detail_title{
  font-size: 10px;
}

.article_detail_value{
  font-size: 10px;
}

.article_main_image {
  display: flex;
}

.article_main_image_left {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color:var(--darkgray);
  padding: 10px;
}

.article_main_image_left > div > i {font-size: 30px;}

.article_main_image_right {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color:var(--darkgray);
  padding: 10px;
}

.article_main_image_right > div > i {font-size: 30px;}

.VueCarousel-pagination{
  height: 10px !important;
  margin-top: -50px !important;
  z-index: 99;
}
.VueCarousel-dot-container{
  height: 10px !important;
  margin-top: -50px !important;
  z-index: 100;
}

.variant_control{
  border: none;
  box-shadow: none;
  padding: 0px;
  font-size: 20px;
  margin: 0px;

}

.variant_container{
  width: fit-content;
  border: 1px solid var(--border);
  border-radius: 3px;
  margin: 4px;
  height: fit-content;
  padding: 3px 5px;
  cursor: pointer;
  user-select: none;
}

.variant_name{
  font-weight: 400;
  font-size: 12px;
  color: var(--gray);
}

.variant_price{
  font-weight: 800;
  font-size: 20px;
  color: var(--darkgray);
}

.variant_selected{
  border-color: var(--blue);
  background-color: var(--lightblue);
}

.variant_selected_price{
  color: var(--black) !important;
}

.videos_container {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #161616;
  padding: 10px 10px;
}

.videos_container > div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.videos_container > div > iframe {
  width:100%; 
  height:300px;
  margin: 10px
}

.article_hover {
  display: none;
}

.table_title {
  border-top: none !important;
  font-size: 14px;
  padding: 10px;
}

.table_title > i {
  margin-right: 10px;
} 

.article_hover_mobile{
  height: 20px;
  width: 100%;
  background-color: var(--blue);
  margin-top: -20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 14px;
  z-index: 99;
}

.v_article_card_show_more {
  height: 20px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--lightgray);
  margin: 0px 20px;
}

.v_article_card_show_more > i {
  font-size: 11px;
  margin-left: 5px;
}