body {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 0;
    min-height: 100vh;
    font-family: "Noto Sans", "Segoe UI", Roboto, Helvetica, Arial, sans-serif, sans-serif;
}

header {
    position: fixed;
    width: 100%;
    z-index: 6  ;
    background-color: var(--light-blue);
}

h1 {
    position: relative;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif-Bold, sans-serif;
    font-size: 2rem;
    margin: auto auto 10px;
    max-width: 1100px;
    color: white;
    z-index: 5;
}

h2 {
    font-family: "Noto Sans", "Segoe UI", Roboto, Helvetica, Arial, sans-serif, sans-serif;
    color: white;
}

h3 {
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif, sans-serif;
    margin: 1%;
    text-align: center;
}

a {
    color: var(--dark-gray);
}

label{
    color: #727272;
    margin: 0 10px;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.input-file{
    font-size: 1.2rem;
    margin: 10px; 
    color: var(--coral);
}

.faq {
    border: .922629px solid var(--dark-cyan);
    border-radius: 7.38103px;
    border-width: 2px;
    box-shadow: 0 5.53577px 9.22629px rgba(0,0,0,.03);
    cursor: pointer;
    margin: 0 20px 15px;
    padding: 30px 50px 30px 30px;
}

.faq-question{
    position: relative;
    font-size: 1.3rem;
    cursor: pointer;
    margin: 10px 0;
}

.faq-answer{
    margin: 0;
    padding: 0;
    overflow: hidden;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
}

.faq h4.faq-question::after {
    background-color:#000;
    background-size:cover;
    content:"";
    height:14px;
    position:absolute;
    right:-18px;
    top:2px;
    transition:.2s;
    width:2px
}

.faq h4.faq-question::before {
    background-color:#000;
    background-size:cover;
    content:"";
    height:2px;
    position:absolute;
    right:-24px;
    top:8px;
    width:14px
}

.faq.active h4.faq-question::after {
    transform: rotate(-90deg);
    transition: .3s;
}

.step-how-to {
    width: 300px;
    padding: 20px;
    align-items: start;
    margin: 10px;
    border-color: var(--dark-cyan);
    border-width: 2px;
    border-style: hidden;
    border-radius: 60px;
    background-color: var(--white-smoke);
}

.step-how-to:hover .animation{
    animation: spin 6s linear infinite;
}

.how-to-step-title{
    font-size: 1.2rem;
    color: var(--black);
    margin: 40px 0 10px 0;
    font-weight: bold;
}

.app-img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 40%;
    transform: scale(500%);
}

.step-number{
    font-size: 0.5rem;
    color: var(--black);
    align-self: center;
}

.text-center {
    text-align: center !important;
    position: relative;
}

.subtitle {
    position: relative;
    margin: auto auto 28px;
    font-size: 1.2rem;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif, sans-serif;
    font-weight: unset;
    max-width: 50vw;
    z-index: 5;
}

.container {
    width: 100%;
    flex: 1;
    background-position: 0 0;
    background-size: 100vw auto;
    background-repeat: no-repeat;
}

.horizontal-block {
    display: flex;
    padding: 5vh 0;
    justify-content: space-evenly;
    align-items: center;
}

.text-block {
    text-align: justify;
    font-size: 1rem;
}

.modalWrapper {
    display: none;
    position:fixed;
    padding: 30px;
    align-items:center;
    justify-content:center;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    z-index: 9999;
}

.text-field {
    border-color: var(--black);
    margin: 10px 0 10px 10px;
    padding-left: 10px;
    min-width: 200px;
    height: 40px;
    border-radius: 20px 0 0 20px;
    border-style: solid;
    outline: none;
}

.button-with-icon {
    display: flex;
    justify-content: space-between;
    background-color: var(--dark-cyan);
    border-radius: 16px;;
    color: var(--white);
    height: 40px;
    padding: 10px;
    margin: 10px;
    font-family: "Noto Sans", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    align-content: center;
    align-items: center;
}

.emailButton {
    height: 40px;
    margin: 10px 0 10px 0;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 50% 50% 0;
    border-color: var(--black);
    border-width: 2px;
    border-style: solid;
    cursor: pointer;
}

.emailButton:hover {
    filter: brightness(1.1);
}

.title-in-frame{}

.flex-centered-column-hidden {
    display: none;
    flex-direction: column;
    align-items: center;
}

#hidden-bg {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    position: fixed;
    background-position: 0 0;
    background-size: 100vw auto;
    background-repeat: no-repeat;
}

#uploadFile {
    width: 100%;
    margin-top: 7vw;
}

#messageBox {
    position: fixed;
    max-width: 90vw;
    max-height: 30vh;
    padding: 20px;
    border-radius: 20px;
    border-style: double;
    border-width: 4px;
    border-color: var(--coral);
    background: var(--white-smoke);
    cursor: pointer;
}

#prevTasksBox {
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 600px;
    max-width: 90vw;
    max-height: 80vh;
    padding: 20px;
    border-radius: 20px;
    border-style: double;
    border-width: 4px;
    border-color: var(--dark-cyan);
    background: var(--white-smoke);
    cursor: pointer;
}

#surveyForm {
    position: fixed;
    max-width: 90vw;
    padding: 20px;
    border-radius: 20px;
    border-style: double;
    border-width: 4px;
    border-color: var(--dark-gray);
    background: var(--white-smoke);
    cursor: pointer;
}

#statusPanel {
    min-height: 0;
    display: none;
    width: 100%;
    justify-content: center;
}

#statusDescription {
    display: none;
}

#progressbarContainer {
    display: flex;
    width: 100%;
    height: 10px;
    border-radius: 10px;
    border-color: var(--dark-blue);
    border-width: 1px;
    border-style: solid;
    background-color: var(--light-brown);
}

#progressbarThumb {
    position: relative;
    display: flex;
    width: 10%;
    height: 8px;
    border-radius: 10px;
    background-color: var(--dark-blue);
    transition-property: width;
    transition-duration: 300ms;
    transition-timing-function: linear;
    transition-delay: 0ms;
}

#leaveEmailButton {
    display: flex;
    justify-content: space-between;
}

#preloader {
    display: none;
    border: 10px solid var(--dark-blue);
    border-top-color: var(--light-brown);
    border-bottom-color: var(--light-brown);
    border-radius: 50%;
    width: 200px;
    height: 140px;
    animation: spin 1s ease-in-out infinite;
    animation-delay: 0s;
    animation-direction: normal;
    animation-delay: 100ms;
    animation-direction: alternate;
    align-self: center;
    z-index: 1;
}

#div1 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 370px;
    border-radius: 50%;
}

#how-to {
    font-size: 3rem;
    color: var(--dark-cyan);
    margin-top:100px;
}

#dropFiles {
    justify-content: center;
    border-radius: 50%;
    border-color: #FFCB9A;
    width: 70%;
    height: 50%;
    border-style: dashed;
}

#appContainer {
    box-shadow: inset 0 0 10px 1px #00889e;
    border-radius: 50%;
    width: 600px;
    height: 300px;
    justify-content: center;
}

#DynabicMenuUserControls {
    display: flex;
    justify-content: start;
    align-items: center
}

.first-list-item{
    border-radius: 20px 0 0 20px;
}

.last-list-item{
    border-radius: 0 20px 20px 0;
}

.div2 {
    width: 161px;
    height: 226px;
}

.flex-centered-row {
    display: flex;
    align-items: center;
}

.flex-centered-column-visible {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.controls-container {
    padding: 6px 12px;
    border: 1px solid black;
    border-radius: 16px;
    width: 75%;
}

.controls-container:focus-visible {
    outline: 1px solid ButtonBorder;
}

.illustration-group-options{
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: inset 0 0 10px 1px #00889e;
    padding: 5px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
}

.list-group-item {
    position: relative;
    display: flex;
    height: 40px;
    align-items: center;
    padding-left: 1em;
    border-radius: 16px 0;
    border-color: var(--coral);
    border-width: 1px;
    border-style: solid;
    margin-top: -1px;
}

.list-ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    list-style-type: none;
    padding: 0;
    margin: 0;
    line-height:2;
}

.list-params-illustrator{
    flex-direction: row;
    font-size: 0.9rem; 
}

.dropdown {
    font-size: 1rem;
    height: 40px;
    margin: 10px;
    padding: 0 10px;
    border-radius: 16px;
    border-style: hidden;
    border-width: 1px;
    background: var(--white-smoke);
    text-align: start;
}

.button-delete {
    display: flex;
    align-items: center;
    padding: 8px;
    cursor: pointer;
}

.button-with-centered-childs{
    width: 15%;
    align-content: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.icon-delete-height {
    height: 24px;
}

.file-name {
    display: flex;
    flex: 1;
    cursor: grab;
    height: 100%;
    align-items: center;
}

.left-align-row {
    display: flex;
    align-items: center;
    margin: 10px;
}

.horizontal-container-centered {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    margin: 10px 0;
    font-size: 0.9rem;
}

.footer-links li:not(:first-child)::before {
    content: "|";
}

.for-upload-files {}

.file-input {
    display: none;
}

.breadcrumb {
    text-decoration: none;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.cloud-source {
    display: flex;
    padding: 20px;
    position: relative;
    width: 67px;
    height: 67px;
    border-radius: 50%;
}

.title-how-to{
    display: flex;
    height: 100px
}

.tile-app{
    position:relative;
    width: 15.6666%;
    min-height: 200px;
    margin: 2px;
    padding: 10px;
    text-align: center;
    float:left;
    box-sizing: border-box;
    overflow:hidden;
    border-radius: 4px;
    background-color: azure;
    transition: width 1s, background-color 0.5s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: inset 0 0 10px 1px #00889e;
}

.tile-app:hover .app-description .app-title {
    box-shadow: 0 0 10px 1px var(--white);
    color: black;
}

.tile-app:hover .icon-transition{
    transform: scale(220%);
}

.tile-app:hover{
    background-color: var(--white-smoke);
}

.lang-selector {
    min-width: inherit !important;
    width: inherit !important;
    max-width: inherit !important;
    white-space: nowrap;
    margin-right: 5px !important;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

#lang-close {
    position: absolute;
    z-index: 999999;
    color: #fff;
    background: #dc4342 !important;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    padding: 0;
    text-align: center;
    line-height: 21px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lang-close::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 2px;
    background: #fff;
    transform: rotate(45deg);
    margin: 11px 6px;
}

#lang-close::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 2px;
    background: #fff;
    transform: rotate(-45deg);
    margin: 11px 6px;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
    overflow: scroll;
}

.rowbox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: wrap;
}

.langbox {
    margin: 0;
    width: 20%;
    flex: none;
    flex-grow: 0;
    flex-basis: auto;
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    padding: 0 15px;
    max-width: 100%;
}

.col.langbox {
    flex-grow: inherit;
    flex-basis: inherit;
}

.langmenu {
    color: #fff;
    font-size: 14px !important;
    padding: 10px 0;
    display: block;
    transition: .2s ease-in-out;
}

.langmenu:hover {
    color: #ffffff !important;
    background: #222222;
}

.langbox span {
    text-align: center !important;
    display: block;
}

.icon-transition {
    transform: scale(200%);
    margin: 30px;
    transition: 0.3s;
}

.app-title {
    font-size: 1.2rem;
    display: block;
    margin: 10px;
    color: black;
}

.app-description{
    font-size: 1rem;
    color: darkslategray;
}

.button {
    background-color: var(--dark-cyan);
    color: var(--white);
    height: 40px;
    position: relative;
    padding: 0 10px;
    margin: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    font-family: "Noto Sans", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    border-color: var(--black);
    border-radius: 16px;
    border-width: 6px;
    border-style: outset;
}

.button:hover {
    filter: brightness(1.1);
}

.icon {
    display: block;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
}

.icon-brain {
    background-position: -21px -21px;
    width: 20px;
    height: 21px;
}

.icon-brain-number {
    background-position: 0 -42px;
    width: 20px;
    height: 21px;
}

.icon-close{
    background-position: -21px 0;
}

.icon-delete{
    background-position: -98px 0;
}

.icon-download{
    background-position: -42px -22px;
    width: 26px;
    height: 21px;
}

.icon-dropbox{
    background-position: -69px 0;
    width: 28px;
    height: 28px;
}

.icon-email{
    background-position: -42px 0;
    width: 26px;
    height: 21px;
}

.icon-google-drive{
    background-position: -72px -29px;
    width: 28px;
    height: 25px;
}

.icon-lang{
    background-position: -21px -43px;
}

.icon-page{
    background-position: -58px -88px;
    width: 32px;
    height: 40px;
}

.icon-ai-illustrator{
    background-position: -143px 0;
    width: 57px;
    height: 46px;
}

@media screen and (max-width: 1607px)
{
    .tile-app{
        width:19%;
    }
}

@media screen and (max-width: 1290px) {
    .subtitle{
        font-size: 1rem;
    }
    
    h1{
        font-size: 1.7rem;
    }
    
    .tile-app{
        width: 30%;
    }
}

@media screen and (max-width: 1150px) {
    .container {
        background-position: -10vw 0;
        background-size: 120vw auto;
    }
}

@media screen and (max-width: 980px) {
    .tile-app {
        width: 40%;
        border-radius: 11px;
    }
}

@media screen and (max-width: 800px) {
    h1{
        font-size: 1.4rem;
    }
    
    .container {
        background-size: 130vw auto;
    }
}

@media screen and (max-width: 767px) {
    .tile-app
    {
        width: 49%;
        border-radius: 14px;
    }
    
    .app-description {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 760px) {
    .list-params-illustrator{
        display: block;
    }

    .first-list-item{
        border-radius: 20px 20px 0 0;
    }

    .last-list-item{
        border-radius: 0 0 20px 20px;
    }
}

@media screen and (max-width: 690px) {
    .subtitle{
        max-width: 90vw;
        font-size: 0.9rem;
    }
    
    h1{
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 667px) {
    .tile-app{
        width: 98%;
        margin: 1%;
        padding: 5%;
        border-radius: 16px;
    }

    .app-description {
        font-size: 1rem;
    }

    .tales-container {
        padding: 1%;
    }
}

@media screen and (max-width: 650px){
    .footer-links{
        margin: 0;
    }

    .breadcrumb{
        font-size: 0.9rem;
    }
    
    .langbox{
        width: 25%;
    }
    
    .rowbox{
        justify-content: start;
    }
}

@media screen and (max-width: 600px) {
    #appContainer{
        width: 400px;
        height: 200px;
    }

    .container {
        background-size: 150vw auto;
    }
    
    .subtitle {
        font-size: 0.8rem;
    }
    
    .input-file{
        font-size: 0.9rem;
    }

    .langbox{
        width: 33%;
    }

    .rowbox{
        justify-content: center;
    }
    
    .title-in-frame{
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 500px) {
    #prevTaskTitle{
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 450px) {
    .container {
        background-size: 180vw auto;
    }
    
    .langbox{
        width: 50%;
        height: 30px;
    }

    .rowbox{
        justify-content: start;
    }
    
    .title-in-frame{
        font-size: 0.8rem;
    }
}