@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'Campton';
    src: url('/wp-content/fonts/Campton-Bold.woff2') format('woff2');
    font-weight: 700;
  }
  
  @font-face {
    font-family: 'Campton Book';
    src: url('/wp-content/fonts/Campton-Book.woff2') format('woff2');
    font-weight: 400;
  }

  @font-face {
    font-family: 'Campton';
    src: url('/wp-content/fonts/Campton-Light.woff2') format('woff2');
    font-weight: 300;
  }
  
  @font-face {
    font-family: 'Campton';
    src: url('/wp-content/fonts/Campton-Medium.woff2') format('woff2');
    font-weight: 500;
  }

  @font-face {
    font-family: 'Campton';
    src: url('/wp-content/fonts/Campton-SemiBold.woff2') format('woff2');
    font-weight: 600;
  }

@keyframes searchBarPopIn{
    0%{
        transform: translateX(-50%) scaleX(0);
    }
    100%{
        transform: translateX(-50%) scaleX(1);
        pointer-events:all;
    }
    }
    
    
    
    @keyframes searchBarPopOut{
        0%{
            transform: translateX(-50%) scaleX(1);
        }
        100%{
            transform: translateX(-50%) scaleX(0);
            pointer-events:none;
        }
    }
@keyframes opacityIn{
    0%{
        opacity:0;
    }
    100%{
        opacity:1;
    }
    }
    
    
    @keyframes opacityOut{
    0%{
        opacity:1;
    }
    100%{
        opacity:0;
    }
    
    }
    

    * {
        outline: unset;
    }


.cky-modal *, .cky-consent-bar * {
  font-family: 'Campton', 'sans-serif';
}


header#header {
    height: 15vh;
}
header#header h1{
    margin:0;
}
 .ocultoPhone{
    display:none;
}
.pc-menu{
    display: none;
}

.mujerCat:hover .pc-menu, .hombreCat:hover .pc-menu, .calzadoCat:hover .pc-menu {
    display: flex
;
    flex-direction: column;
    position: absolute;
    background-color: #1a1a1a;
    z-index: 14;
    padding: 0em 1.8em;
    left: -6em;
    width: 200px;
    align-items: center;
    padding-bottom: 1em;
    padding-top: 2em;
    text-align: center;
}
@keyframes opacity-phone{
    0%{opacity: 0;}
    100%{opacity: 1;}
}
@keyframes remove-opacity-phone{
    0%{opacity: 1;}
    100%{opacity: 0;}
}
.mostrarPhone {
    display: flex
;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #1a1a1a;
    padding: 1em 1em;
    opacity: 1;
    animation: opacity-phone 1s forwards;
}
.ocultoPhone{
    opacity: 1;
    animation: remove-opacity-phone 1s forwards;
}


.mostrarPhone a {
    margin-bottom: 9px;
    color: #FFF !important;
    font-size: 0.9em;
}
.hombreCat,.mujerCat,.calzadoCat,.accesoriosCat{
    position: relative;
}

.accesoriosCat:hover .pc-menu {
    display: flex
;
    flex-direction: column;
    position: absolute;
    background-color: #1a1a1a;
    z-index: 14;
    padding: 1.5em 1.8em;
    left: -5em;
    width: 200px;
    align-items: center;
}
.pc-menu a {
    margin-bottom: 0.9em;
    font-size: 1em!important;
}
.page-id-4762 .pc-menu{
    left: -4em;
}
.page-id-4762 .accesoriosCat .pc-menu {
    left: -3em;
}

a:has(.phoneChevron){
    display: flex;
    align-items: center;
}
.phoneChevron{
    margin-left: 0.4em;
    z-index: 14;
}


.grecaptcha-badge {
    opacity: 0;
}


.headerLogo svg {
    width: 100%;
    height: 7.5vh;
}

.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 15vh;
    padding: 0 5%;
    background-color:#1A1A1A;
}

.headerNav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.headerWC a {
    display: block;
    width: 100%;
    height: 100%;
}

.headerWC>div svg {
    width: 30px;
    height: 30px;
}

.headerWC {
    display: flex;
    flex-direction: row;
}

.headerWC>div {
    margin: 0 0.7em;
} 

.headerNav p {
    color: #fff;
    margin: 0 1.4em;
    font-family: 'Campton', 'sans-serif';
    font-weight: 500;
    font-size: 1.1em;
    cursor: default;
}

.headerNav a {
    color: #fff;
    font-family: 'Campton', 'sans-serif';
    text-decoration: unset;
    font-weight: 500;
    transition: all 0.25s ease-in-out;
    font-size: 0.9em;
}

.headerNav a:hover {
    color: #DCF716;
}

.headerWCCart a {
    text-decoration: unset;
}

.headerWCCart {
    position: relative;
}

span.cartItemsNumber {
    font-size: 1em;
    font-family: 'Campton', 'sans-serif';
    font-weight: 800;
    background-color: #fff;
    color: #1a1a1a;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0%;
    left: 100%;
    transform: translate(-40%,-50%);
}



.headerWCLupa {
    position: relative;
    cursor:pointer;
}



.headerSearchFunction {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 10vw;
    pointer-events: none;
}

.searchBarPopOut{
    animation:searchBarPopOut 0.25s ease-in-out forwards;
}


.searchBarPopIn{
    animation:searchBarPopIn 0.25s ease-in-out forwards;
}

.headerSearchFunction input {
    border: 2px solid #fff;
    width: 100%;
    font-size: 1.2em;
    padding-right: 1.4em;
    box-sizing: border-box;
}

.headerSearchFunctionImg svg {
    width: 20px!important;
    height: 20px!important;
}

.headerSearchFunctionImg {
    width: 20px!important;
    height: 20px!important;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-139%,-50%);
    cursor: pointer;
}


.headerLogo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.phoneNav{
    display:none;
}


#menuToggle
{
  display: block;
  position: relative;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle>input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; 
  z-index: 2; 
  
  -webkit-touch-callout: none;
}

#menuToggle>span {
    display: block;
    width: 27px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    background: #cdcdcd;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 1.05s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

#menu {
    position: absolute;
    width: 70vw;
    margin: -100px 0 0 -50px;
    padding: 50px;
    background: #ededed;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(60%, -80%) rotate(90deg);
    transition: transform 0.75s ease-in-out;
    height: 50vh;
    transform-origin: bottom;
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}


#menuToggle input:checked ~ ul {
    transform: translate(-60%,0);
}

ul#menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding-top: 14.6vh;
    border-bottom-left-radius: 40px;
    border-top-left-radius: 650px;
}

ul#menu a {
    font-family: 'Campton','sans-serif';
    color: #1a1a1a;
    text-decoration: none;
}

ul#menu>* {
    transform: translate(-20px,0px);
}


.activeLink{
    color:#dbf615!important;
}

html body .headerSearchFunction.searchBarPopIn svg * {
    stroke: #1a1a1a;
    stroke-width: 3px;
}


.phoneSearchFunction {
    height: 2.3vh;
    width: 18vh;
    border: 1px solid black;
}




/*CONTACT MODAL*/
.modalBlur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    z-index: 999;
    transition: all 0.35s ease-in-out;
}

.contactModal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    height: 70%;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 2em 4em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.closeModal {
    position: absolute;
    top: 0;
    left: 100%;
    transform: translate(-140%,40%);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.29289 5.29289C5.68342 4.90237 6.31658 4.90237 6.70711 5.29289L12 10.5858L17.2929 5.29289C17.6834 4.90237 18.3166 4.90237 18.7071 5.29289C19.0976 5.68342 19.0976 6.31658 18.7071 6.70711L13.4142 12L18.7071 17.2929C19.0976 17.6834 19.0976 18.3166 18.7071 18.7071C18.3166 19.0976 17.6834 19.0976 17.2929 18.7071L12 13.4142L6.70711 18.7071C6.31658 19.0976 5.68342 19.0976 5.29289 18.7071C4.90237 18.3166 4.90237 17.6834 5.29289 17.2929L10.5858 12L5.29289 6.70711C4.90237 6.31658 4.90237 5.68342 5.29289 5.29289Z' fill='%230F1729'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    width: 50px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    cursor:pointer;
}

.info p {
    font-family: 'Campton';
    margin: 0;
    text-align: right;
    margin-bottom: 0.6em;
}

.form textarea {
    padding-top: 7px!important;
}

.text h3 {
    font-family: 'Campton';
    font-size: 1.9em;
    margin: 0.6em 0;
    margin-bottom: 1.2em;
}


.mapAndInfo {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.form * {
    font-family: 'Campton'!important;
}
.form  .forminator-checkbox__wrapper p {
    margin: 0;
}

.formAndText {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    width: 46%;
}

.map {
    margin-bottom: 5.6vh;
}

span.recaptcha {
    font-family: 'Montserrat';
    color: grey;
    font-size: 0.7em;
    display: block;
    transform: translateY(50%);
}

.modalBlur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    z-index: 999;
    transition: all 0.35s ease-in-out;
    display: none;
    opacity: 0;
}

.openModal{
cursor: pointer;

}

@media only screen and (max-width:1600px){

    .headerNav a {
    margin: 0 0.8em;
}

.headerNav p {
    display: none;
}
.map iframe {
    width: 60vh;
    height: 53vh;
}
.contactModal {
    width: 83%;
    height: 84%;
}

}


@media only screen and (max-width:1100px){
    .contactModal {
    flex-direction: column;
}
.map {
    display: none;
}
.info {
    width: fit-content;
    margin-left: auto;
    transform: translateY(-130%);
}
.formAndText {
    width: 100%;
}
.form  button.forminator-button.forminator-button-submit {
    max-width: 200px!important;
}

}

@media only screen and (max-width:600px){
    .closeModal {
    width: 30px;
    height: 24px;
}
    .contactModal {
    justify-content: center;
}
    .info {
    transform: translateY(10%);
    margin-left: unset;
}
.contactModal {
    width: 95%;
    height: 98%;
    padding: 1em;
    box-sizing: border-box;
}
.text h3 {
    text-align: center;
    margin-bottom: 0.4em;
    font-size: 1.4em;
    padding-top: 0.7em;

}
.form .forminator-field:has(.forminator-button) {
    width: 100%!important;
}
.form  .forminator-col:has(.forminator-button) {
    text-align: center!important;
}
.info p {
    text-align: center;
}
.mapAndInfo {
    justify-content: center;
    align-items: center;
}
}
@media only screen and (max-width:1400px){
    
.header {
    position: relative;
    z-index: 12;
}

    html .headerWC>div svg {
        width: 25px;
        height: 25px;
    }
    html .header {
        padding: 0 2.5%;
    }
    html .headerNav a {
        font-size: 0.8em;
    }
    html .headerLogo svg {
        height: 6.5vh;
    }
    .headerNav a {
        font-size: 0.7em;
    }
    .headerNav p {
        font-size: 0.8em;
        margin: 0 0.9em;
    }
    .headerLogo svg {
        height: 6.7vh;
    }
    .headerWC>div svg {
        width: 23px;
        height: 23px;
    }
}


@media only screen and (max-width:1050px){

    .phoneSearchFunction {
        height: 3.3vh;
        width: 20vh;
    }

    .headerSearchFunction input {
        max-width: 100%;
        max-height: 100%;
    }

    html ul#menu {
        padding-top: 14.6vh;
        border-bottom-left-radius: 40px;
        border-top-left-radius: 251px;
        width: 40vw;
        height: 90vh;
    }
   html ul#menu a {
        font-family: 'Campton', 'sans-serif';
        color: #1a1a1a;
        text-decoration: none;
        margin-bottom: 0em;
    }
    .headerNav{
        display:none;
    }
    .phoneNav{
        display:block;
    }
    .headerWC {
        display: none;
    }
    .headerLogo {
        width: 40%;
    }
    html .header {
        padding: 0 7.5%;
    }
    #menuToggle input:checked ~ ul {
        transform: translate(-35%,0);
    }
    #menu {
        transform: translate(60%, -110%) rotate(90deg);
    }
    .WCPhone svg * {
        stroke: #1a1a1a!important;
    }
    .WCPhone {
        width: 25px;
        height: 25px;
    }
    .phoneWCButtons {
        display: flex;
        flex-direction: row;
        width: 20vh;
        justify-content: space-between;
    }
    .WCPhone>a {
        display: block;
        width: 100%;
        height: 100%;
    }
    .WCPhone svg {
        width: 25px;
        height: 25px;
    }
    .WCPhone span.cartItemsNumber {
        width: 24px;
        height: 24px;
        font-size: 0.7em;
        transform: translate(-60%,-40%);
        background-color: #1a1a1a;
        color: #fff;
    }
    html body .phoneWCButtons {
        display: flex;
        flex-direction: row;
        width: 18vh;
        justify-content: space-between;
        transform: translate(-20px, 70%)!important;
    }
    #menuToggle>span.cartItemsNumber {
        background-color: #fff;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: flex;
        position: absolute;
        z-index: 4;
        font-size: 0.8em;
        transform: translate(-20%,-70%);
    }
    #menuToggle>span.cartItemsNumber {
        background-color: #fff;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: flex;
        position: absolute;
        z-index: 4;
        font-size: 0.8em;
        line-height: 100%;
        transform: translate(-20%,-70%);
        transition: all 0.55s ease-in-out;
    }
    #menuToggle:has(input:checked)>.cartItemsNumber {
        background-color: #EDEDED;
        color: #EDEDED;
    }
}



@media only screen and (max-width:650px){
    html ul#menu {
        padding-top: 14.6vh;
        border-bottom-left-radius: 40px;
        border-top-left-radius: 40vh;
        width: 70vw;
    }
    
    html .header {
        padding: 0 12.5%;
    }
    .headerLogo {
        width: 50%;
    }
}
