html,
body {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
    color: #384C5E;
}
:root {
    --bluemain: #2CABE2;
    --darkblue: #061A33;
    --bluedark: #59768B;
    --mainblack: #1D1D1B;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img{
    max-width: 100%;
}
.main__site {
    margin-top: 104px;
}
.btn__site {
    padding: 0.75rem 2.5rem;
    border-radius: 0 1rem 0 1rem;
    font-size: 1.125rem;
    text-transform: uppercase;  
    font-weight: 600;
    -webkit-transition: all linear 0.25s;
    -o-transition: all linear 0.25s;
    transition: all linear 0.25s;
    -webkit-box-shadow: none;
            box-shadow: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}
.btn__site.btn__small {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    text-transform: none;
    font-weight: 400;
}
.btn__site.btn__filled {
    background-color: #2CABE2;
    color: #fff;
    border-color: #2CABE2;
} 
.btn__site.btn__filled:hover {
    background-color: #384C5E;
    border-color: #384C5E;
}
.btn__site.btn__dark {
    background-color: #384C5E;
    color: #fff;
    border-color: #384C5E;
     border-radius: 0 0 4px 4px;
} 
.btn__site.btn__dark:hover {
    background-color: #384C5E;
    border-color: #384C5E;
    color: var(--bluemain);
}
.btn__site.btn__dark:hover svg path {
    stroke: var(--bluemain);
}

.btn__site.btn__linear {
    color: #fff;
    border: 1px solid #fff;
    background-color: transparent;
}

.btn__site.btn__linear:hover {
    background-color: #2CABE2;
    color: #fff;
    border-color: #2CABE2;
}
.btn__site.btn__linear__blue {
    color: #0479AF;
    border: 1px solid #0479AF;
    background-color: transparent;
}

.btn__site.btn__linear__blue:hover {
    background-color: #2CABE2;
    color: #fff;
    border-color: #2CABE2;
}

.btn__site.btn__linear__bluenormal {
    color: #2CABE2;
    border: 1px solid #2CABE2;
    background-color: transparent;
}

.btn__site.btn__linear__bluenormal:hover {
    background-color: #2CABE2;
    color: #fff;
    border-color: #2CABE2;
}


.btn__site.btn__full {
    width: 100%;
}

.logo__raincolecta{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: -webkit-transform 400ms;
    transition: -webkit-transform 400ms;
    -o-transition: transform 400ms;
    transition: transform 400ms;
    transition: transform 400ms, -webkit-transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hamRotate.active {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hamRotate180.active {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.line {
    fill: none;
    -webkit-transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    -o-transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #2CABE2;
    stroke-width: 5.5;
    stroke-linecap: round;
}

.ham1 .top {
    stroke-dasharray: 40 139;
}

.ham1 .bottom {
    stroke-dasharray: 40 180;
}

.ham1.active .top {
    stroke-dashoffset: -98px;
}

.ham1.active .bottom {
    stroke-dashoffset: -138px;
}

.header{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10;
    background-color: #fff;
}
.inner__header {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 1rem;
    padding-bottom: 1rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.inner__header .right__menu{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.inner__header .right__menu nav ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;

            align-items: center;
}
.right__menu ul {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
.right__menu ul li a {
    text-transform: uppercase;
    text-decoration: none;
    padding-left: 1.25rem;
    padding-right: 1.5rem;
    color:#061A33;
    font-weight: 600;
    font-size: 1rem;
}
.right__menu ul li a:hover {
    color: #384C5E;
    background-repeat: no-repeat;
    background-position: 0 center;
    background-size: 10px auto;
    background-image: url('../img/icons/icon__dropblue.svg');
}

.toggle__menu{
    display: none;
    
}
.toggle__menu svg {
    width: 40px;
    height: 40px;
}
.options__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 1rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.options__menu button{
    border: none;
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
}

.divider__vertical {
    height: 30px;
    width: 0;
    border-right: 1px solid #000;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.footer{
    background-color: #384C5E;
    color: #fff;
    padding-top: 4rem;
    padding-bottom: 2rem;
}
.footer a{
    text-decoration: none;
    color: #fff;
}
.inner__footer{
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer .block__newsletter {
    border-radius: 1rem;
    background-color: #fff;
    padding: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.footer .block__newsletter .title__newsletter {
    font-size: 2.5rem;
    color: #2CABE2;
    font-weight: 700;
    max-width: 410px;
}
.footer .block__newsletter form {
    width: 100%;
    max-width: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.footer .block__newsletter .form-floating{
    width: 100%;
    max-width: 420px;
}
.footer .block__newsletter .form-floating input {
    color: #384C5E;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #384C5E;
    border-radius: 0;
    
}
.footer .block__newsletter .form-floating input.is__invalid {
    border-color: #BB052E;
}

.footer .block__newsletter .form-floating label {
    color: #384C5E ;
    font-weight: 600;
}

.footer .block__newsletter form .send__newsletter{
    padding-left: 3rem;
    padding-right: 3rem;
}
.footer .block__newsletter .legend__recaptcha{
    text-align: center;
    width: 100%;
    color: #7A7B7D;
    font-weight: 400;
    font-size: 0.875rem;
    margin-bottom: 0;
    margin-top: 1.5rem;
}
.footer .block__newsletter .legend__recaptcha a{
    color: #7A7B7D;
}

.footer .block__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.footer .block__navigation ul{
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
}
.footer .block__navigation ul a{
    margin-right: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    -webkit-transition: all linear 0.25s;
    -o-transition: all linear 0.25s;
    transition: all linear 0.25s;
    padding-left: 1rem;
}
.footer .block__navigation ul.navigation__footer a:hover {
    color: #2CABE2;
    background-image: url('../img/icons/icon__drop__blue.svg');
    background-repeat: no-repeat;
    background-position: 0 center;
    background-size: 10px;
    
}
.footer .block__navigation ul li:last-of-type a{
    margin-right: 0;
}

.footer .block__copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.footer .block__copyright ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin-bottom: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.footer .block__copyright ul,
.footer .block__copyright p:first-of-type {
    width: 33.3333%;
}
.footer .block__copyright ul a {
    margin-left: 1rem;
}

.inner__site{
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.modal-header{
    border-bottom: none;
}


.rounded__left__image{
    border-radius: 0 80px 0 80px;
}

.rounded__right__image{
    border-radius: 80px 0 80px 0;
}

.cart__indicator  {
    position: relative;
}
.cart__indicator span{
    width: 16px;
    height: 16px;
    border-radius: 50%;
    color: #fff;
    background-color: #BB052E;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 0.675rem;
    font-weight: 600;
    position: absolute;
    top: -0.5rem;
    right: -0.25rem;
}
.cart__indicator span:empty {
    display: none;
}

.block__not__found{
    position: relative;
}

.content__not__found{
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2 ;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    height: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.not__found__number {
    font-size: 10rem;
    font-weight: 700;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #fff;
    color: transparent;
}
.not__found__title{
    font-size: 1.5rem;
    font-weight: 700;
}
.not__found__desc {
    font-size: 1.25rem;
}

.hero__video{
    height: calc(100vh - 104px);
    position: relative;
    width: 100%;
    z-index: 1;
    min-height: 600px;
}

.header__social {
    display: none;
}

.addcart__list:disabled{
    pointer-events: none;
    opacity: 0.5;
}

#user-login-form{
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10rem;
    margin-bottom: 3rem;
}
#user-login-form .form-submit{
    margin-top: 1.5rem
}

#user-login-form .js-form-item{
    margin-top: 1.5rem
}
#user-login-form .form-text {
    height: 40px;
    width: 100%;
    padding-left: 0.25rem;  
}
.message__newsletter{
    color: #BB052E;
    font-size: 0.875rem;
    font-weight: 600;
}
.message__newsletter:empty {
    display: none;
}


@media screen and (max-width: 1200px) {
    .right__menu ul li a{
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .logo__raincolecta img{
        max-height: 60px;
    }
}

@media screen and (max-width: 1024px) {
    .inner__header {
        padding-right: 1rem;
    }
    .inner__header .right__menu nav{
        opacity: 0;
        visibility: hidden;
        z-index: -100;
    }
    .inner__header .selector__lang,
    .inner__header .divider__vertical {
        display: none;
    }
    .inner__header .toggle__menu {
        display: block;
    }
    .inner__header .right__menu .navigation__menu {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(100vh - 74px);
        top: 74px;
        -webkit-transition: all linear 0.25s;
        -o-transition: all linear 0.25s;
        transition: all linear 0.25s;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        background-color: #fff;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;

    }
    .inner__header .right__menu .navigation__menu.open {
        opacity: 1;
        visibility: visible;
        z-index: 1;
    }
    .inner__header .right__menu nav ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-top: 2rem;
        padding-bottom: 2rem;
        height: 100%;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .right__menu ul li{
        width: 100%;
    }
    .right__menu ul li a {
        padding-top: 1rem;
        padding-bottom: 1rem;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        padding-left: 2rem;
        width: 100%;
        max-width: 70%;
        background-image: url('../img/icons/icon__dropblack.svg');
        background-repeat: no-repeat;
        background-position: 100% center;
        background-size: 16px auto;
        font-size: 1.25rem;
    }
    .right__menu ul li a:active {
        color: var(--darkblue);
        background-image: url('../img/icons/icon__dropblue.svg');
    }

    .footer .block__newsletter .title__newsletter {
        font-size: 1.75rem;
    }
    .footer .block__newsletter {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .footer .block__newsletter form{
        max-width: 70%;
    }
    .footer .block__copyright{
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    
    .footer .block__copyright p{
        margin-bottom: 0;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
                margin-top: 2rem;
                padding-top: 2rem;
                border-top: 2px solid rgba(255,255,255,0.2);
    }
    .footer .block__copyright ul{
        margin-top: 2rem;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }
    .footer .block__copyright ul, .footer .block__copyright p:first-of-type {
        width: 100%;
    }
    .main__site {
        margin-top: 92px;
    }
    
    .header__social{
        display: block;
        width: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
        padding-bottom: 1rem;
    }
    .header__social a{
        margin-right: 0.5rem;
        text-decoration: none;
        margin-bottom: 0.5rem;
        display: inline-block;
    }
    .header__social p{
        font-size: 0.75rem;
        color: #061A33;
    }
    .right__menu ul li a:active,
    .right__menu ul li a:hover {
        background-position: 100% center;
        background-size: 16px auto;
        color: #2CABE2;
        background-image: url('../img/icons/icon__drop__blue.svg');
    }
}
@media screen and (max-width: 960px) {
    .footer .block__newsletter form{
        max-width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .inner__header .right__menu .navigation__menu{
        overflow-y: auto;
    }
    .inner__header .right__menu nav ul{
        height: auto;
    }
    .footer .block__newsletter form{
        max-width: 100%;
    }

    .footer .block__navigation{
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
    
    .footer .block__navigation ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .footer .block__navigation ul.social__list {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
    .footer .block__navigation ul.navigation__footer a{
        line-height: 2em;
        margin-bottom: 1rem;
        display: inline-block;
    }
}
@media screen and (max-width: 640px) {
    .footer .block__newsletter .form-floating{
        margin-bottom: 2rem;
    }
    .footer .block__newsletter form{
        max-width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .footer .block__newsletter .btn__site{
        width: 100%;
    }
    .footer .block__newsletter .form-floating input{
        padding-left: 0;
    }
    .footer .block__newsletter .form-floating label{
        padding-left: 0;
    }
    
    .footer .block__copyright ul{
        padding-left: 0;
        margin-bottom: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .footer .block__copyright p{
        text-align: center;
    }
    .btn__site{
        font-size: 1rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .main__site {
        margin-top: 74px;
    }

    .not__found__number{
        font-size: 8rem;
    }
    .btn__site.btn__fullmob {
        width: 100%;
    }
    .footer .block__copyright ul a{
        margin-bottom: 1rem;
        display: inline-block;
        text-align: center;
        width: 100%;
    }

    .logo__raincolecta img{
        max-height: 42px;
    }
    
}