/* import */
@import "/assets/css/snipcart.css";
@import "/assets/css/variables.css";
@import "/assets/css/fonts.css";




/* basic */

.iubenda-tp-btn[data-tp-float][data-tp-float=bottom-right], .iubenda-tp-btn[data-tp-float][data-tp-float=top-right] {
    /* display: none !important; */
    opacity: .2;    
}

.poweredbywrapper {
    display: none!important;
}

html, body {
    width: 100vw;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 100vh;
    height: 100%;
    font-size: 16px;
    font-family: 'Jost', system-ui;
    color: var(--dark);
    margin: 0;
    padding: 0;
    background-color: var(--sand);
    letter-spacing: .0625em;
    line-height: 1.5em;

}

a {
    color: var(--sea);
    text-decoration: none;
    letter-spacing: inherit;
}

a h3 {
    color: var(--dark);
}

a:active, a:focus, a:visited { 
    text-decoration: none;
}

h1, h2 {
    font-family: 'Hello Annie', 'Jost';
    text-transform: uppercase;
    font-weight: 100;
    letter-spacing: .1em;
    line-height: normal;
}

h1 {
    font-size: 3em;
    max-width: 20em;
}

h2 {
    font-size: 1.8em;
}

h3 {
    font-size: 1em;
    font-family: 'Jost Bold', system-ui;
    letter-spacing: .1em;
    font-weight: inherit;
}

h4 {
    font-size: 1em;
}

p {
    margin-bottom: 2em;
}

.small {
    font-size: .8em;
}

.fastpage {
    display: flex;
}

.fastpage__container {
    display: flex;
    align-items: start;
    padding-top: 4em;
    padding-bottom: 4em;
    width: 100vw;
}

.fastpage__container--column {
    flex-direction: column;
    margin: 4em auto;
}

.fastpage__image {
    position: relative;
    height: 800px;
    width: 40vw;
}

.fastpage__content {
    margin: 0 4em; 
    width: 45vw;
    
}

.yellow {
    color: var(--sun) !important;
}

.bold {
    font-weight: bold;
}

.button {
    background-color: var(--sun);
    color: var(--white);
    border-radius: .5em;
    padding: .5em 1em;
    margin: 1em auto;
    display: inline-flex;
    text-decoration: none;
    margin-right: 1em;
    outline: none;
    border: 1px solid var(--sun);
    font-family: Jost, Verdana;
    cursor: pointer;
}

.button:hover {
    background-color: var(--white);
    color: var(--sun);
    border: 1px solid var(--sun);
}

.button--inverse {
    background-color: var(--white);
    color: var(--dark);
    border: 1px solid var(--sun);
}

.button--inverse:hover {
    background-color: var(--sun);
    color: var(--white);
}

.button--sea {
    background-color: var(--sea);
    color: var(--white);
    border: 1px solid var(--sea);
}

.button--sea:hover {
    background-color: var(--white);
    color: var(--sun);
    border: 1px solid var(--sun);
}

.link--inverse {
    color: var(--white);
}

/* structure */

.logo {
    height: 95px;
    width: 95px;
    background: url("/assets/annieson_logo_svg.svg") center / contain no-repeat;
    margin: 0 3em;
    display: inline-block;
    border-radius: 100%;
    z-index: 10;
    position: fixed;
    top: 1px;
}

/* MENU */

.menu {
    width: 100vw;
    display: flex;
    justify-content: end;
    position: fixed;
    top: 3em;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 5;
    height: 3em;
    overflow: hidden;
}

.menu__slogan {
    color: var(--sun);
    position: relative;
    height: 3em;
    display: flex;
    padding: 0 1em;
    align-items: center;
    letter-spacing: 2px;
}

.menu__link {
    color: var(--dark);
    position: relative;
    height: 3em;
    display: flex;
    padding: 0 1em;
    align-items: center;
}

.menu__link:hover, .active {
    background-color: var(--sun);
    color: var(--white);
}

.active:after  {
    content: "";
    background: url('/assets/sun.svg') no-repeat;
    display: block;
    position: absolute;
    left: -3em;
    top: 0;
    width: 30px;
    height: 30px;
}

.menu__logo {
    width: 20vw;
    margin-left: 3.75em;
}



.menu__container {
    display: flex;
    width: 80vw;
    justify-content: space-around;
    align-items: end;
    top: 0;
    z-index: 5;
    font-family: 'Jost', system-ui;
    font-weight: 700;
    margin: auto 10em;
    text-transform: uppercase;
}

/* TOP */
.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 4;
    background: var(--darkblue);
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    height: 3em;
}

.top__sale {
    width: auto;
    color: var(--white);
    text-transform: uppercase;
    padding-left: 12em;
}

.sale__title {
    color: var(--sea);
    font-weight: bold;
}

.sale__content {
    padding-left: 2em;
}

.top__icon {
    width: 25px;
    height: 25px;
    padding-right: .3em;
}

.top__content {
    width: auto;
    display: flex;
    justify-content: end;
    align-items: center;
    margin: .4em 0;
    padding-right: 1em;
    color: var(--white);
}

.top__call {
    padding-right: 1em;
}

.top .button {
    margin-top: unset;
    margin-bottom: unset;
}

@-webkit-keyframes rollOut {
    0% {
       opacity: 0;
    }
    100% {
       opacity: 1;
    }
 }

 @keyframes rollOut {
    0% {
       opacity: 0;
    }
    100% {
       opacity: 1;
    }
 }

 .rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
 }

/* cart */

.snipcart-summary {
    display: flex;
    gap: 1em;
}

.cart {
    position: fixed;
    /* height: 80px; */
    right: 3em;
    top: 4em;
    display: flex;
    z-index: 10;

}

.cart a {
    color: var(--dark);
}

.cart__checkout {
    cursor: pointer;
    position: relative;
    width: 20px;
    height: 20px;
    margin-bottom: 15px;
}

.cart__checkout--count {
    position: absolute;
    border-radius: 100%;
    background-color: var(--sun);
    right: -8px;
    bottom: -4px;
    padding: 2px 6px;
    color: var(--white);
    font-size: 7px;
    height: 2em;
    display: flex;
    align-items: center;
}

.cart__account {
    width: 20px;
    height: 20px;
    display: block;
}

.container {
    position: relative;
    min-height: 100vh;
    background-color: var(--white);
}

/* header */

.header {
    position: relative;
    height: calc(100vh - 1em);
    /* height: auto; */
    /* margin-top: -4em; */
    width: 100vw;
    /* height: 100vh; */
    background: url("/assets/block4.webp") center / cover no-repeat;
}

.header__video {
    margin-left: -2em;
    margin-top: 2em;
    width:105%;
    height: calc(600px - 6em);
    background: var(--sand);
    border: 0;
}

@media only screen and (min-width: 1080px) {
    .header__video {
        height: calc(650px - 6em);
        margin-left: -3.5em;
    }
}
    
@media only screen and (max-width: 960px) {
    .header__video {
        height: calc(500px - 6em);
    }
}

@media only screen and (max-width: 720px) {
    .header__video {
        height: calc(400px - 6em);
    }
}

@media only screen and (max-width: 600px) {
    .header__video {
        display: none;
    }
    .header {
        background: url("/assets/block4.webp") center / cover no-repeat;
    }
}
        
    

@media only screen and (min-width: 1440px) {
    .header__video {
        height: calc(800px - 6em);
    }
    }

.header__text {
    color: var(--white);
    position: absolute;
    left: 3em;
    bottom: 6em;
}

.header__title {
    display: inline-block;
    margin-bottom: 0;
    line-height: 1em;
    max-width: 600px;
}

.header__subtitle {
    margin-top: .25em;
}

.header--small {
    height: 41vh;
    position: relative;
    background: url("/assets/headersmall.webp") top / cover no-repeat;
    margin-top: 6em;
}

.smile {
    font-weight: bold;
    font-size: 1em;
    transform: rotate(90deg);
    display: inline-block;
    color: var(--sun);
}

/* MAIN */

.main {
    display: flex;
    background-color: var(--sand);
    color: var(--dark);
    /* height: 65vh; */
}

.main__container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80vw;
    margin: 6em auto;
    flex-direction: column;
}

.main__col {
    max-width: 15em;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.main__content {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    width: 100%;
    margin-top: 2em;
    text-align: center;
}

.main__content a {
    color: var(--dark);
}

.main__icon {
    fill: var(--white);
    height: 64px;
    padding-top: 1.5em;
    cursor: pointer;
}

/* heart */

@keyframes colorDawn {
    0% {
        fill: var(--dawn);
    }
    16% {
        fill: var(--dawn);
    }
    17% {
        fill: var(--white);
    }
    100% {
        fill: var(--white);
    }
}

.main__container .main__icon--heart {
    animation-duration: 5000ms;
    animation-name: colorDawn;
    animation-iteration-count: infinite;
}

.main__icon--heart:hover * {
    fill: var(--dawn);
}

/* earth */

@keyframes colorDark {
    0% {
        fill: var(--white);
    }
    16% {
        fill: var(--white);
    }
    17% {
        fill: var(--dark);
    }
    33% {
        fill: var(--dark);
    }
    34% {
        fill: var(--white);
    }
    100% {
        fill: var(--white);
    }
}

.main__container .main__icon--earth {
    animation-duration: 5000ms;
    animation-name: colorDark;
    animation-iteration-count: infinite;
}

.main__icon--earth:hover * {
    fill: var(--dark);
}

/* bio */

@keyframes colorSea {
    0% {
        fill: var(--white);
    }
    33% {
        fill: var(--white);
    }
    34% {
        fill: var(--sea);
    }
    50% {
        fill: var(--sea);
    }
    51% {
        fill: var(--white);
    }
    100% {
        fill: var(--white);
    }
}

.main__container .main__icon--bio {
    animation-duration: 5000ms;
    animation-name: colorSea;
    animation-iteration-count: infinite;
}

.main__icon--bio:hover * {
    fill: var(--sea);
}

/* functional */

@keyframes colorSky {
    0% {
        fill: var(--white);
    }
    50% {
        fill: var(--white);
    }
    51% {
        fill: var(--sky);
    }
    66% {
        fill: var(--sky);
    }
    67% {
        fill: var(--white);
    }
    100% {
        fill: var(--white);
    }
}

.main__container .main__icon--functional {
    animation-duration: 5000ms;
    animation-name: colorSky;
    animation-iteration-count: infinite;
}

.main__icon--functional:hover * {
    fill: var(--sky);
}

/* comfy */

@keyframes colorGrey {
    0% {
        fill: var(--white);
    }
    66% {
        fill: var(--white);
    }
    67% {
        fill: var(--grey);
    }
    83% {
        fill: var(--grey);
    }
    84% {
        fill: var(--white);
    }
    100% {
        fill: var(--white);
    }
}

.main__container .main__icon--comfy {
    animation-duration: 5000ms;
    animation-name: colorGrey;
    animation-iteration-count: infinite;
}

.main__icon--comfy:hover * {
    fill: var(--grey);
}

/* shine */

@keyframes colorSun {
    0% {
        fill: var(--white);
    }
    83% {
        fill: var(--white);
    }
    84% {
        fill: var(--sun);
    }
    100% {
        fill: var(--sun);
    }
}

.main__container .main__icon--shine {
    animation-duration: 5000ms;
    animation-name: colorSun;
    animation-iteration-count: infinite;
}

.main__icon--shine:hover * {
    fill: var(--sun);
}

.main__icon--sun {
    height: 5.5em;
}

.quality__container {
    display: flex;
    max-width: 100vw;
}

.quality__image {
    width: 50%;
    height: 80vh;
}

.quality__image--heart {
    background: url("/assets/qualities/eerlijk.webp") center left / cover no-repeat;
}
.quality__image--earth {
    background: url("/assets/qualities/duurzaam.webp") center left / cover no-repeat;
}
.quality__image--bio {
    background: url("/assets/qualities/biologisch.webp") center left / cover no-repeat;
}
.quality__image--functional {
    background: url("/assets/qualities/functioneel.webp") center left / cover no-repeat;
}
.quality__image--comfy {
    background: url("/assets/qualities/comfortabel.webp") center left / cover no-repeat;
}
.quality__image--shine {
    background: url("/assets/qualities/uitstraling.webp") center left / cover no-repeat;
}

.quality__image--functional, .quality__image--earth, .quality__image--shine {
    order: 2;
}

.quality__text {
    width: 40vw;
    margin: auto;
    position: relative;
}

.quality__icon .main__icon {
    height: 2em;
    padding-top: 0;
    position: absolute;
    top: 1.6em;

}

.quality__icon .main__icon:hover {
    cursor: grabbing;
}

.quality__icon .main__icon--heart {
    fill: var(--dawn);
    left: 40%;
}

.quality__icon .main__icon--earth {
    fill: var(--dark);
    left: 40%;
}

.quality__icon .main__icon--functional {
    fill: var(--sky);
    left: 45%
}

.quality__icon .main__icon--bio {
    fill: var(--sea);
    left: 45%;
}

.quality__icon .main__icon--comfy {
    fill: var(--sand);
    left: 50%;
}

.quality__icon .main__icon--comfy:hover *{
    fill: var(--sand);
}

.quality__icon .main__icon--shine {
    fill: var(--sun);
    left: 45%;
}

/* products */

.products {
    margin: 6em auto;
}

.products__content {
    margin: auto;
    text-align: center;
    margin-bottom: 8em;
}

.products__title {
    margin-top: 1em;
    margin-bottom: .3em;
}

.products__link {
    text-decoration: none;
    color: var(--dark);
}

.products__container {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    margin: 2em auto;
    max-width: 90vw;
    gap: 4em 3em;
}

.products__product {
    position: relative;
    min-width: 10vw;
}

.products__image {
    height: 300px;
    width: 220px;
    display: block;
}

.products__ponchos {
    background: url("/assets/ponchos/poncho.webp") center left / cover no-repeat;
}

.products__ponchos:hover {
    background: url("/assets/ponchos/poncho2.webp") center / cover no-repeat;
}

.products__scarfs {
    background: url("/assets/scarfs/scarfs.webp") center left / cover no-repeat;
}

.products__scarfs:hover {
    background: url("/assets/scarfs/scarfs2.webp") center left / cover no-repeat;
}

.products__buckethats {
    background: url("/assets/buckethats/buckethats.webp") center left / cover no-repeat;
}

.products__buckethats:hover {
    background: url("/assets/buckethats/buckethats2.webp") center left / cover no-repeat;
}

.products__kidsponchos {
    background: url("/assets/ponchos/kidsponcho.webp") center / cover no-repeat;
}

.products__kidsponchos:hover {
    background: url("/assets/ponchos/kidsponcho2.webp") center / cover no-repeat;
}

.products__miniponchos {
    background: url("/assets/ponchos/miniponcho.webp") center / cover no-repeat;
}

.products__miniponchos:hover {
    background: url("/assets/ponchos/miniponcho2.webp") center / cover no-repeat;
}

.products__hoodies {
    background: url("/assets/hoodies/hoodie.webp") center / cover no-repeat;
}

.products__hoodies::after, .products__shirts::after {
    content: "-65%";
    border-radius: 100%;
    background: var(--sun);
    color: white;
    font-weight: bold;
    position: absolute;
    right: 20px;
    bottom: 0;
    padding: 2em 1.6em;
    transform: translate(50%, -10%);
    z-index: 3;
    text-align: center;
}

.products__hoodies:hover {
    background: url("/assets/hoodies/hoodie2.webp") center / cover no-repeat;
}

.products__shirts {
    background: url("/assets/shirts/shirt.webp") bottom center / cover no-repeat;
}

.products__shirts:hover {
    background: url("/assets/shirts/shirt2.webp") bottom center / cover no-repeat;
}

.products__giftcards {
    background: url("/assets/giftcard/giftcard.webp") center / cover no-repeat;
}

.products__giftcards:hover {
    background: url("/assets/giftcard/giftcard2.webp") center / cover no-repeat;
}

.products__azworks {
    background: url("/assets/azworks/azworks.webp") center / cover no-repeat;
}

.products__azworks:hover {
    background: url("/assets/azworks/azworks2.webp") center / cover no-repeat;
}

/* BLOCK */

.block {
    background: url("/assets/block2.webp") center / cover no-repeat;
    height: 80vh;
    position: relative;
}

.block__content {
    position: absolute;
    color: var(--dark);
    position: absolute;
    top: 6em;
    left: 0;
    background: var(--white);
    padding: 2em;
}

.block__title {
    margin-bottom: 0;
    color: var(--sun);
}

.block__subtitle {
    margin-top: .2em;
}

/* CHLOTHES */

.chlothes {
    background-color: var(--white);
    height: 70vh;
    display: flex;
    align-items: center;
}

.chlothes__container {
    display: flex;
    flex-direction: column;
    max-width: 50vw;
    margin: 4em;
}

.chlothes__image {
    width: 25vw;
    height: 70vh;    
}

.chlothes__image--hoodie {
    background: url("/assets/shirts/shirt2.webp") center / cover no-repeat;
}

.chlothes__image--shirt {
    background: url("/assets/hoodies/hoodie2.webp") right center / cover no-repeat;
}

/* USE */

.use {
    padding: 0em;
    background-color: var(--white);
}

.use__container {
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin: 0;
    gap: 0 3em;
    align-items: center;
}

.use__content {
    max-width: 30vw;
    padding-left: 2em;
}

.use__words {
    color: var(--dark);
    font-weight: bold;
    width: 40vw;
}

.use__words--spacearound {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1em;
}

.use__words--spacebetween {
    display: flex;
    justify-content: space-between;
    /* margin-bottom: 1em; */
}

.use__grid {
    display: flex;
    gap: 0;
    flex-flow: wrap-reverse;
    justify-content: end;
}

.use__grid--left {
    display: flex;
    gap: 0;
    flex-flow: wrap-reverse;
    justify-content: start;
}

.use__image {
    max-width: 146px;
    filter: opacity(80%) brightness(110%);
}

.use__image:hover {
    filter: brightness(110%);
    cursor: pointer;
}

/* MAIN */

.ponchos {
    display: flex;
    padding: 4em 2em;
    flex-direction: column;
}

.ponchos__container {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    margin: 2em auto;
    max-width: 70vw;
    gap: 6em;
}

.ponchos__title {
    margin-bottom: 0;
}

.ponchos__product {
    min-width: 10vw;
}

/* PRODUCT */

.stripet {
    text-decoration: line-through;
}

/* PRODUCT INTRO */
.intro {
    background-color: var(--sky);
    color: var(--white);
    font-size: 14px;
}

.intro__container {
    display: flex;
    /* margin: 0 auto; */
    /* max-width: 80vw; */
    align-items: center;
    height: auto;
}

.intro__table {
    text-align: left;
    color: inherit;
    font-size: inherit;
}

.intro__grid {
    display: flex;
    flex-wrap: wrap;
    column-gap: 6em;
}

.intro__grid > div {
    width: 40%;
}

.intro__table th {
    padding-right: 1em;
}

.intro__table td {
    padding-right: 2em;
}

.intro__sun {
    position: relative;
    width: 500px;
    height: auto;
}

.intro__sun::after {
    content: " ";
    white-space: pre;
    width: 200px;
    padding-bottom: 2em;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    color: var(--sun);
    position: absolute;
    left: 30px;
    bottom: -14px;
    font-size: 1.2em;
    font-weight: bold;
    background: url("/assets/sun_white.svg") center / cover no-repeat;
}

.intro__content {
    margin: 2em 0 4em 8em;
}

.intro__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* REVIEWS */

.branding {
    opacity: 0!important;
}

.grw-net-text {
    display: none!important;
}

.grw-net-widget {
    margin: 0 -7px auto!important;
}

.grw-net-widget-one-type-2 {
    min-width: 152px!important;
}

.reviews {
    background-color: var(--sea);
    color: var(--white);
    display: flex;
}

.reviews__content {
    margin: auto;
}

.reviews__container {
    display: flex;
    justify-content: space-around;
    margin: 3em auto;
    column-gap: 4em;
    width: 80vw;
}

/* SOCIAL */

.social__container {
    max-width: 60vw;
    max-height: 60vh;
    margin: 4em auto;
    overflow: scroll;
}

header{
    display: none!important;
}
/* LABEL */

.label__container {
    display: flex;
    margin: auto;
    text-align: justify;
}

.label__content {
    width: 35vw;
    margin: 4em 0 10em 4em;
    background: var(--white);
    padding: 2em;
    border: 1px solid var(--dark);
}

.label__image {
    background: url("/assets/label.webp") center / cover no-repeat;
    width: 30vw;
    height: 600px;
}

/* CLOSER */
.closer {
    height: auto;
    background: url("/assets/closer.webp") bottom / cover no-repeat;
    position: relative;
}

.closer__copy {
    color: var(--black);
    position: absolute;
    left: 2em;
    bottom: 2em;
    text-align: left;
    font-size: .875em;
    text-decoration: none;
}

.footer {
    height: auto;
    border-top: 1px solid var(--dark);
    position: relative;
    /* bottom: -16em;  */
    left: 0;
    right: 0;
    background: var(--darkblue);
}

.footer__container {
    width: 70vw;
    margin: 0 auto;
    padding: 1em;
    display: flex;
    justify-content: space-evenly;
}

.logo--footer {
    margin: 2em 0 0 0;
    /* width: 95px;
    height: 95px; */
    position: relative;
}

.footer__content {
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.footer a {
    color: var(--white);
    text-decoration: none;
}

.footer img {
    width: 25px;
    height: 25px;
}

.footer__social {
    padding-right: .2em;
}

.footer__social--icons {
    display: inline;
}

/* poncho items */

.options {
    height: 15px;
    width: 15px;
    border-radius: 100%;
    margin: 5px 5px 0 0;
    border: 1px solid var(--white);
    display: inline-block;
}

.options__container {
    /* display: flex; */
    justify-content: center;
    align-items: center;
    margin-bottom: 2em;
}

.options--hood {
    margin-right: 1em;
    font-size: 11px;
    color: var(--dark);
    display: block;
}

.options--pink {
    background-color: #ffd4d4;
}

.options--navy {
    background-color: #43688d;
}

.options--white {
    background-color: var(--white);
    border: 1px solid var(--grey);
}

.options--sky {
    background-color: var(--sky);
}

.options--lilac {
    background-color: #cebcdb;
}

.options--beige {
    background-color: #ebd1b1;
}

.options--turquoise {
    background-color: #bbcbca;
}

.options--terra {
    background-color: #cc4d1b;
}

.options--yellow {
    background-color: #ebae08;
}

.options--sea {
    background-color: var(--sea);
}

.options--grey {
    background-color: var(--grey);
}

.options--olive {
    background-color: #bbc3b6;
}

.options--black {
    background-color: var(--dark);
}

.items {
    text-align: center;
}

.items__container {
    width: 80vw;
    margin: 2em auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; 
    gap: 2em 3em;
}

.ponchositems--soldout {
    background-color: var(--sand);
    padding: 10em;
   justify-content: center;
   margin: 0;
    gap: 1em;
}

.ponchositems--soldout .items__item {
   max-width: 80px;
}

.ponchositems--soldout .items__text, .ponchositems--soldout h3 {
    display: none;
}

.ponchositems--soldout .options__container{
    display: none;
}

.ponchositems--soldout h2 {
    width: 100vw;
}

.items__title {
    margin-bottom: 0.2em;
    text-transform: capitalize;
}

.items__text {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0,-50%);
    height: 30px;
    text-align: center;
    background: var(--white);
    text-transform: uppercase;
}

.items__hovertext {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    visibility: hidden;
    text-align: center;
    opacity: 0;
    transition: opacity .2s, visibility .2s;
}

.items__item {
    max-width: 200px;
    display: block;
}

.items__link {
    cursor: pointer;
}

.items__content {
    width: 80vw;
    text-align: left;
    margin: 4em auto;
}

.items__menu {
    display: flex;
    width: 80vw;
    margin: 1em auto;
}

.menu__item {
    cursor: pointer;
    background: var(--darkblue);
    color: var(--white);
    padding: .5em 1em;
}

.menu__item:hover {
    background: var(--sun);
}

.menu__item--active {
    background: var(--sun);
}

.items__wrap {
    position: relative;
    height: 100%;
    width: 100%;
}

.items__image, .item__image {
    width: 100%;
    position: relative;
}

.items a, .item a {
    text-decoration: none;
}

.track__container {
    max-width: 60vw;
    margin: auto;
}

.track {
    color: var(--sun);
}

.track a {
    color: var(--sun);
}

.track a:last-child, .track:last-child {
    color: var(--sea);
}

/* ITEM */
.item {
    padding: 1em 0 0 0;
}

.item--close {
    background-color: var(--sky);
    color: var(--white);
    height: 100%;
    margin: 0;
}

.item--close h2 {
    margin: 0;
    display: inline;
    font-size: 1.2em;
}

.close__content {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--white);
    text-decoration: none;
    padding-left: 1em;
    text-align: left;
}

.close__content span {
    font-size: 14px;
} 

.close__details {
    padding-top: 1em;
}

.close__content .item__options {
    padding-top: 1em;
}

.close__price {
    margin: 0.2em 0 0.2em 2em;
    color: var(--sand);
    font-size: 1em;
    display: inline;
}

.shop__img {
    cursor: pointer;
    width: 35px;
    height: 60px;
    display: inline;
    outline: none;
    border: none;
    background: url("/assets/shop.svg") center / contain no-repeat;
}

.shop__img:hover {
    background: url("/assets/shop--sea.svg") center / contain no-repeat;
}

.close__buttons {
    display: flex;
}

.item--more__container {
    width: 80vw;
    margin: 4em auto 6em;
    display: grid;
    column-gap: 1em ;
    grid-template-columns: repeat(4, 1fr);
}

.item--more {
    row-gap: 1em;
}

/* SHOP */

.popup {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: var(--dark);
    opacity: .6;
}

.mailsent {
    background:var(--sea);
    color: var(--white);
    padding: 2em;
}

.shop {
    z-index: 3;
    display: none;
    width: auto;
    height: auto;
    background-color: var(--sun);
    color: var(--white);
    border: 3px solid var(--white);
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.shop__content {
    margin: 1em;
}

.shop__close {
    position: absolute;
    cursor: pointer;
    right: 2px;
    top: 2px;
    width: 35px;
    height: 35px;
    background: url("/assets/close.svg") center / contain no-repeat;
}

.shop__close:hover {
    background: url("/assets/close--sea.svg") center / contain no-repeat;
}

.form__field, .form__textarea{
    font-family: "Hello Annie", Verdana;
    margin: 1em 0;
    height: 35px;
    border: 1px solid var(--sea);
    border-radius: 4px;
    padding: 0 1em;
    color: var(--sea);
}

.form__field--xl {
    width: 99%;
}

.form__field--l {
    width: 74%;
}

.form__field--m {
    width: 49%;
}

.form__field--s {
    width: 24%;
}

.form__textarea {
    height: 6em;
    padding-top: 1em;
    width: 99%;
}

.form__select {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.form__label {
    width: 20%;
}

.form__submit {
    display: block;
    font-size: 1em;
    font-family: "Hello Annie", Verdana;
}

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

    html, body {
        font-size: 14px;
    }

    .top .logo {
        display: none;
    }

    .menu-logo {
        margin-top: 3em;
        display: block;
        position: absolute;
        z-index: 1;
    }

    .menu__container {
        width: 100vw;
        margin: auto 10em 0 0;
    }
        
    .top__sale {
        width: 48vw;
    }
        
    .top__content {
        width: 60vw;
    }

    .top .button {
        margin-top: unset;
    }

    .top__button--about {
        display: none;
    }

    .top__call {
        display: none;
    }
    
    .header__text {
        display: none;
    }

    h1 {
        font-size: 1.2em;
    }

    h2 {
        font-size: 1em;
    }

    h3 {
        font-size: 1em;
    }

    .use {
        padding: 2em 0 1em 0;
    }

    .use__container {
        flex-direction: column;
    }

    .use__content {
        max-width: 60vw;
        padding: 2em;
        order: 1;
    }

    .use__words {
        width: 85vw;
        padding: 2em;
        margin: auto;
    }

    .use__grid {
        order: 2;
        max-width: unset;
    }

    .use__image {
        max-width: 100px;
    }

    .intro__container {
        max-width: none;
        grid-template-columns: 1fr;
    }

    .main h2 {
        text-align: center;
    }

    .main__container {
        width: 90vw;
    }

    .main__content {
        font-size: 14px;
    }

    .quality__text {
        width: 40vw;
    }

    .quality__icon .main__icon {
        left: unset;
        right: 30%;
    }
    
    .intro__image {
        justify-self: center;
        order: 2;
        height: 100vh;
    }
    
    .intro__image::after {
        left: -50px;
    }

    .intro__container {
        flex-direction: column;
        height: auto;
    }

    .intro__list {
        grid-template-columns: 1fr;
    }

    .items__text {
        top: 40%;
    }

    .intro__container {
        grid-template-columns: 1fr;
    }
    
    .intro__content { 
        width: 80vw;
        margin: 2em auto;
    }

    .intro__image, .hoodies-intro__image {
        width: 100vw;
    }

    .intro__image::after {
        left: -1.4em;
    }

    .intro__grid {
        grid-template-columns: 1fr;
        row-gap: 2em;
    }

    .items__container {
        grid-template-columns: repeat(4, 1fr);
        gap: 1em;
    }

    .items__item {
        max-width: 150px;
    }

    .item--more__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .products__container,.products__content {
        max-width: 100vw;
    }

    .label__content {
        width: 50vw;
    }

    .shop {
        width: 80vw;
    }

    .close__img, .shop__img {
        width: 25px;
        height: 25px;
    }

    .footer__container {
        width: 70vw;
    }

}

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

    
    html, body {
        font-size: unset;
    }

    .menu {
        top:0;
        width: auto;
    }

    .menu__container {
        display: none;
        flex-direction: column;
        margin: auto;
        align-items: end;
        background-color: rgba(255, 255, 255, 0.8);
        width: 40vw;
        top: 3em;
        position: fixed;
        right: 0;
    }
    
    .menu__hamburger {
        cursor: pointer;
        right: 1em;
        top: 0.6em;
        position: fixed;
    }

    .menu__hamburger span::after {
        content: "";
        width: 2em;
        height: 3.2px;
        background-color: var(--darkblue);
        display: block;
        margin-top: 7px;
        border-radius: 5px;
        position: relative;
    }

    .menu__hamburger span:first-child::after {
        margin-top: 0;
    }

    .menu__link:hover {
        width: 35vw;
        justify-content: end;
    }

    .menu__circle {
        content: "";
        width: 2em;
        height: 2em;
        background-color: var(--sun);
        display: block;
        border-radius: 100%;
        position: fixed;
        display: none;
        cursor: pointer;
        right: 1em;
        top: 0.5em;
        position: fixed;        
    }

    .fastpage__container {
        flex-direction: column;
        width: 100vw;
    }
    
    .fastpage__content {
        width: 80vw;
        margin: 2em 8em;
    }
    
    .fastpage__image {
        width: 100vw;
        order: 2;
    }
    
    .top {
        display: none;
    }
    
    .cart {
        left: 1em;
        right: unset;
        top: .9em;
    }

    .green {
        margin-top: -1.5em
    }

    h1 {
        font-size: 1.2em;
    }

    h2 {
        font-size: 1.2em;
    }
    
    .use__content {
        max-width: unset;
        padding: 2em;
        order: 1;
    }

    .header {
        height: 80vh;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        margin-top: 3em;
        background-position: 80%;
        background-position: center;
    }

    .header--small {
        margin-top: 3em;
    }

    .menu-logo {
        display: none;
    }

    .logo {
        margin: 3em 1em;
        z-index: 2;
        position: absolute;
    }

    .intro__list ul {
        margin: 0;
    }

    .main {
        height: auto;
    }

    .main__content, .ponchos-intro__content {
        max-width: 90vw;
        padding-bottom: 3em;
    }

    .main__container {
        width: 90vw;
        margin-top: 2em
    }
    
    .main__content {
        flex-direction: column;
    }

    .main__col {
        max-width: unset;
        width: 100%;
    }

    .quality__container {
        flex-direction: column;
    }

    .quality__image {
        width: 100vw;
        background-position: center;
    }

    .quality__image--earth, .quality__image--functional, .quality__image--shine {
        order: 1;
    }
    .quality__text--earth, .quality__text--functional, .quality__text--shine {
        order: 2;
    }

    .quality__text {
        width: 80vw;
        margin: 2em auto;
    }

    .products {
        padding: 0;
    }

    .products__content, .products__container {
        max-width: 100vw;
    }

    .products__content {
        margin-bottom: 2em;
    }

    .products__image {
        height: 320px;
        width: 250px;
    }

    .ponchositems--soldout {
        padding: 0;
    }

    .ponchositems--soldout h2 {
        margin-left: 1em;
    }

    .close__buttons .button {
        font-size: 14px;
        margin: 0 .5em 0 0;
    }

    .block {
        background-position: 75%;
    }

    .block__content {
        bottom: 8em;
        padding: 1em;
        left: 3em;
        background: var(--white);
        top: unset;
    }

    .reviews {
        flex-direction: column;
    }

    .reviews__content {
        margin: 2em auto 1em;
    }

    .reviews__container {
        margin: 1em auto 3em;
        flex-direction: column;
        width: 90vw;
    }

    .chlothes {
        height: auto;
        flex-direction: column;
    }

    .chlothes__container {
        margin: 4em auto;
        max-width: 80vw;
        margin: 2em auto;
        order: 1;
    }

    .chlothes__image {
        width: 100vw;
        height: 30vh;
        order: 2;
    }

    .ponchos {
        padding: 2em;
    }
    
    .ponchos__container {
        max-width: unset;
        gap: 2em 4em;
    }

    .shop {
        width: 90vw;
    }

    
    .options--hood {
        display: none;
    }

    .footer__container {
        width: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2em;
    }

    .logo--footer {
        margin: 2em 0 0 0;
    }

    .items__container {
        grid-template-columns: repeat(2, 1fr);
        margin: 0;
        width: 100vw;
    }
    
    .item__container, .item--more__container {
        grid-template-columns: 1fr;
        width: 90vw;
    }

    .item__options {
        font-size: .875em;
    }

    
    .items__item {
        max-width: 170px;
    }
    
    .intro__grid > div {
        width: unset;
    }

    .label__content {
        width: 100vw;
        margin: 4em 0 10em 4em;
        padding: .5em 2em 1em 2em;
    }

}

@media only screen and (min-width: 1440px) {

    .products__image {
        height: 350;
        width: 280px;
    }

    .products__container {
        gap: 4em;
        max-width: 80vw;
    }
    
    .quality__text {
        width: 30vw;
    }
}