@import url("https://fonts.googleapis.com/css2?family=Jost&display=swap");
:root {
  --main-dark-color: black;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Jost", sans-serif;
  background: #121212;
}

.Img_PayU {
  cursor: pointer;
}

/******* BTN FLOTANTES*********/
.contenedor_adds {
  width: 130px;
  height: 240px;
  position: fixed;
  top: 574px;
  z-index: 1;
  right: 0px;
}

.botonF3 span a {
  color: black !important;
}

.botonF2 span a {
  color: black !important;
}

.botonF1 span {
  color: black !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.botonF3 {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #e3e3e3;
  right: 0;
  bottom: 0;
  position: absolute;
  margin-right: 16px;
  margin-bottom: 90px;
  border: none;
  outline: none;
  color: black !important;
  font-size: 25px;
  box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
  transition: 0.3s;
}

.botonF2 {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #e3e3e3;
  right: 0;
  bottom: 0;
  position: absolute;
  margin-right: 16px;
  margin-bottom: 165px;
  border: none;
  outline: none;
  color: black !important;
  font-size: 25px;
  box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
  transition: 0.3s;
}

.botonF1 {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #e3e3e3;
  right: 0;
  bottom: 0;
  position: absolute;
  margin-right: 16px;
  margin-bottom: 240px;
  border: none;
  outline: none;
  color: black !important;
  font-size: 25px;
  box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
  transition: 0.3s;
  cursor: pointer;
}
/****** FIN *******/

.header {
  display: flex;
  flex-direction: column;
  padding: 0px 100px;
  background: #121212;
}

.nav_toggle {
  display: none;
}

.nav_checkbox {
  display: none;
}

.menu_main li {
  display: flex;
}

/******************* HEADER TOP *******************/
.header_top {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.header_actions {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 5px;
  flex: 1;
}

.header_logo {
  margin: 5px 5px 0px 5px;
  flex: 1;
}

.header_logo img {
  width: 30%;
}

.header_name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 2;
}

.header_name__title {
  font-family: "Bebas Neue", cursive;
  font-size: 72px;
  line-height: 24px;
  text-align: center;
  color: white;
  cursor: pointer;
}

.header_actions__button {
  background: white;
  box-shadow: 0px 3px 7px rgba(39, 65, 86, 0.15);
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 22px;
  border: none;
  color: black;
  font-size: 19px;
  line-height: 24px;
  flex: 1;
  cursor: pointer;
}

.header_actions__button svg {
  margin-right: 10px;
}

.menu_lenguajes {
  flex: 1;
}

.header_actions__cart {
  flex: 1;
  text-align: center;
  font-size: 35px;
  position: relative;
}

.flag_item {
  margin: 5px;
}

.flag_item img {
  cursor: pointer;
}

.menu_flags {
  display: flex;
  flex: 1;
  justify-content: center;
}

.menu_lenguajes__title {
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  color: white;
}
/******** FIN **********/

/******** LOGIN ********/

.section_login {
  display: none;
}

.content_section_login {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.form_login {
  display: flex;
  flex-direction: column;
  width: 68%;
  color: #e3e3e3;
}

.form_login_top {
  text-align: center;
}

.content_form_login {
  float: left;
  width: 34%;
}

.content_inputs_form_login {
  display: flex;
  align-items: center;
}

.btn_form_login {
  background: #e3e3e3;
  border: none;
  color: black;
  padding: 5px 30px;
  font-size: 20px;
  cursor: pointer;
  margin-left: 40px;
  border-radius: 30px;
  height: 40px;
}

#Btn_Modal {
  display: none;
}

.modal-contenido {
  border-radius: 15px;
  background-color: white;
  width: 500px;
  padding: 10px 20px;
  margin: 16% auto;
  position: relative;
  text-align: center;
}

.modal {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 1s;
  z-index: 1;
}

#Img_Modal:target {
  opacity: 1;
  pointer-events: auto;
}

#forget_password:target {
  opacity: 1;
  pointer-events: auto;
}

.content_btn {
  text-align: end;
  font-weight: bold;
  font-size: 20px;
}

.content_btn a {
  color: black;
  text-decoration: none;
  /* display: none; */
}

.header_actions__button_container {
  position: relative;
}

.container_profile {
  display: none;
  position: absolute;
  background: white;
  z-index: 1;
  text-align: center;
  border: 1px solid;
  border-radius: 7px;
  width: 100%;
}

.btn_profile {
  height: 40px;
  align-items: center;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid;
  cursor: pointer;
}

.btn_profile:hover {
  background: black;
  color: white;
}

.btn_profile.fin {
  border-radius: 0px 0px 7px 7px;
}

.forget_password {
  font-size: 11px;
  color: white;
  cursor: pointer;
  text-decoration: underline;
  margin-left: 5px;
}

#content_btn_forget {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/***** FIN LOGIN *******/

/******************* HEADER BOTTOM *******************/

.header_bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  border-top: 1px solid #e3e3e3;
  padding: 20px;
}

.menu_main {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  list-style: none;
  /* align-items: center; */
  justify-content: space-evenly;
  color: white;
}

.menu_main li.menu_main__item {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  padding: 5px 20px;
}

.menu_main li.menu_main__item:hover,
.menu_main li.menu_main__item:focus {
  background: #ffffff26;
  padding: 5px 20px;
  border-radius: 3px;
  cursor: pointer;
}

.menu_main li.menu_main__item:hover > a {
  color: #ffffff;
}

.menu_main li.menu_main__item:hover > p {
  color: #ffffff;
}

.menu_main li.menu_main__item.active {
  background: white;
  color: black;
  padding: 5px 20px;
  border-radius: 3px;
}

.menu_main li.menu_main__item.active > a {
  background: white;
  color: black;
}

.menu_main li.menu_main__item > a {
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: row;
}

.menu_main li.menu_main__item p {
  display: flex;
  flex-direction: row;
}

.menu_main li.menu_main__item svg {
  margin-left: 8px;
}

.menu_main {
  flex: 2;
}

.menu_search {
  flex: 1;
}

.menu_search {
  position: relative;
}

.menu_search svg {
  position: absolute;
  right: 130px;
  bottom: 10px;
  font-size: 25px;
}

.input_search {
  background: #f5f5f5;
  border: 1px solid #e9f0fa;
  box-sizing: border-box;
  border-radius: 21px;
  width: 80%;
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 23px;
  line-height: 24px;
  color: #353535;
  padding: 10px 50px 10px 15px;
}

.Btn_Pdf_Products {
  height: 40px !important;
  width: 136px;
  color: white;
  background: black;
  border: 1px solid;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}

.input_search::placeholder {
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 23px;
  line-height: 24px;
  color: #828282;
}
/******** FIN **********/

/******************* MENU CATEGORIES*******************/
/*.dropdown__menu:hover .menu__main_categories{*/
/*    display: block;*/
/*    z-index: 10;*/
/*} */

/*.menu__main_categories{*/
/*    background: #444444;*/
/*    position: absolute;*/
/*    margin-top: 30px;*/
/*    width: 55%;*/
/*    display: none;*/
/*}*/

/*.container__categories{*/
/*    width: 95%;*/
/*    margin: 25px auto;*/
/*}*/

/*.section__categories{*/
/*    margin: 25px 2px;*/
/*}*/

/*.section__categories h1{*/
/*    font-size: 50px;*/
/*    color: white;*/
/*}*/

/*.ul__brands{*/
/*    display: grid;*/
/*    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;*/
/*    align-items: center;*/
/*    justify-items: start;*/
/*    width: 100%;*/
/*}*/

/*.list__section_categories{*/
/*    display: flex;*/
/*    flex-direction: row;*/
/*    flex-wrap: wrap;*/
/*}*/

/*.list__section_categories ul{*/
/*    list-style: none;*/
/*    margin: 20px 30px;*/
/*}*/

/*.list__section_categories .Sizes_List {*/
/*    list-style: none;*/
/*    margin: 20px 9px;*/
/*    width: 18%;*/
/*}*/

/*.list__section_categories ul li a{*/
/*    font-size: 18px;*/
/*    font-weight: 300;*/
/*    margin-bottom: 10px;*/
/*    color: white;*/
/*    text-decoration: none;*/
/*}*/

/*.list__section_categories ul li:nth-child(1){*/
/*    margin-bottom: 15px;*/
/*}*/

/*.list__section_categories ul li:nth-child(1) a{*/
/*    font-size: 23px;*/
/*    line-height: 27px;*/
/*    font-weight: 500;*/
/*    margin-bottom: 15px;*/
/*}*/

/*.list__section_categories ul li:hover a{*/
/*    border-bottom: 2px solid #E3E3E3*/
/*}*/

/******** FIN **********/

/******************* MENU CATEGORIES*******************/

.menu__main_categories {
  background: #444444;
  position: absolute;
  margin-top: 30px;
  width: 55%;
  z-index: 10;
}

#list_size,
#list_categories {
  display: none;
}

.container__categories {
  width: 95%;
  margin: 25px auto;
}

.section__categories {
  margin: 25px 2px;
}

.section__categories h1 {
  font-size: 50px;
  color: white;
}

.ul__brands {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  align-items: center;
  justify-items: start;
  width: 100%;
}

/*//.list__section_categories{*/
/*   // display: flex;*/
/*  //  flex-direction: row;*/
/* //   flex-wrap: wrap;*/
/*//}*/

.list__section_categories ul {
  list-style: none;
  margin: 20px 30px;
}

.list__section_categories .Sizes_List {
  list-style: none;
  margin: 5px 9px;
  //width: 18%;
}

.list__section_categories ul li a {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 10px;
  color: white;
  text-decoration: none;
}

/*//.list__section_categories ul li:nth-child(1){*/
/*   // margin-bottom: 15px;*/
/*//}*/

/*//.list__section_categories ul li:nth-child(1) a{*/
/* //   font-size: 23px;*/
/*//    line-height: 27px;*/
/*//    font-weight: 500;*/
/*//    margin-bottom: 15px;*/
/*//}*/

.Subgrupos-Tallas a {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 10px;
  color: white;
  text-decoration: none;
}

.Subgrupos-Tallas {
  margin-bottom: 5px;
}

.Subgrupos-Tallas a {
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  margin-bottom: 15px;
}

.Subgrupos-Tallas:hover a {
  border-bottom: 2px solid #e3e3e3;
}

.Subgrupos-Tallas-List {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.list__section_categories ul li:hover a {
  border-bottom: 2px solid #e3e3e3;
}

/******** FIN **********/

/******************* SLIDER MENU  *******************/
.menu_slider {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
}

.menu_slider__item {
  flex: 1;
  cursor: pointer;
}

.menu_slider__item {
  flex: 1;
  cursor: pointer;
  overflow: hidden;
  max-height: 623px;
}

.menu_slider__item.item_1:hover img,
.menu_slider__item.item_2:hover img {
  transform: scale(1.2);
}

.menu_slider__item img {
  width: 100%;
  transition: ease;
  transition-duration: 0.2s;
}
/******** FIN **********/

/******************* CATALOGO *******************/
.catalog {
  position: relative;
  background: #121212;
  color: white;
}
/*PRUEBA*/
.filter_buttons {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 1s ease;
  background-color: #00000066;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  padding: 15px 15px;
}

.footer_item__btn_product {
  margin-top: 10px;
  width: 80%;
  margin-left: -24px;
  height: 50px;
  background: none;
  border: 1px solid white;
  color: white;
  border-radius: 7px;

  cursor: pointer;
}

.footer_item__btn_product:hover {
  border: 1px solid #2264d1;
  color: #2264d1;
  background: white;
}

/*FIN PRUEBA*/

.catalog h1 {
  text-align: center;
  font-weight: bold;
  font-size: 46px;
  margin: 25px 0px;
}

.catalog::before {
  content: "";
  position: absolute;
  background-color: #f2edea63;
  height: 430px;
  width: 100%;
  z-index: -1;
  top: 30%;
}

.container__catalog {
  margin: auto;
  width: 85%;
}

.Catalogo_Group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.item__catalog {
  font-family: "Jost", sans-serif;
  font-size: 50px;
  line-height: 55px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 450px;
  width: 80%;
  margin: 20px auto;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  transition: ease;
  transition-duration: 0.3s;
}

.item__catalog:hover {
  transform: scale(1.04);
}

.item__catalog p {
  margin-bottom: 10px;
  z-index: 1;
  text-align: center;
}

.filter__catalog {
  background: #0000003b;
  position: absolute;
  height: 100%;
  width: 100%;
}

p.name_group__catalog {
  margin-bottom: 2px;
  font-size: 25px;
}
/******** FIN **********/

/******************* BREADCRUMBS *******************/
.container_breadcrumb {
  display: flex;
  flex-direction: row;
  width: 90%;
  margin: 5px auto;
}

ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
}

ul.breadcrumb li {
  display: inline;
  font-size: 25px;
  font-family: "Jost", sans-serif;
  line-height: 24px;
  color: white;
}

ul.breadcrumb li + li:before {
  padding: 8px;
  color: white;
  content: "/\00a0";
}

ul.breadcrumb li a {
  color: white;
  text-decoration: none;
}

ul.breadcrumb li a:hover {
  color: white;
  text-decoration: underline;
}
/******** FIN **********/

/******************* SLIDER CATEGORIE *******************/
.slider_categorie {
  background-image: url(../img/img_categorie.png);
  background-size: cover;
  width: 100%;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.slider_categorie__text {
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 96px;
  line-height: 70px;
  color: #e9f0fa;
  margin-bottom: 80px;
}

/******** FIN **********/

/******************* SLIDER AVISORY *******************/
.slider_advisory {
  /* background-image: url(../img/LogoSlider.png); */
  background-color: black;
  background-size: cover;
  width: 100%;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background-position: center;
}

.slider_advisory__text {
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 96px;
  line-height: 24px;
  color: #e9f0fa;
  margin-bottom: 80px;
  font-size: 86px;
}

.container_option_advisory {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-bottom: 2px solid #e3e3e3;
  margin-top: 20px;
  color: white;
}

.option_advisory {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  cursor: pointer;
}

.advisory_active {
  border: 2px solid;
}

.advisory_img {
  width: 70px;
  /* border: 2px solid; */
  height: 67px;
  display: flex;
  border-radius: 43px;
  align-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.advisory_img img {
  width: 70%;
}
.container_content_buy {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  align-items: center;
  color: white;
}

.sections_steps {
  display: flex;
  flex-direction: row;
  margin-top: 15px;
  border-top: 1px solid #e3e3e3;
  max-height: 274px;
  min-height: 260px;
}
.section_steps_buy {
  display: flex;
  /* align-items: center; */
  flex-direction: row;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
}

.wrap_img_step_buy {
  width: 100%;
  display: flex;
  /* align-items: center; */
  justify-content: flex-end;
}

.wrap_txt_step_buy {
  width: 100%;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: flex-start;
  text-align: justify;
  /* padding-left: 30px; */
  color: white;
}

.img_steps {
  box-shadow: 0px 0px 20px 7px #000000;
  border-radius: 10px;
}

.content_img_steps {
  width: 70%;
  text-align: center;
}

.container_content_advisoryp {
  text-align: center;
  margin-top: 20px;
  display: none;
  color: white;
}

.container_content_advisoryp a {
  text-decoration: none;
  color: #0275d8;
}

.container_content_advisoryp p {
  margin-top: 15px;
  font-size: 20px;
  line-height: 35px;
}

.container_advisory {
  padding: 30px 50px;
  color: white;
}

.title_advisory {
  font-size: 86px;
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  margin-top: 20px;
  text-align: center;
}

/******** FIN **********/

/******************* ABOUT *******************/
.slider_about {
  /* background-image: url(../img/LogoSlider.png); */
  background-color: black;
  background-size: cover;
  width: 100%;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background-position: center;
}

.slider_about__text {
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 96px;
  line-height: 24px;
  color: #e9f0fa;
  margin-bottom: 80px;
  font-size: 86px;
}

.container_option_about {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-bottom: 2px solid #e3e3e3;
  margin-top: 20px;
}

.option_about {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  cursor: pointer;
}

.option_about_tittle {
  height: 40px;
  color: white;
}

.about_active {
  border: 2px solid white;
}

.about_img {
  width: 70px;
  /* border: 2px solid; */
  height: 67px;
  display: flex;
  border-radius: 43px;
  align-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about_img img {
  width: 70%;
}

.wrap_info_text {
  text-align: center;
  padding: 20px 23%;
}

.wrap_info_text h1 {
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 96px;
  line-height: 70px;
  font-size: 80px;
  color: #e9f0fa;
}

.wrap_info_text p {
  text-align: justify;
  font-size: 18px;
  color: white;
}

.container_content_mision,
.container_content_vision {
  display: none;
}

/******** FIN **********/

/******************* SEARCHER *******************/

.slider_searcher {
  /* background-image: url(../img/LogoSlider.png); */
  background-color: black;
  background-size: cover;
  width: 100%;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background-position: center;
}

.slider_searcher__text {
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 96px;
  line-height: 24px;
  color: #e9f0fa;
  margin-bottom: 80px;
  font-size: 86px;
}

.container_searcher {
  padding: 30px 50px;
}

#list_products_found {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

/******** FIN **********/

/******************* SHOP *******************/
.shop {
  display: flex;
  flex-direction: row;
  width: 90%;
  margin: auto;
}

.shop__filters {
  display: flex;
  flex-direction: column;
  /* justify-content: space-evenly; */
  margin: 35px 20px;
  flex: 0.5;
}

.filter__categorie_title {
  font-size: 25px;
  border-bottom: 2px solid white;
  width: 70%;
  color: white;
}

.filter__my_filters ul {
  margin: 15px 0px;
  list-style: none;
}

.filter__my_filters ul li:nth-child(1) {
  margin: 0px 0px;
  list-style: none;
  background: #e3e3e3;
  border: none;
  color: white;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
}

.filter__my_filters ul li:last-child {
  margin: 0;
  padding: 0;
  border: none;
  background: white;
  border-radius: 3px;
  font-size: 18px;
}

.filter__my_filters ul li button {
  width: 100%;
  border: 1px solid white;
  background: white;
  font-size: 15px;
  text-align: left;
  padding: 3px;
}

.filter__my_filters ul li {
  padding: 5px;
  border: solid 2px white;
  background: white;
  color: white;
  position: relative;
}

.filter__my_filters ul li svg {
  position: absolute;
  right: 10px;
  font-size: 20px;
}

.filter__list_option {
  border: 2px solid white;
  margin: 15px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.filter__list_option h4 {
  border-bottom: 2px solid white;
  width: 90%;
  margin: 10px;
  font-size: 20px;
  color: white;
}

.option_filter {
  display: flex;
  flex-direction: column;
  width: 90%;
  height: 250px;
  overflow: auto;
}

.option_filter label {
  margin: 5px 0px;
  font-size: 18px;
  color: white;
}

.filter__search {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}

.filter__search input {
  width: 77%;
  height: 25px;
  padding: 0px 30px 0px 10px;
  border: solid 2px var(--main-dark-color);
  border-radius: 5px;
}

.filter__search svg {
  position: absolute;
  right: 25px;
  top: 6px;
}

.filters__btn_aply {
  width: 70%;
  border: 1px solid var(--main-dark-color);
  background: white;
  margin: 10px;
  border-radius: 3px;
  font-size: 18px;
  cursor: pointer;
}

.filters__btn_aply:hover {
  color: white;
  background-color: black;
}

.shop__list_items {
  flex: 2;
  margin: 35px 20px;
}

.shop_items__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.shop_items__list {
  margin: 40px 10px;
}

.container_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.shop__item {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: 12px auto;
}

.shop_item__image {
  width: 100%;
  height: 335px;
  overflow: hidden;
  position: relative;
}

.discount_percentage {
  position: absolute;
  top: 5%;
  background-color: black;
  color: white;
  width: 37%;
  text-align: center;
  font-size: 17px;
  left: 0;
  border-radius: 0px 15px 15px 0px;
}

.shop_item__image:hover img,
.shop_item__image:hover .filter_buttons {
  /*transform: scale(1.3);*/
  opacity: 1;
}

.shop_item__image img {
  width: 100%;
  transition: ease;
  transition-duration: 0.3s;
}

.shop_item__info {
  height: 100px;
  color: white;
}

.shop_item__categorie {
  font-size: 20px;
  margin-bottom: 10px;
}

.shop_item__name {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 8px;
}

.shop_item__price {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}

.before {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 10px;
}

.shop_item__price_discount {
  font-weight: 600;
  font-size: 18px;
  /* margin-bottom: 10px; */
}

.shop_item__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.calification_star {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin-right: 10px;
}

.calification_star li a {
  font-size: 13px;
  color: gray;
}

.calification_star li p {
  font-size: 15px;
  margin-left: 10px;
}

.calification_star li {
  margin: 0px 2px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.shop_item__footer_buttons {
  flex: 2;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.footer_item__btn {
  background: white;
  border: 1px solid #2264d1;
  color: #2264d1;
  padding: 7px;
  border-radius: 6px;
  margin: 0px 5px;
  font-weight: 500;
  cursor: pointer;
}

.order_by label {
  font-size: 18px;
  margin-right: 5px;
  color: white;
}

.select__order_by {
  border: solid 2px var(--main-dark-color);
  background: white;
  padding: 5px 25px 5px 8px;
  font-size: 16px;
}

/******** FIN **********/

/******************* FOOTER *******************/
.container_product {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-around;
}

.size_product {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
}

.size_disp {
  width: 4%;
  text-align: center;
  font-weight: 400;
  cursor: pointer;
}

.size_active {
  text-decoration: underline;
  font-weight: bolder !important;
  cursor: auto !important;
}

.image_product {
  display: flex;
  flex-direction: row;
  flex: 1;
  justify-content: center;
}

.trail_image {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  height: 560px;
  justify-content: flex-start;
}

.trail_image__item {
  width: 100px;
  height: 120px;
  margin: 10px 20px;
}

.trail_image__item img {
  width: 100%;
  height: 100%;
}

.product {
  width: 80%;
  margin: 20px auto;
}

.img_product_active {
  /* border: 2px solid black; */
  box-shadow: 0px 0px 20px 4px #a9a9a9;
}

.image_actual__container {
  width: 470px;
  height: 620px;
  overflow: hidden;
}

.image_actual__container img {
  width: 100%;
}

.description_product {
  flex: 1;
  display: flex;
  flex-direction: column;
  color: white;
  align-items: flex-start;
}

.description_product .calification_star {
  margin-bottom: 15px;
}

.description_product__categorie {
  font-size: 40px;
}

.description_product__name {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 25px;
}

.description_product__price p {
  margin-bottom: 5px;
  font-size: 18px;
}

.description_product__price h2 b {
  color: #ff0000;
}

.description_product__group_buttons {
  display: flex;
  flex-direction: column;
  width: 41%;
}

.description_product__size {
  width: 40%;
  margin: 5px;
  border: solid 2px var(--main-dark-color);
  background: white;
  padding: 5px 25px 5px 8px;
  font-size: 16px;
}

.description_product__button {
  margin: 5px;
  background: white;
  border: 1px solid var(--main-dark-color);
  font-size: 18px;
  padding: 3px;
  border-radius: 3px;
  cursor: pointer;
}

.description_product__button-red {
  margin: 5px;
  background: #ff0000;
  border: 1px solid #ff0000;
  font-size: 18px;
  padding: 3px;
  border-radius: 3px;
  color: white;
  cursor: pointer;
}

.description_product__button-black {
  margin: 5px;
  background: white;
  border: 1px solid white;
  font-size: 18px;
  padding: 3px;
  border-radius: 3px;
  color: black;
  cursor: pointer;
}

.interest .shop__list_items h1 {
  text-align: center;
  font-size: 40px;
}

.interest .shop__list_items .shop_item__image {
  width: 100%;
  height: 420px;
}

.description_product__price {
  margin-bottom: 10px;
}

/******** FIN **********/

/******************* CART *******************/
.cart {
  position: absolute;
  z-index: 10;
  background: white;
  width: 400px;
  border: 2px solid var(--main-dark-color);
  right: 40px;
  top: 60px;
  display: none;
}

.cart::before {
  content: "";
  position: absolute;
  right: 14px;
  top: -18px;
  border-left: 11px solid #1000ff00;
  border-bottom: 18px solid #000000;
  border-right: 11px solid #90ee9000;
}
.cart::after {
  content: "";
  position: absolute;
  right: 15px;
  top: -14px;
  border-left: 10px solid #1000ff00;
  border-bottom: 16px solid #ffffff;
  border-right: 10px solid #90ee9000;
}

.hide__cart {
  position: absolute;
  top: 5px;
  left: 15px;
  cursor: pointer;
}

.hide__cart p {
  font-size: 15px;
  color: #808080;
  font-weight: 600;
}

.no_products__cart {
  font-size: 25px;
}

.icon_cart {
  cursor: pointer;
  color: white;
}

.list_products__cart {
  max-height: 500px;
  overflow-y: scroll;
  margin: 15px;
}

.delete_product__cart {
  position: absolute;
  top: -10px;
  right: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.delete_product__cart p {
  font-size: 12px;
  color: gray;
  font-weight: 600;
}

.delete_product__cart svg {
  font-size: 12px;
  margin: 5px;
}

.product_cart {
  display: flex;
  flex-direction: row;
  margin: 15px 0px;
  position: relative;
}

.product_cart__image {
  width: 60px;
}

.product_cart__image img {
  width: 100%;
}

.product_cart__info {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  align-items: flex-start;
}

.product_cart__info h3 {
  font-size: 20px;
}

.product_cart__info p {
  font-size: 18px;
}

.total__cart {
  margin: 15px;
  border-top: 2px solid #c4c4c4;
}

.total_cart__info {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.total_cart__info p {
  flex: 1;
  font-size: 22px;
  font-weight: 600;
}

.total_cart__subtotal {
  text-align: left;
}

.total_cart__price {
  text-align: right;
}

.button_cart {
  width: 100%;
  padding: 3px;
  font-size: 18px;
  border: none;
  background: black;
  color: white;
  border-radius: 3px;
  cursor: pointer;
}

.number_products {
  position: absolute;
  top: -6px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: red;
  color: white;
  width: 20px;
  height: 20px;
  font-size: 14px;
  border-radius: 15px;
}

#cart_session {
  cursor: pointer;
}

.content_directions_form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 10px;
}

.form__directions {
  color: white;
}

.directions_save {
  width: 95%;
  margin-top: 10px;
  color: black;
}

.directions_save_name {
  border: 1px solid;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0px 32px;
  background: #e1e1e1;
  font-size: 20px;
  font-weight: bold;
  border-radius: 7px;
}

.directions_save_body {
  border: 1px solid;
  border-radius: 7px;
  display: none;
}

.radio_address {
  margin-right: 15px;
}

.content_btns_address {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: flex-end;
  font-size: 25px;
}

.btn_edit_address {
  margin-right: 10px;
}

.content_btn_new_address {
  display: none;
  text-align: end;
}

.btn_add_address {
  height: 30px;
  width: 118px;
  font-size: 17px;
  font-weight: bold;
  color: white;
  background-color: black;
  border: none;
  cursor: pointer;
}

.name_visible_address {
  width: 50%;
}

/******** FIN **********/

/******************* PURCHASE *******************/
.purchase {
  display: flex;
  flex-direction: row;
}

.collapsable_forms {
  flex: 1.2;
  padding: 20px 15px;
  color: white;
}

.collapsable_forms h1 {
  font-family: "Jost", sans-serif;
  font-size: 50px;
  color: white;
  width: 80%;
  margin: auto;
}

.resum_pay {
  flex: 1;
  color: white;
}

.information_form,
.directions_form {
  width: 90%;
  margin-left: auto;
  border: 1px solid #e3e3e3;
}

.collapse__body {
  display: flex;
  flex-direction: column;
}

.group_form {
  margin: 10px;
  display: flex;
}

.group_form__label {
  font-size: 18px;
  flex: 1;
  text-align: right;
}

.group_form__input {
  padding: 10px 5px;
  border: 2px solid black;
  border-radius: 5px;
  margin-left: 15px;
  flex: 3;
  width: 65%;
}

.group_form__input::placeholder {
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  color: #c4c4c4;
}

.collapse__header {
  padding: 10px;
  font-size: 25px;
  border-bottom: 1px solid #e3e3e3;
}

.form__terms_conditions {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form__terms_conditions_finish {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form__terms_conditions_finish p {
  margin: 10px;
}

.form__terms_conditions p {
  margin: 10px;
}

.form__section_buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px;
}

.btn_Payu {
  background-color: black;
  color: white;
  font-size: 20px;
  font-weight: bold;
  border: none;
  width: 40%;
  height: 35px;
  cursor: pointer;
}

.form__section_buttons .button_continue {
  background: #b1b1b1;
  border: none;
  color: white;
  padding: 5px 30px;
  font-size: 20px;
  width: 30%;
  cursor: not-allowed;
}

.form__section_buttons .button_continue_address {
  background: #e3e3e3;
  border: none;
  color: black;
  padding: 5px 30px;
  font-size: 20px;
  width: 30%;
  cursor: pointer;
}

.alert {
  /* width: 90%; */
  text-align: center;
  padding: 5px;
  display: none;
  margin: 5px;
}

.success {
  color: green !important;
  background: #83c3416b !important;
  border-radius: 9px;
}

.warning {
  color: red !important;
  background: #ffbfbf !important;
  border-radius: 9px;
}

.type_user {
  list-style: none;
  display: flex;
  flex-direction: row;
  margin: 10px;
}

.type_user li {
  margin: 10px 5px;
}

.type_user li + li::before {
  padding: 8px;
  color: white;
  content: "/\00a0";
}

.type_user a {
  text-decoration: none;
  color: white;
  font-weight: 600;
}

.resum_pay h1 {
  font-size: 30px;
  padding: 10px 40px;
}

.resum_pay__product {
  display: flex;
  flex-direction: row;
}

.resum_pay__product {
  margin-bottom: 15px;
}

.list_product__resum_pay {
  margin: 20px auto;
  width: 80%;
  border-bottom: 2px solid #e3e3e3;
}

.image_product__resum_pay {
  width: 120px;
}

.image_product__resum_pay img {
  width: 100%;
}

.info_product__resum_pay {
  margin: 5px 20px;
  display: flex;
  flex-direction: row;
  width: 80%;
}

.general_info__resum_pay {
  flex: 1;
}

.price_info__resum_pay {
  font-weight: 600;
}

#method_pay_text {
  font-size: 25px;
}

#medios_de_pago {
  width: 25%;
  border: 2px solid;
}

.content_btn_info_product {
  text-align: center;
  font-size: 30px;
}

.info_product__resum_pay h3 {
  font-size: 25px;
}

.info_product__resum_pay p {
  font-size: 20px;
  margin-top: 5px;
}

.total__resum_pay {
  margin: 15px;
}

.values_total__resum_pay {
  display: flex;
  width: 80%;
  margin: auto;
}

.values_total__resum_pay h4 {
  font-size: 30px;
  flex: 1;
  font-weight: 800;
}

.values_total__resum_pay p {
  font-size: 25px;
  font-weight: 600;
}

.terms_condition__resum_pay {
  margin: 40px auto;
  width: 75%;
}

.terms_condition__resum_pay .form__terms_finish {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.buttons_section__resum_pay {
  width: 80%;
  margin: auto;
}

.button__resum_pay-black {
  width: 100%;
  margin: 10px;
  background: #b1b1b1;
  border: none;
  color: white;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
}

.button__resum_pay-white {
  width: 100%;
  margin: 10px;
  background: white;
  border: 2px solid var(--main-dark-color);
  color: var(--main-dark-color);
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
  display: none;
}
/******** FIN **********/

/******************* PROFILE ******************/
.container_title {
  text-align: center;
  color: white;
}

.container_sections {
  padding: 0px 6%;
}

.wrap_sections {
  display: flex;
  /* justify-content: space-around; */
  font-weight: 500;
}

.section_active {
  box-shadow: 0px -5px 9px 0px #000000;
}

.title_section {
  width: 10%;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px 7px 0px 0px;
  background: #444444;
  color: white;
  /* cursor: pointer; */
}

.label_title_section {
  font-weight: bold;
  cursor: pointer;
}

.container_info {
  box-shadow: 0px 5px 20px 0px #000000;
  border-radius: 12px 12px 25px 25px;
  padding: 15px;
  line-height: 25px;
  background: #444444;
  color: white;
}

.header_info {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid gray;
  font-weight: 500;
}

.input_datos1 {
  border: none;
  font-size: 15px;
  width: 20%;
  height: 25px;
  background-color: white;
  margin-top: 5px;
}

.container_address {
  box-shadow: 0px 5px 20px 0px #000000;
  border-radius: 12px 12px 25px 25px;
  padding: 15px;
  line-height: 25px;
  margin-top: 3%;
  margin-bottom: 3%;
  background: #444444;
  color: white;
}

.header_address {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid grey;
  font-weight: 500;
}

.input_datos2 {
  border: none;
  font-size: 15px;
  width: 20%;
  height: 25px;
  background-color: white;
  margin-top: 5px;
}

.content_profile {
  position: relative;
  width: 100%;
  /* height: 500px; */
}

.content_sections {
  /* position: absolute; */
  transition: all 600ms ease;
  /* opacity: 0;
    visibility: hidden; */
  width: 100%;
}

.inpt_radio {
  display: none;
}

#compras {
  display: none;
  margin-bottom: 15px;
}

.my_buys {
  width: 100%;
}

.header_table_buys {
  text-align: center;
  background-color: black;
  color: white;
}

.data_table_buys {
  background: #f1f1f1;
  color: black;
}

.state_profile {
  cursor: pointer;
}

.edit_info_profile {
  padding: 5px 5px;
  border: 2px solid black;
  border-radius: 5px;
}

#btn_update_profile {
  background: #e3e3e3;
  border: none;
  color: black;
  padding: 5px 30px;
  font-size: 20px;
  width: 21%;
  cursor: pointer;
  display: none;
  margin-top: 5px;
}

#btn_update_address_profile {
  background: #e3e3e3;
  border: none;
  color: black;
  padding: 5px 30px;
  font-size: 20px;
  width: 21%;
  cursor: pointer;
  display: none;
  margin-top: 5px;
}
/******** FIN **********/

/******************* FOOTER *******************/

.footer {
  border-top: 2px solid #e3e3e3;
  color: white;
}

.footer__menu {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin: 50px auto;
  width: 80%;
  align-items: center;
}

.footer__menu p {
  margin: 20px;
}

.subscribe {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.footer__section--f2 {
  flex: 2;
}

.footer__section--f1 {
  flex: 1;
  margin-left: 70px;
}

.footer__section--f1 p a {
  text-decoration: none;
  color: white;
  cursor: pointer;
}

.footer_subscribe-button {
  background: #e3e3e3;
  box-shadow: 0px 3px 7px rgb(39 65 86 / 15%);
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 22px;
  border: none;
  color: black;
  font-size: 19px;
  line-height: 24px;
  margin: 0px 7px;
}
/******** FIN **********/

/*********** INICIO DE MEDIA QUERYS *************/

@media (max-width: 660px) {
  .menu_main li.menu_main__item.active {
    margin: 10px 20px;
  }

  .footer_item__btn_product:nth-of-type(2) {
    display: none;
  }

  .menu_slider__item {
    max-height: 209.59px;
  }
  .list__section_categories .Sizes_List {
    list-style: none;
    margin: 5px 10px;
    /*width: 40%;*/
  }

  .Subgrupos-Tallas-List {
    grid-template-columns: 1fr 1fr;
  }
  /************  *************/
  .nav_toggle {
    position: relative;
    cursor: pointer;
    margin: 0 1rem;
    right: 0px;
    margin-bottom: 15px;
    display: flex;
    justify-content: flex-end;
  }

  .nav_toggle svg {
    font-size: 35px;
    color: white;
  }

  .nav_toggle .Close {
    display: none;
  }

  .nav_checkbox {
    display: none;
  }

  .menu_main li {
    display: none;
  }

  .nav_checkbox:checked ~ .menu_main li {
    display: flex;
  }

  .nav_checkbox:checked ~ .nav_toggle .Close {
    display: block;
  }

  .nav_checkbox:checked ~ .nav_toggle .Open {
    display: none;
  }
  /******** FIN ********/

  .header {
    padding: 0px;
  }
  .header_top {
    flex-direction: column;
  }

  .header_logo {
    text-align: center;
  }

  .header_logo img {
    width: 30%;
  }

  .header_name {
    flex-direction: column;
    line-height: normal;
  }

  .header_actions {
    flex-direction: column;
  }

  .header_actions__cart {
    margin: 20px 0px;
  }

  .header_bottom {
    flex-direction: column;
    padding: 20px 0px;
  }

  .menu_main {
    flex-direction: column;
  }

  .menu__main_categories {
    width: 90%;
    left: 3px;
  }

  .dropdown__menu:hover .menu__main_categories {
    z-index: 10;
  }

  .menu_main li.menu_main__item {
    margin: 10px 0px;
  }

  .header_name__title {
    flex-direction: column;
    line-height: normal;
    margin-top: -20px;
  }

  .menu_search {
    padding: 0px 10px;
  }

  .input_search {
    width: 100%;
  }

  .menu_search svg {
    right: 25px;
  }

  .menu_slider {
    flex-direction: column;
  }

  .catalog h1 {
    font-size: 36px;
  }

  .Catalogo_Group {
    grid-template-columns: 1fr;
  }

  .item__catalog {
    font-size: 30px;
    line-height: 30px;
    width: 100%;
    background-position: top !important;
    height: 310px;
  }

  .footer__menu {
    flex-direction: column;
    margin: 20px auto;
    width: 100%;
  }

  .footer__section--f1 {
    margin-left: 0px;
    text-align: center;
  }

  .footer__section--f2 {
    text-align: center;
  }

  .footer__menu p {
    text-align: center;
  }

  .subscribe {
    width: 90%;
    margin: auto;
    flex-direction: column;
  }

  .footer_subscribe-button {
    margin: 9px 7px;
  }

  .slider_categorie {
    background-position: center;
  }

  .slider_categorie__text {
    font-size: 40px;
    line-height: 40px;
  }

  .shop {
    width: 100%;
  }

  .shop_items__header {
    width: 90%;
    margin: auto;
  }

  .shop__filters {
    display: none;
  }

  .shop__list_items {
    margin: 35px 0px;
  }

  .shop_items__list {
    margin: 40px 0px;
  }

  .container_list {
    grid-template-columns: 1fr 1fr;
  }

  .shop_item__image {
    height: 170px;
  }

  .shop_item__info {
    min-height: 164px;
  }

  ul.breadcrumb li {
    font-size: 20px;
  }

  .product {
    width: 90%;
    margin: 10px auto;
  }

  .container_product {
    flex-direction: column;
  }

  .image_product {
    flex-direction: column;
  }

  .trail_image {
    flex-direction: row;
    height: auto;
  }

  .trail_image__item {
    width: 70px;
    height: 90px;
    margin: 8px 5px;
  }

  .image_actual__container {
    width: 100%;
    height: auto;
  }

  .description_product__categorie {
    font-size: 25px;
  }

  .description_product__name {
    font-size: 19px;
  }

  .description_product__group_buttons {
    width: 100%;
  }

  .description_product__button-black {
    padding: 5px 25px;
  }

  /****************** CART ******************/
  .cart {
    position: absolute;
    z-index: 10;
    background: white;
    width: 298px;
    border: 2px solid var(--main-dark-color);
    right: -131px;
    top: 60px;
    display: none;
  }

  .cart::before {
    content: "";
    position: absolute;
    right: 135px;
    top: -18px;
    border-left: 11px solid #1000ff00;
    border-bottom: 18px solid #000000;
    border-right: 11px solid #90ee9000;
  }
  .cart::after {
    content: "";
    position: absolute;
    right: 136px;
    top: -14px;
    border-left: 10px solid #1000ff00;
    border-bottom: 16px solid #ffffff;
    border-right: 10px solid #90ee9000;
  }

  .product_cart__info h3 {
    font-size: 18px;
  }

  .product_cart__info p {
    font-size: 14px;
    text-align: start;
  }

  .total_cart__info p {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
  }
  /*********** FIN ************/

  /****************** LOGIN ******************/
  .form_login {
    width: 100%;
  }

  .content_inputs_form_login {
    flex-direction: column;
  }

  .content_form_login {
    width: 100%;
  }

  .group_form__input {
    margin-left: 6px;
    width: 92%;
  }

  .btn_form_login {
    margin-left: 32px;
    margin-top: 15px;
  }

  .content_form_login label {
    margin-left: 10px;
  }

  /*********** FIN ************/

  /****************** NAV ******************/

  .dropdown__menu:hover .menu__main_categories {
    width: 98%;
  }

  .section__categories {
    margin: 25px 2px;
  }

  .container__categories {
    width: 100%;
    margin: 25px 0px;
  }

  .ul__brands {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .list__section_categories ul {
    list-style: none;
    margin: 20px 15px;
    /*width: 39%;*/
  }
  /*********** FIN ************/

  /****************** Advisory ******************/

  .slider_advisory {
    height: 300px;
  }

  .slider_advisory img {
    width: 30%;
    margin-bottom: 15px;
  }

  .slider_advisory__text {
    font-size: 75px;
    margin-bottom: 55px;
  }

  .title_advisory {
    font-size: 70px;
    line-height: 60px;
    margin-top: -20px;
  }

  .container_advisory {
    padding: 30px 6px;
  }

  .sections_steps {
    flex-direction: column;
  }

  .section_steps_buy {
    flex-direction: column;
  }

  .sections_steps {
    max-height: none;
  }

  .wrap_img_step_buy {
    justify-content: center;
  }

  .option_advisory h3 {
    text-align: center;
  }

  /*********** FIN ************/

  /****************** SEARCHER ******************/
  .slider_searcher {
    height: 300px;
  }

  .slider_searcher img {
    width: 25%;
  }

  .slider_searcher__text {
    line-height: 42px;
    font-size: 46px;
    text-align: center;
  }

  .container_searcher {
    padding: 1px 2px;
  }

  #list_products_found {
    grid-template-columns: 1fr 1fr;
  }

  /*********** FIN ************/

  /****************** ABOUT US ******************/
  .slider_about {
    height: 300px;
  }

  .slider_about img {
    width: 25%;
  }

  .slider_about__text {
    line-height: 42px;
    font-size: 46px;
    text-align: center;
  }

  .option_about {
    text-align: center;
    max-width: 33%;
  }

  .wrap_info_text h1 {
    line-height: 42px;
    font-size: 46px;
  }

  /* .wrap_info_text p {
        font-size: 17px;
    } */

  .wrap_info_text {
    padding: 15px 2%;
  }

  /*********** FIN ************/

  /*********** CART ************/
  .purchase {
    flex-direction: column;
  }

  .collapsable_forms {
    padding: 2px 6px;
  }

  .information_form,
  .directions_form {
    width: 100%;
    margin-left: none;
  }

  .group_form {
    flex-direction: column;
  }

  .group_form__label {
    font-size: 18px;
    flex: 1;
    text-align: start;
  }

  .form__terms_conditions {
    padding: 0px 11px;
  }

  .form__section_buttons .button_continue {
    width: 100%;
  }

  .resum_pay h1 {
    padding: 10px 36px;
  }

  .list_product__resum_pay {
    margin: 20px 6px;
    width: 97%;
  }

  .info_product__resum_pay h3 {
    font-size: 19px;
  }

  .info_product__resum_pay p {
    font-size: 15px;
    margin-top: 5px;
  }

  .terms_condition__resum_pay {
    margin: 40px 6px;
    width: 100%;
  }

  .buttons_section__resum_pay {
    width: 100%;
    margin: none;
  }

  .button__resum_pay-black {
    margin: 0px;
  }

  .button__resum_pay-white {
    width: 100%;
    margin: 0px;
    margin-top: 5px;
  }

  .collapse__header h3 {
    font-size: 20px;
  }

  #content_btn_forget button {
    margin-left: 0px;
    margin-top: 0px;
  }

  .modal-contenido img {
    width: 35%;
  }

  .modal-contenido {
    width: 270px;
    /* height: 420px; */
  }

  .form__section_buttons .button_continue_address {
    width: 100%;
  }

  .name_visible_address {
    font-size: 16px;
  }

  .title_section {
    width: 40%;
  }

  .title2 {
    display: none;
  }

  .input_datos1 {
    width: 96%;
  }

  .input_datos2 {
    width: 96%;
  }

  #btn_update_profile {
    width: 100%;
  }

  #btn_update_address_profile {
    width: 100%;
  }

  .medio {
    display: none;
  }

  .container_address {
    margin-top: 9%;
  }

  .btn_Payu {
    width: 70%;
  }
  /*********** FIN ************/
}
@media (min-width: 661px) and (max-width: 900px) {
  .footer_item__btn_product:nth-of-type(2) {
    display: none;
  }
  .menu_slider__item {
    max-height: 216px;
  }
  .list__section_categories .Sizes_List {
    list-style: none;
    margin: 5px 9px;
    /*width: 30%;*/
  }

  .modal-contenido {
    margin: 5% auto;
  }

  .Subgrupos-Tallas-List {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
  /************  *************/
  /* .nav_toggle {
        position: relative;
        cursor: pointer;
        margin: 0 1rem;
        right: 0px;
        margin-bottom: 15px;
        display: flex;
        justify-content: flex-end;
    }

    .nav_toggle svg{
        font-size: 35px;
    }

    .nav_toggle .Close{
        display: none;
    }

    .nav_checkbox{
        display: none;
    }

    .menu_main li{
        display: none;
    }

    .nav_checkbox:checked ~ .menu_main li{
        display: flex;
    }

    .nav_checkbox:checked ~ .nav_toggle .Close{
        display: block;
    }

    .nav_checkbox:checked ~ .nav_toggle .Open{
        display: none;
    } */
  /******** FIN ********/

  .header {
    padding: 0px;
  }
  .header_top {
    flex-direction: column;
  }

  .header_logo {
    text-align: center;
  }

  .header_logo img {
    width: 30%;
  }

  .header_name {
    flex-direction: column;
    line-height: normal;
  }

  .header_actions {
    width: 52%;
  }

  .header_actions__cart {
    margin: 20px 0px;
  }

  .number_products {
    right: 55px;
  }

  .header_bottom {
    flex-direction: column;
    padding: 20px 0px;
  }

  /* .menu_main{
        flex-direction: column;
    } */

  .menu__main_categories {
    width: 90%;
    left: 3px;
  }

  .dropdown__menu:hover .menu__main_categories {
    z-index: 10;
  }

  .menu_main li.menu_main__item {
    margin: 10px 0px;
    padding: 5px 15px;
  }

  .header_name__title {
    flex-direction: column;
    line-height: normal;
  }

  .menu_search {
    padding: 0px 10px;
  }

  .input_search {
    width: 100%;
  }

  .menu_search svg {
    right: 25px;
  }

  /* .menu_slider{
        flex-direction: column
    } */

  .container__catalog {
    width: 96%;
  }

  .catalog h1 {
    font-size: 36px;
  }

  .Catalogo_Group {
    grid-template-columns: 1fr 1fr;
  }

  .item__catalog {
    font-size: 40px;
    line-height: 40px;
    width: 94%;
    background-position: top !important;
    height: 310px;
    margin: 10px auto;
  }

  .footer {
    width: 99%;
  }

  .footer__section--f2 {
    text-align: center;
  }

  .footer__menu {
    flex-direction: column;
    margin: 20px auto;
    width: 100%;
  }

  .footer__section--f1 {
    margin-left: 0px;
    text-align: center;
  }

  .footer__menu p {
    text-align: center;
  }

  .subscribe {
    width: 90%;
    margin: auto;
  }

  .footer_subscribe-button {
    margin: 9px 7px;
  }

  .slider_categorie {
    background-position: center;
  }

  .slider_categorie__text {
    font-size: 86px;
  }

  .shop {
    width: 100%;
  }

  .shop_items__header {
    width: 90%;
    margin: auto;
  }

  .shop__filters {
    display: none;
  }

  .shop__list_items {
    margin: 35px 0px;
  }

  .shop_items__list {
    margin: 40px 0px;
  }

  .container_list {
    grid-template-columns: 1fr 1fr;
  }

  .shop_item__image {
    height: 310px;
  }

  .shop_item__info {
    min-height: 164px;
  }

  ul.breadcrumb li {
    font-size: 20px;
  }

  .product {
    width: 90%;
    margin: 10px auto;
  }

  .container_product {
    flex-direction: column;
  }

  /* .image_product{
        flex-direction: column;
    } */

  .trail_image {
    /* flex-direction: row;
        height: auto;
        justify-content: space-around; */
    width: 45%;
  }

  .trail_image__item {
    width: 90px;
    /* height: 90px;
        margin: 8px 5px; */
  }

  .image_actual__container {
    width: 100%;
    height: auto;
  }

  .description_product__categorie {
    font-size: 25px;
  }

  .description_product__name {
    font-size: 19px;
  }

  .description_product__group_buttons {
    width: 100%;
  }

  .description_product__button-black {
    padding: 5px 25px;
  }

  /****************** CART ******************/
  .cart {
    position: absolute;
    z-index: 10;
    background: white;
    width: 298px;
    border: 2px solid var(--main-dark-color);
    right: -5px;
    top: 60px;
    display: none;
  }

  .cart::before {
    content: "";
    position: absolute;
    right: 51px;
    top: -18px;
    border-left: 11px solid #1000ff00;
    border-bottom: 18px solid #000000;
    border-right: 11px solid #90ee9000;
  }
  .cart::after {
    content: "";
    position: absolute;
    right: 52px;
    top: -14px;
    border-left: 10px solid #1000ff00;
    border-bottom: 16px solid #ffffff;
    border-right: 10px solid #90ee9000;
  }

  .product_cart__info h3 {
    font-size: 18px;
  }

  .product_cart__info p {
    font-size: 14px;
    text-align: start;
  }

  .total_cart__info p {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
  }
  /*********** FIN ************/

  /****************** LOGIN ******************/
  .form_login {
    width: 100%;
  }

  .content_inputs_form_login {
    flex-direction: column;
  }

  .content_form_login {
    width: 100%;
  }

  .group_form__input {
    margin-left: 6px;
    width: 92%;
  }

  .btn_form_login {
    margin-left: 32px;
    margin-top: 15px;
  }

  .content_form_login label {
    margin-left: 10px;
  }

  /*********** FIN ************/

  /****************** NAV ******************/

  .dropdown__menu:hover .menu__main_categories {
    width: 98%;
    top: 452px;
  }

  .section__categories {
    margin: 25px 2px;
  }

  .list__section_categories ul {
    list-style: none;
    margin: 20px 12px;
    /*width: 29%;*/
  }

  .ul__brands {
    grid-template-columns: 1fr 1fr 1fr;
  }
  /*********** FIN ************/

  /****************** Advisory ******************/

  .slider_advisory {
    height: 300px;
  }

  .slider_advisory img {
    width: 30%;
    margin-bottom: 15px;
  }

  .slider_advisory__text {
    font-size: 75px;
    margin-bottom: 55px;
  }

  .title_advisory {
    font-size: 70px;
    line-height: 60px;
    margin-top: -20px;
  }

  .container_advisory {
    padding: 30px 6px;
  }

  .sections_steps {
    flex-direction: column;
  }

  .section_steps_buy {
    flex-direction: column;
  }

  .sections_steps {
    max-height: none;
  }

  .wrap_img_step_buy {
    justify-content: center;
  }

  .option_advisory h3 {
    text-align: center;
  }

  /*********** FIN ************/

  /****************** SEARCHER ******************/
  .slider_searcher {
    height: 300px;
  }

  .slider_searcher img {
    width: 25%;
  }

  .slider_searcher__text {
    line-height: 42px;
    font-size: 46px;
    text-align: center;
  }

  .container_searcher {
    padding: 1px 2px;
  }

  #list_products_found {
    grid-template-columns: 1fr 1fr;
  }

  /*********** FIN ************/

  /****************** ABOUT US ******************/
  .slider_about {
    height: 300px;
  }

  .slider_about img {
    width: 25%;
  }

  .slider_about__text {
    line-height: 42px;
    font-size: 46px;
    text-align: center;
  }

  .option_about {
    text-align: center;
    max-width: 33%;
  }

  .wrap_info_text h1 {
    line-height: 42px;
    font-size: 46px;
  }

  /* .wrap_info_text p {
        font-size: 17px;
    } */

  .wrap_info_text {
    padding: 15px 2%;
  }

  /*********** FIN ************/

  /*********** CART ************/
  .purchase {
    flex-direction: column;
  }

  .collapsable_forms {
    padding: 2px 40px;
  }

  .information_form,
  .directions_form {
    width: 100%;
    margin-left: none;
  }

  .group_form {
    flex-direction: column;
  }

  .group_form__label {
    font-size: 18px;
    flex: 1;
    text-align: start;
  }

  .form__terms_conditions {
    padding: 0px 11px;
  }

  .form__section_buttons .button_continue {
    width: 100%;
  }

  .resum_pay h1 {
    padding: 10px 36px;
  }

  .list_product__resum_pay {
    margin: 20px 40px;
    width: 88%;
  }

  .info_product__resum_pay h3 {
    font-size: 19px;
  }

  .info_product__resum_pay p {
    font-size: 15px;
    margin-top: 5px;
  }

  .terms_condition__resum_pay {
    margin: 40px 6px;
    width: 100%;
  }

  .buttons_section__resum_pay {
    width: 100%;
    margin: none;
  }

  .button__resum_pay-black {
    width: 83%;
    margin: 50px;
  }

  .button__resum_pay-white {
    width: 100%;
    margin: 0px;
    margin-top: 5px;
  }

  .collapse__header h3 {
    font-size: 20px;
  }

  #content_btn_forget button {
    margin-left: 0px;
    margin-top: 0px;
  }

  .modal-contenido img {
    width: 35%;
  }

  .modal-contenido {
    width: 270px;
    /* height: 420px; */
  }

  .form__section_buttons .button_continue_address {
    width: 100%;
  }

  .name_visible_address {
    font-size: 16px;
  }

  .title_section {
    width: 40%;
  }

  /* .title2{
        display: none;
    } */

  .input_datos1 {
    width: 96%;
  }

  .input_datos2 {
    width: 96%;
  }

  #btn_update_profile {
    width: 98%;
  }

  #btn_update_address_profile {
    width: 98%;
  }

  /* .medio{
        display: none;
    } */

  .container_address {
    margin-top: 9%;
  }

  .btn_Payu {
    width: 70%;
  }
  /*********** FIN ************/
}
@media (min-width: 901px) and (max-width: 1324px) {
  .footer_item__btn_product:nth-of-type(2) {
    display: none;
  }

  .menu_slider__item {
    max-height: 295px;
  }

  .list__section_categories .Sizes_List {
    list-style: none;
    margin: 5px 9px;
    /*width: 22%;*/
  }

  .modal-contenido {
    margin: 5% auto;
  }

  .Subgrupos-Tallas-List {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
  /************  *************/
  /* .nav_toggle {
        position: relative;
        cursor: pointer;
        margin: 0 1rem;
        right: 0px;
        margin-bottom: 15px;
        display: flex;
        justify-content: flex-end;
    }

    .nav_toggle svg{
        font-size: 35px;
    }

    .nav_toggle .Close{
        display: none;
    }

    .nav_checkbox{
        display: none;
    }

    .menu_main li{
        display: none;
    }

    .nav_checkbox:checked ~ .menu_main li{
        display: flex;
    }

    .nav_checkbox:checked ~ .nav_toggle .Close{
        display: block;
    }

    .nav_checkbox:checked ~ .nav_toggle .Open{
        display: none;
    } */
  /******** FIN ********/

  .header {
    padding: 0px;
  }
  .header_top {
    flex-direction: column;
  }

  .header_logo {
    text-align: center;
  }

  .header_logo img {
    width: 30%;
  }

  .header_name {
    flex-direction: column;
    line-height: normal;
  }

  .header_actions {
    width: 52%;
  }

  .header_actions__cart {
    margin: 20px 0px;
  }

  .number_products {
    right: 98px;
  }

  .header_bottom {
    flex-direction: column;
    padding: 20px 0px;
  }

  /* .menu_main{
        flex-direction: column;
    } */

  .menu__main_categories {
    width: 90%;
    left: 3px;
  }

  .dropdown__menu:hover .menu__main_categories {
    z-index: 10;
  }

  .menu_main li.menu_main__item {
    margin: 10px 0px;
    padding: 5px 15px;
  }

  .header_name__title {
    flex-direction: column;
    line-height: normal;
  }

  .menu_search {
    padding: 0px 10px;
    text-align: end;
  }

  .input_search {
    width: 64%;
  }

  .menu_search svg {
    right: 25px;
  }

  /* .menu_slider{
        flex-direction: column
    } */

  .container__catalog {
    width: 96%;
  }

  .catalog h1 {
    font-size: 36px;
  }

  .Catalogo_Group {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .item__catalog {
    width: 94%;
    background-position: top !important;
    height: 310px;
    margin: 10px auto;
  }

  .footer {
    width: 99%;
  }

  .footer__menu {
    /* flex-direction: column; */
    margin: 20px auto;
    width: 100%;
  }

  .footer__section--f2 {
    text-align: center;
  }

  .footer__section--f1 {
    margin-left: 0px;
    text-align: center;
  }

  .footer__menu p {
    text-align: center;
  }

  .subscribe {
    width: 100%;
    /* margin: auto; */
  }

  .footer_subscribe-button {
    margin: 9px 7px;
  }

  .slider_categorie {
    background-position: center;
  }

  .slider_categorie__text {
    font-size: 86px;
  }

  .shop {
    width: 100%;
  }

  .shop_items__header {
    width: 90%;
    margin: auto;
  }

  .shop__filters {
    display: none;
  }

  .shop__list_items {
    margin: 35px 0px;
  }

  .shop_items__list {
    margin: 40px 0px;
  }

  .container_list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .shop_item__image {
    height: 310px;
  }

  .shop_item__info {
    min-height: 164px;
  }

  ul.breadcrumb li {
    font-size: 20px;
  }

  .product {
    width: 90%;
    margin: 10px auto;
  }

  /* .container_product{
        flex-direction: column;
    } */

  /* .image_product{
        flex-direction: column;
    } */

  .trail_image {
    height: 494px;
    width: 80%;
  }

  .trail_image__item {
    width: 90px;
    margin: 2px 22px;
    /* height: 90px;
        margin: 8px 5px; */
  }

  .image_actual {
    margin: 0px 15px;
  }

  .image_actual__container {
    width: 100%;
    height: auto;
  }

  .description_product__categorie {
    font-size: 25px;
  }

  .description_product__name {
    font-size: 19px;
  }

  .description_product__group_buttons {
    width: 70%;
  }

  .description_product__button-black {
    padding: 5px 25px;
  }

  /****************** CART ******************/
  .cart {
    position: absolute;
    z-index: 10;
    background: white;
    width: 298px;
    border: 2px solid var(--main-dark-color);
    right: 45px;
    top: 60px;
    display: none;
  }

  .cart::before {
    content: "";
    position: absolute;
    right: 51px;
    top: -18px;
    border-left: 11px solid #1000ff00;
    border-bottom: 18px solid #000000;
    border-right: 11px solid #90ee9000;
  }
  .cart::after {
    content: "";
    position: absolute;
    right: 52px;
    top: -14px;
    border-left: 10px solid #1000ff00;
    border-bottom: 16px solid #ffffff;
    border-right: 10px solid #90ee9000;
  }

  .product_cart__info h3 {
    font-size: 18px;
  }

  .product_cart__info p {
    font-size: 14px;
    text-align: start;
  }

  .total_cart__info p {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
  }
  /*********** FIN ************/

  /****************** LOGIN ******************/
  .form_login {
    width: 100%;
  }

  /* .content_inputs_form_login {
        flex-direction: column;
    } */

  .content_form_login {
    width: 100%;
  }

  .group_form__input {
    margin-left: 6px;
    width: 92%;
  }

  .btn_form_login {
    margin-left: 32px;
    margin-top: 15px;
  }

  .content_form_login label {
    margin-left: 10px;
  }

  /*********** FIN ************/

  /****************** NAV ******************/

  .dropdown__menu:hover .menu__main_categories {
    width: 98%;
    top: 452px;
  }

  .section__categories {
    margin: 25px 2px;
  }

  .list__section_categories ul {
    list-style: none;
    margin: 20px 13px;
    /*width: 30%;*/
  }
  /*********** FIN ************/

  /****************** Advisory ******************/

  .slider_advisory {
    height: 300px;
  }

  .slider_advisory img {
    width: 19%;
    margin-bottom: 15px;
  }

  .slider_advisory__text {
    font-size: 75px;
    margin-bottom: 55px;
  }

  .title_advisory {
    font-size: 70px;
    line-height: 60px;
    margin-top: -20px;
  }

  .container_advisory {
    padding: 30px 6px;
  }

  .sections_steps {
    flex-direction: column;
  }

  /* .section_steps_buy {
        flex-direction: column;
    } */

  .sections_steps {
    max-height: none;
  }

  .wrap_img_step_buy {
    justify-content: center;
  }

  .option_advisory h3 {
    text-align: center;
  }

  /*********** FIN ************/

  /****************** SEARCHER ******************/
  .slider_searcher {
    height: 300px;
  }

  .slider_searcher img {
    width: 25%;
  }

  .slider_searcher__text {
    line-height: 42px;
    font-size: 70px;
    text-align: center;
    margin-bottom: 60px;
  }

  .container_searcher {
    padding: 1px 2px;
  }

  #list_products_found {
    grid-template-columns: 1fr 1fr 1fr;
  }

  /*********** FIN ************/

  /****************** ABOUT US ******************/
  .slider_about {
    height: 300px;
  }

  .slider_about img {
    width: 19%;
  }

  .slider_about__text {
    line-height: 42px;
    font-size: 70px;
    text-align: center;
    margin-bottom: 51px;
  }

  .option_about {
    text-align: center;
    max-width: 33%;
  }

  .wrap_info_text h1 {
    line-height: 42px;
    font-size: 46px;
  }

  /* .wrap_info_text p {
        font-size: 17px;
    } */

  .wrap_info_text {
    padding: 15px 2%;
  }

  /*********** FIN ************/

  /*********** CART ************/
  /* .purchase {
        flex-direction: column;
    } */

  .collapsable_forms {
    padding: 2px 40px;
  }

  .information_form,
  .directions_form {
    width: 100%;
    margin-left: none;
  }

  .group_form {
    flex-direction: column;
  }

  .group_form__label {
    font-size: 18px;
    flex: 1;
    text-align: start;
  }

  .form__terms_conditions {
    padding: 0px 11px;
  }

  .form__section_buttons .button_continue {
    width: 100%;
  }

  .resum_pay h1 {
    padding: 10px 36px;
  }

  .list_product__resum_pay {
    margin: 20px 2px;
    width: 98%;
  }

  .info_product__resum_pay h3 {
    font-size: 19px;
  }

  .info_product__resum_pay p {
    font-size: 15px;
    margin-top: 5px;
  }

  .terms_condition__resum_pay {
    margin: 40px 6px;
    width: 100%;
  }

  .buttons_section__resum_pay {
    width: 100%;
    margin: none;
  }

  .button__resum_pay-black {
    width: 100%;
    margin: 0px;
  }

  .button__resum_pay-white {
    width: 100%;
    margin: 0px;
    margin-top: 5px;
  }

  .collapse__header h3 {
    font-size: 20px;
  }

  #content_btn_forget button {
    margin-left: 0px;
    margin-top: 0px;
  }

  .modal-contenido img {
    width: 35%;
  }

  .modal-contenido {
    width: 400px;
    /* height: 420px; */
  }

  .form__section_buttons .button_continue_address {
    width: 100%;
  }

  .name_visible_address {
    font-size: 16px;
  }

  .title_section {
    width: 40%;
  }

  /* .title2{
        display: none;
    } */

  .input_datos1 {
    width: 96%;
  }

  .input_datos2 {
    width: 96%;
  }

  #btn_update_profile {
    width: 98%;
  }

  #btn_update_address_profile {
    width: 98%;
  }

  /* .medio{
        display: none;
    } */

  .container_address {
    margin-top: 9%;
  }

  .btn_Payu {
    width: 70%;
  }
  /*********** FIN ************/
}
@media (min-width: 1325px) and (max-width: 1480px) {
  .menu_slider__item {
    max-height: 434px;
  }
  .list__section_categories .Sizes_List {
    list-style: none;
    margin: 5px 9px;
    /*width: 30%;*/
  }

  .Subgrupos-Tallas-List {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .ul__brands {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .cart {
    right: 6px;
  }

  .number_products {
    right: 27px;
  }

  .menu_search {
    display: flex;
    align-items: center;
  }

  .input_search {
    width: 100%;
  }

  .menu_search svg {
    right: 16px;
    bottom: 14px;
  }

  /* .form_login{
        width: 66%;
    } */

  .content_form_login {
    display: flex;
    flex-direction: column;
  }

  .btn_form_login {
    margin-left: 0;
    width: 60%;
  }

  .modal-contenido {
    margin: 9% auto;
  }
}

@import "//netdna.bootstrapcdn.com/font-awesome/3.0/css/font-awesome.css";
@media (max-width: 1324px) {
  #s {
    width: 100% !important;
    opacity: 1 !important;
  }
  #searchform {
    width: 100%;
    margin: 0px 20px;
    padding: 10px;
  }
}

#searchform {
  border-radius: 8em;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
#s {
  transition: all 0.2s ease-out;
  width: 1px;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  padding: 0;
  margin: 0;
  border: 0;
  background-color: transparent;
  opacity: 0;
}
#s:focus {
  width: 10em;
  opacity: 1;
}
label {
  display: inline-block;
  color: #121212;
  position: relative;
  cursor: pointer;
}

.contaiersearchform {
  height: 40px;
  display: flex;
  flex: 1;
  justify-content: flex-end;
}
