@font-face {
    font-family: "IQOS";
    src: url("../font/IQOS-Regular.eot");
    src: url("../font/IQOS-Regular.eot?#iefix") format("embedded-opentype"),
        url("../font/IQOS-Regular.woff2") format("woff2"), url("../font/IQOS-Regular.woff") format("woff"),
        url("../font/IQOS-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IQOS";
    src: url("../font/IQOS-Light.eot");
    src: url("../font/IQOS-Light.eot?#iefix") format("embedded-opentype"),
        url("../font/IQOS-Light.woff2") format("woff2"), url("../font/IQOS-Light.woff") format("woff"),
        url("../font/IQOS-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IQOS";
    src: url("../font/IQOS-Bold.eot");
    src: url("../font/IQOS-Bold.eot?#iefix") format("embedded-opentype"), url("../font/IQOS-Bold.woff2") format("woff2"),
        url("../font/IQOS-Bold.woff") format("woff"), url("../font/IQOS-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --blue: #00d1d2;
    --white: #fff;
    --black: #34303d;
    --red: #f00;
}

html,
body {
    background: var(--blue);
    color: var(--black);
    font-family: "IQOS";
    font-weight: normal;
    font-style: normal;
    line-height: 1.3;
    font-size: 16px;
}

.btn {
    box-shadow: none !important;
    outline: none !important;
}

img {
    display: block;
    max-width: 100%;
}

.main {
    position: relative;
    display: flex;
    min-height: 100dvh;
}
.bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.bg img {
    position: absolute;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.bg .bg-top {
    top: 0;
    left: 0;
    width: 33%;
}
.bg .bg-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 25%;
}
.bg .bg-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 10%;
}

.container {
    width: 100%;
    max-width: 100%;
}

.container.small-container {
    max-width: 1300px;
}

.wrapper {
    max-width: 768px;
    min-height: 100dvh;
    margin: auto;
    display: flex;
    background: var(--blue);
}
.inner {
    padding: 30px 0;
    margin: 0;
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 576px) {
    .inner {
        padding: 10px;
    }
}

.wrapper-home .text h1 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 24px;
    line-height: 1.3;
}

@media (min-width: 576px) {
    .wrapper-home .text h1 {
        font-size: 28px;
    }
}

.form-wrapper .input {
    margin-bottom: 20px;
}
.form-wrapper .input label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 18px;
}

.form-wrapper .input input,
.form-wrapper .input select {
    display: block;
    width: 100%;
    border-radius: 30px;
    background: rgba(255, 253, 251, 0.75);
    transition: all 300ms ease;
    height: 50px;
    border: none;
    padding: 7px 20px;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;

    color: var(--black);
    /* color: #c4c3c6; */
}
.form-wrapper .input input:hover,
.form-wrapper .input select:hover,
.form-wrapper .input input:focus,
.form-wrapper .input select:focus {
    background: rgba(255, 253, 251, 1);
}

.form-wrapper .submit {
    padding-top: 20px;
}
.btn.btn-primary,
.form-wrapper .submit button {
    display: block;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    background: var(--black);
    color: var(--white);
    margin: auto;
    transition: all 300ms ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--black);
}
.btn.btn-primary:before,
.form-wrapper .submit button:before {
    content: "";
    position: absolute;
    left: -30px;
    top: -30px;
    bottom: -30px;
    right: 120%;
    transition: all 300ms ease;
    background: #fff;
    transform: skew(-30deg);
}

.btn.btn-primary span,
.form-wrapper .submit button span {
    transition: all 300ms ease;
    position: relative;
    z-index: 3;
    color: var(--white);
    font-size: 20px;
}
.btn.btn-primary:hover:before,
.form-wrapper .submit button:hover:before {
    right: -30px;
}

.btn.btn-primary:hover span,
.form-wrapper .submit button:hover span {
    color: var(--black);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.inputNumber .inputWrapper {
    position: relative;
}
.form-wrapper .inputNumber input {
    padding-right: 80px;
}

.inputNumber span.nr {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 20;
    color: var(--black);
}

.error-message {
    display: inline-block;
    color: var(--red);
    margin-top: 5px;
    padding: 3px 7px;
    font-size: 12px;
    background: var(--white);
    border-radius: 20px;
    margin-left: 10px;
}

.form-wrapper .input label {
    padding-left: 20px;
}

.message {
    padding: 10px 15px;
    border-radius: 30px;
    line-height: 1.3;
    color: var(--black);
    border: 2px solid var(--white);
    color: var(--white);
    box-shadow: 0 0 10px var(--black);
    position: fixed;
    top: 20%;
    right: 12px;
    z-index: 50;
    cursor: pointer;
    max-width: calc(100% - 24px);
    display: flex;
    flex-direction: row;
}

.message .text {
    margin: auto 0;
}
.message .icon {
    padding-left: 10px;
}

.headline {
    padding-bottom: 30px;
    margin-bottom: auto;
}

.headline h1 {
    text-align: center;
    color: var(--white);
    font-weight: bold;
    font-size: 24px;
    margin: 0;
}

@media (min-width: 576px) {
    .headline h1 {
        font-size: 32px;
    }
}

.headline h1 strong {
    color: var(--black);
    font-size: 120%;
}

.logo {
    padding-top: 10px;
    padding-bottom: 20px;
    margin-top: auto;
    text-align: center;
}

.logo img {
    display: block;
    width: 30%;
    max-width: 120px;
    margin: 0 auto;
}

.triangles {
    position: relative;
    margin: auto;
    /* transform: scale(0.85); */
}

.wrapper-step1 .triangles {
    /* transform: scale(1); */
}

.triangles .motto,
.triangles .name {
    font-weight: bold;
    font-size: 12px;
}

@media (min-width: 768px) {
    .triangles .motto,
    .triangles .name {
        font-weight: bold;
        font-size: 18px;
    }
}

.triangles .name {
    word-wrap: break-word;
    font-family: "Caveat", cursive;
    font-size: 38px;
    text-transform: capitalize;
}

.triangles .motto {
    text-align: center;
    position: absolute;
    top: 67%;
    left: 52%;
    width: 29%;
}
.triangles .name {
    text-align: center;
    line-height: 1;
}
.triangles .name-1 {
    position: absolute;
    top: 25%;
    left: 23%;
    width: 25.6%;
}
.triangles .name-2 {
    position: absolute;
    top: 17%;
    left: 47.9%;
    width: 23%;
}
.triangles .name-3 {
    position: absolute;
    top: 57%;
    left: 14%;
    width: 20%;
    font-size: 29px;
}
.triangles .name-4 {
    position: absolute;
    top: 51%;
    left: 58%;
    width: 23%;
    font-size: 29px;
}

.triangles img {
    width: 100vw;
    max-width: 100%;
}

.installContainer {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 41;
}
.installContainer .butInstall {
    display: block;
    display: none;
    width: 100%;
    background: #fff;
    padding: 10px;
    position: relative;
    z-index: 41;
    text-align: center;
    color: var(--blue);
    text-decoration: none;

    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 41;
    font-weight: bold;

    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    cursor: pointer;
}

@media all and (display-mode: standalone) {
    .installContainer {
        background: var(--black);
        color: var(--white);
        /* display: none; */
    }
}

.blob-wrapper {
    max-width: 576px;
    margin: auto;
}

.blob {
    width: 100%;
    height: 0;
    padding-top: 95%;
    background: url("../img/blob-iqos.png") no-repeat center center;
    background-size: contain;
    position: relative;
    overflow: hidden;
}

.blob .text {
    position: absolute;
    top: 50%;
    bottom: 20px;
    left: 5%;
    right: 5%;
    text-align: center;
}
.blob .text.maxHeight {
    top: 40%;
    bottom: 20px;
    left: 10%;
    right: 10%;
    padding: 0 10px;
    /* background: #aaa; */
}
.blob .text.maxHeight h2 {
    line-height: 1.3;
}

.blob-wrapper.blob-success .text {
    top: 45%;
}

.blob h1 {
    color: var(--black);
    font-weight: bold;
    margin: 0;
    font-size: 24px;
}
.blob h2 {
    color: var(--black);
    font-weight: bold;
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
}

@media (min-width: 576px) {
    .blob h1 {
        font-size: 32px;
    }
    .blob h2 {
        font-size: 32px;
    }
}

.blob h2 strong {
    color: var(--blue);
    font-weight: bold;
}

.buttons {
    display: none;
}
.buttons.active {
    display: block;
}

.buttons a {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 50%;
    background: rgba(0, 0, 0, 0);
    opacity: 0.3;
    transition: all 300ms ease;
    z-index: 40;
}
/* 
.buttons a:active {
    background: var(--black);
} 
*/

.buttons a.prev {
    left: 0;
    width: 30%;
    z-index: 41;
    display: none;
}
.buttons a.next {
    right: 0;
    width: 100%;
}

.printScreen {
    border: 1px solid #fff;
    padding: 30px;
    background: var(--black);
    position: fixed;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    transition: all 300ms ease;
    transition: all 600ms cubic-bezier(0.87, -0.41, 0.19, 1.44);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    opacity: 0;

    display: none !important;
}

.printScreen.active {
    border: 30px solid #fff;
    z-index: 39;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    opacity: 1;
}

.printScreen img {
    display: block;
    transform: scale(1.5);
    filter: blur(10px);
    max-width: 100%;
    object-fit: contain;
    transition: all 300ms cubic-bezier(0.87, -0.41, 0.19, 1.44);
    transition: all 700ms ease;
}

.printScreen.active img {
    transform: scale(1);
    filter: blur(0);
}

#printThis {
    width: 768px !important;
    height: 1024px !important;
    min-height: 1024px !important;
}

@media (min-width: 1200px) {
    #printThis {
        width: 768px !important;
        height: 966px !important;
        min-height: 966px !important;
    }
}

.page-report {
    background: #fff !important;
    min-height: 100vh;
}
.reports-container {
    min-height: 100vh;
}
.reports-container table {
    font-size: 12px;
}
@media (min-width: 992px) {
    .reports-container table {
        font-size: 14px;
    }
}

.reports-container table th:not(.smallTd),
.reports-container table td:not(.smallTd) {
    max-width: 120px;
    word-wrap: break-word;
}
.reports-container table tr {
    transition: all 300ms ease;
}
.reports-container table tr:hover {
    background: #aaa !important;
    color: #fff !important;
}
