/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 06-mars-2019, 17:51:34
    Author     : yvesc
*/

.tiny-icon {
    width: 24px ;
}


.material-icons {
    font-size:50px; 
    color: #F6F2EA;
    background: #8d713c;

}

.btn-commande {
    color: #fff;
    background-color: #8d713c;
    border-color: #8d713c;
    cursor: pointer;
}

.form-control {
    cursor: pointer;
}

input:valid {
    border: 1px solid grey;
}

input:invalid {
    border: 2px solid #fdd49a;
}

.sky-variant {
    background: #BBDEFB;
    animation: sky 10s infinite ease-in;
}

@-webkit-keyframes sky {
    0% {background: #BBDEFB; color:orange;}
    17.5% {background: #07202C; color:yellow;}
    25% {background: #07202C; color:white;}
    50% {background: #BBDEFB;color:red;}
    67.5% {background: #07202C;color:white;}
    75% {background: #07202C;color:yellow;}
    100% {background: #BBDEFB;color:orange;}
}


.flashblue {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    color: #03e9f4;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    margin-top: 40px;
    letter-spacing: 4px
}

.flashblue:hover {
    background: #03e9f4;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px #03e9f4,
        0 0 25px #03e9f4,
        0 0 50px #03e9f4,
        0 0 100px #03e9f4;
}

.flashbrown {
    position: relative;
    display: inline-block;
    padding: 2px 2px;
    color: #ffffff;
    background: #8d713c;
    font-size: 10px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    margin-top: 20px;
    letter-spacing: 4px
}

.flashbrown:hover {
    background: #E0B64C;
    color: #444444;
    border-radius: 15px;
    box-shadow: 0 0 5px #E0B64C,
        0 0 25px #E0B64C,
        0 0 50px #E0B64C,
        0 0 100px #E0B64C;
    cursor: pointer;
}

.bigyco{
    background: #8d713c;
    height: 100%;
    margin-top: 0px;
}

.ftco-footer{
    z-index: 2;
}

.hide {
    visibility: hidden;
    display:none;
}

@media only screen and (min-width: 799px) {
    #datepi {
        margin-top: 250px;
    }

}
@media only screen and (min-width: 320px) and (max-width: 800px) {
#datepi {
    margin-top: -100px;
    padding-top: 0px;
}

}



/* scrolling down */

* {
    box-sizing: border-box;
}


.containerdown {
    width: 100%;
    height: 100vh;
    background-color: #c9d6df;
    display: flex;
    align-items: center;
    justify-content: center;
}

.field {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 300px;
}

.mouse {
    width: 50px;
    height: 90px;
    border: 3px solid #333;
    border-radius: 60px;
    position: relative;
    &::before {
        content: '';
        width: 12px;
        height: 12px;
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #333;
        border-radius: 50%;
        opacity: 1;
        animation: wheel 2s infinite;
        -webkit-animation: wheel 2s infinite;
    }
}

@keyframes wheel {
    to {
        opacity: 0;
        top: 60px;
    }
}

@-webkit-keyframes wheel {
    to {
        opacity: 0;
        top: 60px;
    }
}

.scrolly {
    width: 60px;
    height: 60px;
    border: 2px solid #333;
    border-radius: 50%;
    position: fixed;
    left: 90%;
    top: 85%;
    z-index: 1;
    animation: down 1.5s infinite;
    -webkit-animation: down 1.5s infinite;
    &::before {
        content: '';
        position: absolute;
        top: 15px;
        left: 18px;
        width: 18px;
        height: 18px;
        border-left: 2px solid #333;
        border-bottom: 2px solid #333;
        transform: rotate(-45deg);
    }
}

.scrolly img {
    margin-left:22%;
    margin-top: 20%;
}

@keyframes down {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translateY(15px);
    }
    40% {
        transform: translate(0);
    }
}

@-webkit-keyframes down {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translateY(15px);
    }
    40% {
        transform: translate(0);
    }
}

.arrow {
    width: 0;
    height: 40px;
    border: 1px solid #333;
    position: relative;
    animation: scroll 1.5s infinite;
    -webkit-animation: scroll 1.5s infinite;
    &::after {
        content: '';
        display: block;
        position: absolute;
        top: 100%;
        left: -5px;
        width: 1px;
        height: 10px;
        border-top: 10px solid #333;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
    }
}

@keyframes scroll {
    0% {
        height: 40px;
    }
    30% {
        height: 70px;
    }
    60% {
        height: 40px;
    }
}

@-webkit-keyframes scroll {
    0% {
        height: 40px;
    }
    30% {
        height: 70px;
    }
    60% {
        height: 40px;
    }
}

.spacer {
    margin-top: 200px !important;
}