*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Varela Round", sans-serif;
    font-style: normal;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
*:focus { outline: none; }
body {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100dvh;
    background-color: #FFFFFF;
    overflow: hidden;
}

.cloud-app {
    position: relative;
    width: 100%;
    height: 100%;
}
iframe {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
#iframe-loader {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

/* ---------------------- */
/* ---------------------- */
/*        Général         */
/* ---------------------- */
/* ---------------------- */
.centered-contents {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------------------- */
/* ---------------------- */
/*        Buttons         */
/* ---------------------- */
/* ---------------------- */
button {
    border: none;
    cursor: pointer;
    background-color: transparent;
    transition: all .2s ease-out;
}
button > svg { height: 15px; }
.size-buttons {
    width: 30px;
    height: 30px;
}
.rounded-buttons { border-radius: 50%; }

/* ---------------------- */
/* ---------------------- */
/*         Icons          */
/* ---------------------- */
/* ---------------------- */
.fa-arrow-right-to-bracket { transform: rotateZ(90deg); }