/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Shantell+Sans:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/*
font-family: 'El Messiri', sans-serif;

 */
/*=============== VARIABLES CSS ===============*/
:root {

    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    /*
          Purple: hsl(250, 66%, 75%)
          Blue: hsl(207, 90%, 72%)
          Pink: hsl(356, 66%, 75%)
          Teal: hsl(174, 63%, 62%)
    */
    --first-color: #a37b72;
    /*-- --first-color: #C7A097; */
    --second-color: #CFABA3;
    --title-color: #332a4f;
    --nav-color: var(--first-color);
    --text-color: rgba(24, 24, 24, 0.639);

    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --title-font: "Amatic SC", sans-serif;
    --body-font: 'Shantell Sans', sans-serif;
    --biggest-font-size: 1.75rem;
    --h1-font-size: 4rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: 1rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    --tiny-font-size: .625rem;

    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semibold: 600;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;

    --viewport-height: 100vh;
    --background-height: 100vh;

    /*========== Send Email ==========*/
    --button-width: 150px;
    --spinner-button-width: calc(var(--button-width) / 6);
}

html {
    scroll-behavior: smooth;
    transition: .5s opacity;
}

html, body {
    min-height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    height: 100%;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    color: var(--text-color);
    position: relative;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--title-font), cursive;
    width: 100%;
    margin: 0;
}

h1 {
    font-size: var(--h1-font-size);
}

h2 {
    font-size: var(--h2-font-size);
}

h3 {
    font-size: var(--h3-font-size);
}

p {
    color: rgba(24, 24, 24, 0.639);
    font-family: var(--body-font);
    font-size: 1em;
    line-height: 2;
    font-weight: 300;
    text-transform: uppercase;
    width: 100%;
}

section {
    width: 100%;
    min-height: 100vh; /** older browsers **/
    min-height: -webkit-calc(100vh - 50px); /** Safari 6, Chrome 19-25 **/
    min-height: -moz-calc(100vh - 50px); /** FF 4-15  **/
    min-height: calc(100vh - 50px); /** FF 16+, IE 9+, Opera 15, Chrome 26+, Safari 7 and future other browsers **/
    padding-top: 50px;

    display: flex;
    background-color: transparent;
    column-gap: 5rem;
    border-bottom: 1px solid #EDE4E4;
    align-items: center;
    vertical-align: middle;
    justify-content: center;

    border-bottom: 1px solid #EDE4E4;
}

section:first-of-type {
    min-height: 100vh; /** older browsers **/
    min-height: -webkit-calc(100vh - 100px); /** Safari 6, Chrome 19-25 **/
    min-height: -moz-calc(100vh - 100px); /** FF 4-15  **/
    min-height: calc(100vh - 100px); /** FF 16+, IE 9+, Opera 15, Chrome 26+, Safari 7 and future other browsers **/
    padding-top: 0;
}

section:last-of-type {
    min-height: 100vh; /** older browsers **/
    min-height: -webkit-calc(100vh - 90px); /** Safari 6, Chrome 19-25 **/
    min-height: -moz-calc(100vh - 90px); /** FF 4-15  **/
    min-height: calc(100vh - 90px); /** FF 16+, IE 9+, Opera 15, Chrome 26+, Safari 7 and future other browsers **/
    border-bottom: none;
}

img {
    max-width: 500px;
    width: 50%;
    border-radius: 50%;
    vertical-align: middle;
    border: 2px solid var(--first-color);
    display: block;
    margin: 0 auto;

}

main {
    position: relative;
    z-index: 1;
    /*
    background-color: rgba(255, 255, 255, 0.5);
     */
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20d%3D%22M448%2C512c0-128-128-128-128-256S448%2C128%2C448%2C0%22%20vector-effect%3D%22non-scaling-stroke%22%20fill%3D%22none%22%20stroke%3D%22%23EDE4E4%22%20stroke-width%3D%221.01px%22%20%2F%3E%3Cpath%20d%3D%22M192%2C512c0-128-128-128-128-256S192%2C128%2C192%2C0%22%20vector-effect%3D%22non-scaling-stroke%22%20fill%3D%22none%22%20stroke%3D%22%23EDE4E4%22%20stroke-width%3D%221.01px%22%20%2F%3E%3C%2Fsvg%3E');
    background-size: 1071px;
    background-position: center;
    background-repeat: repeat;
    border-radius: 1rem 1rem 1rem 1rem;

    background-color: #FAFAFAD0;
    max-width: 90%;
    margin: 50px 5% 40px;
}

header {
    z-index: 1000;
}

body:before {
    content: '';
    display: block;
    background-attachment: scroll;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: var(--background-height);
    z-index: 0;
    pointer-events: none;
    transform: scale(1);
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20d%3D%22M1.6-1.8l80.9%2C9.2%20M0%2C0l73.5%2C133.5%20M83.9-1.3l-1.4%2C8.8%20M82.5%2C7.5l-7.5-9%20M179.5%2C36.5l-97-29%20M157.5-2.5l22%2C39%20M190.5-1.5l-11%2C38%20M305.5%2C6.5l-8-9%20M305.5-3.5v10%20M212.5%2C102.5l-33-66%20M305.5%2C114.5V6.5%20M389.5-2.5l2%2C4%20M411.5%2C122.5l-20-121%20M483.5%2C115.5l-92-114%20M102.5%2C220.5l-29-87%20M179.5%2C36.5l126-30%20M212.5%2C102.5l93%2C12%20M305.5%2C6.5%20l-93%2C96%20M391.5%2C1.5l-86%2C5%20M305.5%2C114.5l86-113%20M411.5%2C122.5l-105-8%20M212.5%2C102.5l-139%2C31%20M179.5%2C36.5l-106%2C97%20M82.5%2C7.5l-9%2C126%20M-1.5%2C120.5l75%2C13%20M-1.5%2C230.5l75-97%20M-1.5%2C233.5l104-13%20M212.5%2C102.5l-110%2C118%20M213.5%2C241.5l-111-21%20M212.5%2C102.5l1%2C139%20M305.5%2C114.5l-92%2C127%20M318.5%2C235.5l-105%2C6%20M305.5%2C114.5l13%2C121%20M405.5%2C223.5l-100-109%20M411.5%2C122.5l-6%2C101%20M318.5%2C235.5l87-12%20M411.5%2C122.5l73-7%20M405.5%2C223.5l79-108%20M391.5%2C1.5l123.9-2%20M483.5%2C115.5l28-116%20M508.5%2C234.5l-103-11%20M484.5%2C115.5l24%2C119%20M513.5%2C120.5l-30-5%20M318.5%2C235.5l64%2C94%20M405.5%2C223.5l-23%2C106%20M508.5%2C234.5l-126%2C95%20M514.5%2C337.5l-132-8%20M512.5%2C416.5l-130-87%20M415.5%2C445.5l97-29%20M382.5%2C329.5l33%2C116%20M513.5%2C511.5l-98-66%20M390.5%2C513.5l25-68%20M292.5%2C414.5l123%2C31%20M392.5%2C513.5l-100-99%20M382.5%2C329.5l-90%2C85%20M316.5%2C306.5l-24%2C108%20M382.5%2C329.5l-66-23%20M318.5%2C235.5l-2%2C71%20M213.5%2C241.5l103%2C65%20M201.5%2C342.5l115-36%20M213.5%2C241.5l-12%2C101%20M215.5%2C432.5l-14-90%20M292.5%2C414.5l-77%2C18%20M201.5%2C342.5l91%2C72%20M215.5%2C432.5l92%2C87%20M292.5%2C414.5l14%2C105%20M215.5%2C432.5l-26%2C82%20M108.5%2C427.5l107%2C5%20M201.5%2C342.5l-93%2C85%20M159.5%2C513.5l-51-86%20M83.5%2C512.5l25-85%20M-1.5%2C416.5l110%2C11%20M76.5%2C512.5l-78-96%20M91.5%2C313.5l17%2C114%20M9.5%2C337.5l99%2C90%20M-1.5%2C416.5l11-79%20M-2.5%2C337.5h12%20M91.5%2C313.5l-82%2C24%20M91.5%2C313.5l11-93%20M91.5%2C313.5l122-72%20M-0.5%2C236.5l92%2C77%20M201.5%2C342.5l-110-29%20M9.5%2C337.5l-13.4-102%20M508.5%2C234.5l5-7%20M514.5%2C232.5l-6%2C2%20M513.5%2C239.5%20l-5-5%20M517.6%2C313.9l-9.1-79.4%20M-1.5%2C416.5l2%2C95.9%20M511.5%2C416.5l1%2C94%20M417.3%2C514.1l96.2-2.6%20M510.5%2C415.5l5.3-38.4%20M0.5%2C510.5%20l30.4%2C2.6%22%20vector-effect%3D%22non-scaling-stroke%22%20fill%3D%22none%22%20stroke%3D%22rgba(255,255,255,0.239)%22%20stroke-width%3D%221.01px%22%20%2F%3E%3C%2Fsvg%3E'), linear-gradient(45deg, #CFABA3 0%, #EDE4DB 100%);
    background-size: 1536px, auto;
    background-position: center, 0% 0%;
    background-repeat: repeat, repeat;
}

.container {
    display: flex;
    align-items: center;
    vertical-align: middle;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 100%;
    margin: 20px 5%;
}


/* =============== HOME =============== */
.home {
    text-align: right;
}

.home .subtitle {
    color: #C7A097;
}

.home .container {
    flex-direction: row;
}

.home .contact__me__button {
    height: 3.5rem;
    line-height: 3.5rem;
    padding: 0 1.75rem;
    font-size: 1em;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.025rem;
    font-weight: 300;
    border-radius: 2rem;
    background-color: var(--second-color);
    color: #FFFFFF;
    transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    position: relative;
    border: 0;
    cursor: pointer;
    text-align: center;
    max-width: 100%;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin: 0 0 0 auto;
}

.home .contact__me__button svg {
    display: block;
    width: 1.125em;
    min-width: 16px;
    height: 100%;
    fill: #FFFFFF;
    margin-right: calc(0.5em + 0rem);
    margin-left: -0.125em;
    transition: fill 0.25s ease;
}

.home .contact__me__button:hover {
    background-color: var(--first-color);
    transform: scale(1.0425);
}

.contact__me__button a {
    width: 100%;
    height: 100%;
    position: absolute;
}

/* =============== ABOUT =============== */
section.about {
    position: relative;
}

.about .container {
    flex-direction: row;
}

.about__description {
    width: 70%;
    padding: 30px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.3);
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: center;
    height: 100%;
}

.card {
    background-color: var(--second-color);
    padding: 15px;
    border-radius: 15px;
    margin: 1rem .25em;
    width: 20%;
    z-index: 2;
    position: relative;
    min-width: 120px;
}

.card p {
    font-size: 0.8em;
    line-height: 2;
    font-weight: 300;
    text-transform: uppercase;
    width: 100%;
}

.card__price {
    text-align: right;
    font-style: italic;
    color: white;
    font-size: .5em;
}

/* =============== CONTACT =============== */
.contact .container {
    flex-direction: row;
}

.contact .container {
    gap: 5rem;
}

.contact .contact__form__container {
    width: 70%;
}

.contact .contact__info__container {
    width: 30%;
    padding: 20px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.2);
}

.contact__form {
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 30px;
    margin: 0 0 0 auto;
}

.contact__information {
    display: flex;
    margin-bottom: 2rem;
    align-items: end;
}

.contact__icon {
    color: var(--first-color);
    margin-right: 0.75rem;
}

.contact__title {
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
}

.contact__subtitle {
}

.contact__content {
    padding: .75rem 1rem .25rem;
}

.contact__label {
    font-size: var(--small-font-size);
    color: var(--title-color);
}

.contact__input {
    width: 100%;
    background-color: var(--second-color);
    color: var(--text-color);
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    border: none;
    outline: none;
    padding: .5rem;
    box-shadow: 0 0 1px;
    border-radius: 3px;
}

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

.contact__socials {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 20px;
}

.contact__button {
    display: flex;
}

.contact__button .button {
    display: inline-block;
    background-color: var(--first-color);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    padding: 16px;
    border-radius: 16px;
    margin: 0 0 0 auto;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    letter-spacing: 0.1em;

}

footer {
    position: absolute;
    background-color: var(--first-color);
    width: 100%;
    height: 20px;
    box-shadow: inset 0 7px 15px -7px;
    bottom: 0;
    z-index: 1;
}

.created__by {
    color: rgb(255, 241, 237);
    font-size: 15px;
    position: absolute;
    bottom: 0;
    right: 50px;
    line-height: 20px;
    font-family: 'Roboto', sans-serif;
}

.created__by:hover {
    text-decoration: underline;
}

.created__by span {
    color: white;
}

/* =============== HEADER =============== */
@media screen and (max-width: 780px) {


    main {
        max-width: 100%;
        margin: 0;
        border-radius: 0;
    }

    section, section:first-of-type {
        min-height: 100vh;
        padding: 0;
    }

    section:last-of-type {
        padding: 0;
        min-height: 100vh; /** older browsers **/
        min-height: -webkit-calc(100vh - 20px); /** Safari 6, Chrome 19-25 **/
        min-height: -moz-calc(100vh - 20px); /** FF 4-15  **/
        min-height: calc(100vh - 20px); /** FF 16+, IE 9+, Opera 15, Chrome 26+, Safari 7 and future other browsers **/
    }

    #header {
        display: none;
    }

    #main section .container {
        flex-direction: column;
        gap: 30px;
    }

    #main section .container > div {
        width: 80% !important;
    }

    .slideout-menu {
        position: fixed;
        top: 0;
        bottom: 0;
        width: 256px;
        min-height: 100vh;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        z-index: 0;
        display: none;
    }


    .slideout-menu-left {
        left: 0;
    }

    .slideout-menu-right {
        right: 0;
    }

    .slideout-panel {
        position: relative;
        z-index: 1;
        will-change: transform;
        min-height: 100vh;
    }

    .slideout-open,
    .slideout-open body,
    .slideout-open .slideout-panel {
        overflow: hidden;
    }

    .slideout-open .slideout-menu {
        display: block;
    }


    input[type="checkbox"]:checked ~ #sidebarMenu {
        transform: translateX(0);
    }

    input[type=checkbox] {
        transition: all 0.3s;
        box-sizing: border-box;
        display: none;
    }

    .sidebarIconToggle {
        transition: all 0.3s;
        box-sizing: border-box;
        cursor: pointer;
        position: absolute;
        z-index: 99;
        top: 22px;
        left: 15px;
        height: 22px;
        width: 22px;
    }

    .spinner {
        transition: all 0.3s;
        box-sizing: border-box;
        position: absolute;
        height: 3px;
        width: 100%;
        background-color: var(--first-color);
    }

    .horizontal {
        transition: all 0.3s;
        box-sizing: border-box;
        position: relative;
        float: left;
        margin-top: 3px;
    }

    .diagonal.part-1 {
        position: relative;
        transition: all 0.3s;
        box-sizing: border-box;
        float: left;
    }

    .diagonal.part-2 {
        transition: all 0.3s;
        box-sizing: border-box;
        position: relative;
        float: left;
        margin-top: 3px;
    }

    input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
        transition: all 0.3s;
        box-sizing: border-box;
        opacity: 0;
    }

    input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
        transition: all 0.3s;
        box-sizing: border-box;
        transform: rotate(135deg);
        margin-top: 8px;
    }

    input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
        transition: all 0.3s;
        box-sizing: border-box;
        transform: rotate(-135deg);
        margin-top: -9px;
    }

    #hamburger {
        position: fixed;
        z-index: 100;
    }

    #sidebarMenu {
        height: 100vh;
    }

    .sidebarMenuInner {
        margin: 0;
        padding: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.10);
    }

    .sidebarMenuInner li {
        list-style: none;
        cursor: pointer;
        border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    }

    .sidebarMenuInner li a {
        padding: 25px;
        display: block;
    }

    .sidebarMenuInner li span {
        display: block;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.50);
    }

    .sidebarMenuInner li a {
        cursor: pointer;
        text-decoration: none;
        z-index: 101;
    }

    .sidebarMenuInner li.sidebarMenuInnerTitle {
        cursor: initial;
        text-align: right;
        padding: 40px 20px;
    }

    .sidebarMenuInner li.sidebarMenuInnerTitle span {
        color: var(--first-color);
    }


}

@media screen and (min-width: 780px) {
    #sidebarMenu {
        display: none;
    }

    #main header {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        width: 100%;
        height: 50px;
        display: block;
    }

    #hamburger {
        display: none;
    }

    nav {
        height: 100%;
        flex-direction: row;
    }

    nav ul {
        display: flex;
        flex-direction: row;
    }

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .nav__list {
        gap: 20px;
        padding: 0 20px;
    }

    .nav__logo {
        padding: 0 20px;
    }

    .nav__link {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: var(--h3-font-size);
        color: var(--first-color);
    }

    .nav__logo {
        color: var(--first-color);
    }

    .nav__logo-text {
        font-family: var(--title-font);
        font-size: 2rem;
        font-weight: bold;
    }

    .nav__item.active .nav__link {
        color: var(--first-color);
        border-bottom: 1px solid var(--first-color);
    }
}


@media screen and (min-width: 768px) {
    .container {

    }
}

@media screen and (max-width: 350px) {
    .container {
    }
}

/* =============== SCROLL REVEAL =============== */
html.sr .section .container > div {
    /*
    visibility: hidden;
     */
}

html.sr .load__hidden {
    visibility: hidden;
}


/* =============== SEND EMAIL =============== */

#send__email {
    position: relative;
    display: block;

    appearance: none;
    -webkit-appearance: none;

    width: 225px;

    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
}

#send__email.animate {
    width: 75px;
    height: 75px;
    min-width: 0;
    border-radius: 50%;
    color: white;
}

#send__email.animate:after {
    position: absolute;
    content: '';
    width: var(--spinner-button-width);
    height: var(--spinner-button-width);
    border: 4px solid coral;
    border-radius: 50%;
    border-left-color: white;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    animation: spin ease-in 2.5s forwards;
    animation-name: spin;
    -webkit-animation-name: spin;
    transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    animation-duration: 2.5s;
    -webkit-animation-duration: 2.5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

#send__email.success:before {
    position: absolute;
    content: '';
    width: var(--spinner-button-width);
    height: calc(var(--spinner-button-width) / 2);
    border: 4px solid white;
    border-right: 0;
    border-top: 0;
    left: 50%;
    top: 45%;
    -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(0);
    transform: translate(-50%, -50%) rotate(0deg) scale(0);
    -webkit-animation: success ease-in 0.15s forwards;
    animation: success ease-in 0.15s forwards;
    animation-delay: 2.5s;
}

#send__email.error {
    position: relative;
    -webkit-animation: vibrate ease-in 0.5s forwards;
    animation: vibrate ease-in 0.5s forwards;
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

#send__email.error:before {
    color: #fff;
    position: absolute;
    content: '!';
    font-size: 3.5rem;
    font-weight: bold;
    text-align: center;
    left: 50%;
    top: 54%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    -webkit-animation: error ease-in 0.5s forwards;
    animation: error ease-in 0.5s forwards;
    animation-delay: 2.5s;
}


@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    90% {
        transform: translate(-50%, -50%) rotate(1080deg) scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }

    98% {
        -webkit-transform: translate(-50%, -50%) rotate(1080deg) scale(1);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(1080deg) scale(0);
    }
}

@keyframes success {
    from {
        transform: translate(-50%, -50%) rotate(0) scale(0);
    }
    to {
        transform: translate(-50%, -50%) rotate(-45deg) scale(1);
    }
}

@-webkit-keyframes success {
    from {
        -webkit-transform: translate(-50%, -50%) rotate(0) scale(0);
    }
    to {
        -webkit-transform: translate(-50%, -50%) rotate(-45deg) scale(1);
    }
}

@keyframes error {
    from {
        transform: translate(-50%, -50%) scale(0);
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        background-color: #f44336;
    }
}

@-webkit-keyframes error {
    from {
        -webkit-transform: translate(-50%, -50%) scale(0);
    }
    to {
        -webkit-transform: translate(-50%, -50%) scale(1);
        background-color: #f44336;
    }
}


@keyframes vibrate {
    0%, 30%, 60%, 85%, 100% {
        left: 0;
        background-color: #f44336;
    }
    10%, 40%, 90%, 70% {
        left: -2px;
        background-color: #f44336;
    }
    20%, 50%, 80%, 95% {
        left: 2px;
        background-color: #f44336;
    }
}
