
/*Style*/

header.desktop div.header_content nav {
    visibility: hidden;
    opacity: 0;
}

div.container {
    background-color: rgb(224, 233, 240);
    padding: 3em calc((100% - 1200px)/ 2);
    padding-top: 120px;
    display: flex;
    flex-direction: row;
}

div.container div.content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 50%;
}

div.container div.content h1 {
    font-size: 2.3rem;
    color: #32b4a6;
    font-weight: 700;
    text-transform: uppercase;
}

div.container div.content h1 span {
    color: #292929;
    font-weight: 700;
}

div.container div.content strong {
    color: rgb(41, 41, 41);
    font-size: 1.2rem;
    margin: 0.5em 0;
}

div.container div.content p {
    color: #292929;
}

div.container div.image {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 50%;
    position: relative;
    justify-content: flex-end;
}

div.container div.image img {
    display: block;
    width: 500px;
}

div.container div.image:after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 80%;
    background-image: url("/wp-content/themes/angelsense/images/sticker-lp/Arrow_desk.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    width: 268px;
    height: 105px;
}

div.container div.content form {
    margin-top: 3.5em;
    background-color: rgb(17, 45, 53);
    text-align: center;
    padding: 1.5em 1.8em;
    position: relative;
    width: 70%;
    border-radius: 8px;
}

div.container div.content form:before {
    content: '';
    position: absolute;
    top: -9px;
    left: -37px;
    background-image: url("/wp-content/themes/angelsense/images/sticker-lp/limited.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    width: 201px;
    height: 154px;
    z-index: 0;
}

div.container div.content form.success:before {
    display: none;
}

div.container div.content form h3 {
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    font-size: 1.5rem;
    font-weight: 700;
}

div.container div.content form p {
    color: white;
    margin-bottom: 1.5em;
}

div.container div.content form label {
    display: block;
    width: 100%;
    border: none;
    margin-bottom: 0.9em;
}

div.container div.content form label select,
div.container div.content form label input {
    border: none;
    padding: 0.8em 0.5em;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
    font-size: 0.8rem;
}

div.container div.content form button {
    display: block;
    width: 100%;
    border: none;
    background-color: #f1112b;
    border-radius: 8px;
    padding: 0.6em;
    -webkit-appearance: none;
    color: white;
    font-size: 1.3rem;
    text-transform: uppercase;
    border-radius: 5px;
}

div.container div.content form button strong {
    color: white;
    font-size: 1.3rem;
}

div.container div.content form div.half {
    display: inline-block;
    vertical-align: top;
    width: 48.5%;
}

div.container div.content form div.half:first-of-type {
    margin-right: 1.7%;
}

div.note {
    padding: 1em ;
    background-color: #32b4a6;
    text-align: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

span.note {
    color: white;
    display: block;
    font-size: 0.7rem;
    margin-top: 0.5em;
}

#error {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(17, 45, 53);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

#sticker-sign.error #error,
#sticker-sign.success #error {
    opacity: 1;
    visibility: visible;
}

#error span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    width: 90%;
    font-weight: 700;
}

#error span a {
    display: block;
    color: white;
    text-decoration: underline;
    margin-top: 0.5em;
}

div#stock {
    position: absolute;
    top: 100px;
    left: 50%;
    width: 90%;
    height: calc(100% - 100px);
    z-index: 10;
    background-color: rgba(17, 45, 53, 0.95);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

div#stock p {
    position: absolute;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    width: 80%;
    font-weight: 600;
}

div#stock p a {
    display: block;
    margin-top: 0.3em;
    color: white;
    text-decoration: underline;
}

footer {
    display: none;
}

@media screen and (max-width: 1200px){
    header.mobile {
        position: absolute;
    }

    div.container {
        padding: 5em calc((100% - 1070px)/ 2);
    }
}

@media screen and (max-width: 1024px){
    header.mobile {
        position: absolute;
    }
    div.container {
        padding: 5em calc((100% - 1000px)/ 2);
    }

    div.container div.content {
        width: 60%;
    }
}

@media screen and (max-width: 768px){
    div.container {
        padding: 3em calc((100% - 750px)/ 2);
        padding-top: 100px;
        flex-direction: column;
    }

    div.container div.content {
        width: 100%;
        text-align: center;
    }

    div.container div.content form {
        width: 98%;
    }

    div.container div.image {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    header.mobile {
        position: absolute;
    }

    div.container {
        padding: 70px 0.5em 1em 0.5em;
        flex-direction: column;
    }

    div.container div.content h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        position: relative;
    }

    div.container div.content h1:after {
        content: '';
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 280px;
        background-image: url("/wp-content/themes/angelsense/images/sticker-lp/stickers.png");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 100% auto;
        height: 175px;
    }

    div.container div.content p br {
        display: none;
    }

    div.container div.content strong {
        margin: 0;
        margin-bottom: 0.3em;
    }

    div.container div.content form {
        width: 100%;
    }

    div.container div.content form h3 {
        font-size: 1.3rem;
    }

    div.container div.content form p {
        font-size: 0.9rem;
    }

    div.container div.content form:before {
        content: '';
        position: absolute;
        top: -8px;
        left: -33px;
        background-image: url("/wp-content/themes/angelsense/images/sticker-lp/limited.png");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 100% auto;
        width: 175px;
        height: 132px;
        z-index: 11;
    }

    div.container div.content form div.half:first-of-type {
        margin-right: 1.5%;
    }

    div.container div.content form label select,
    div.container div.content form label input {
        padding: 0.7em;
        height: 35px;
    }

    div.container div.image {
        display: block;
        width: 85%;
        margin-top: 1em;
    }

    div.container div.image img {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    div.container div.image:after {
        display: none;
    }

    div.note {
        padding: 0.5em 1.5em 0.5em 1.5em;
        font-size: 1.5em;
    }

    span.note {
        color: white;
        display: block;
        font-size: 0.7rem;
        margin-top: 0.5em;
    }

    #sticker-sign.error #error,
    #sticker-sign.success #error {
        position: fixed;
        background-color: rgb(17, 45, 53);
    }

    #sticker-sign.error #error span,
    #sticker-sign.success #error span {
        color: white;
    }

    div#stock {
        top: 90px;
    }

    div#stock p {
        width: 90%;
    }
}

@media screen and (max-width: 320px) {
    div.container div.content h1 {
        font-size: 1.3rem;
    }

    div.container div.content h1:after {
        width: 300px;
    }

    div.container div.content form div.half {
        width: 100%;
    }

    div.container div.content form div.half:first-of-type {
        margin-right: 0;
    }

    div.container div.content form button strong,
    div.container div.content form button {
        font-size: 1rem;
    }

    div.container div.content form::before {
        content: '';
        position: absolute;
        top: -8px;
        left: -28px;
        background-image: url("/wp-content/themes/angelsense/images/sticker-lp/limited.png");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 100% auto;
        width: 151px;
        height: 119px;
        z-index: 0;
    }
}