html, html * {
    scroll-behavior: smooth;
}

*, ::before, ::after {
    box-sizing: inherit;
}
* {

}
/* Dark mode*/
.dark
{
    color: #bbb;
    background: #111;
    background-color: #111;
}
.dark .layout_row_navbar
{
    color: #bbb;
    background: #222;
    background-color: #222;
}
.dark .logo-wrapper{
    background-color: #888;
    border-radius: 1em;
}
.dark .menu_links{
    background: #333;
    background-color: #333;
}
.dark .menu_link_item_caption{
    color: #bbb;
}
.dark a:link {
  color: rgb(0, 105, 226);
  text-decoration: none;
}
.dark a:link + a:visited {
    color: rgb(0, 105, 226);
    text-decoration: none;
}
.dark a:link + a:hover {
    color: rgb(0, 98, 173);
    text-decoration: underline;
}  
.dark a:link + a:active {
    color: rgb(0, 105, 226);
    text-decoration: none;
}
/* Main CSS*/
body {
    color: #333;
    font-size: 15px;
    line-height: normal;
    font-weight: 400;
    font-style: normal;
    text-rendering: optimizeLegibility;
    font-family: "-apple-system",BlinkMacSystemFont,ui-monospace,"Segoe UI",sans-serif;
    margin: 0;
    color: #bbb;
    background-color: #000;;
    height: 100%; 
    overflow: hidden
}
.root{
    height: 100%;
}
.max_width{
    width: 100%;
}
.help_main{
    display: flex;
    flex-direction: column;
    left: 120px;
    position: relative;
}
@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .help_main{
        left:0;
    }
    .help_main_wrapper{
        min-height: calc(100dvh - 4rem);
        height: auto;
        /* top: 4rem; */
        position: relative;
    }
    .help_menu{
        font-size: medium;
        font-weight: 700;
    }
    .help_menu_list{
        margin-top: 4rem !important;
    }
  }
.help_main img{
    align-self: center;
    max-width: 100%;
    margin: 1rem;
}
.help_main h3{
    padding: 1rem;
    /* background: linear-gradient(90deg, rgba(113,99,73,0.7) 0%, rgba(89,82,69,0.5) 50%, rgba(89,82,69,0.3) 100%); */
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    margin: 1rem 0;
}
.help_main p{
    margin-left: 2rem;
    width: 75%;
align-self: center;
}
.main{
    display: flex;
    height: 100%;
    direction: ltr;
    flex-direction: column;
}
.reqActivation{
    position: static;
    top: 0;
    height: 4rem;
    background-color: #fff555;
    display: flex;
    flex: 0 auto;
    justify-content: center;
}
.LoginBox{
    border-radius: 2em; 
    margin: auto; 
    display: flex; 
    flex-wrap: wrap;
    flex-direction: column;
    padding: 1em;
    max-width: 55ch;
}
@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .LoginBox {
        align-content: center;
        margin: 0;
        width: 100%;
        border-radius: 1rem;
        justify-content: center;
    }
    .main_static{
        background-position-x: center;
    }
  }
.main_static {
    position: fixed;
    top: 0;
    width: 100vw;
    min-height: 100dvh;
    height: auto;
    z-index: -1;
    background-size: cover;
}
.main_area{
    display: flex;
    min-height: calc(100dvh - 5rem);
    position: relative;
    /* max-height: calc(100vh - 5rem); */
    height: calc(100dvh - 5rem);
    width: 100%;
    background: linear-gradient(135deg, #121212 0%, #1e1e2e 30%, #2a2537 60%, #36313d 100%);
    overflow-y: scroll;
    /* top:0; */
}
@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .main_area {
        min-height: calc(100dvh - 4rem);
        /* height: 100%; */
        top: 4rem;
        /* position: relative; */
    }
  }
.avaGenList li{
    opacity: 1;
    transition: 0.2s ease;
}
.avaGenList li:hover{
    opacity: 0.65;
}
.menu-main-mobile div ul a{
    text-decoration: none;
    color: #aaa;
    display: flex;
    align-items: center;
}
.SettingsPanel {
    display: flex;
    flex-direction: column;
    flex: 1 auto;
    margin: 0.5em 1.5em 0 0.5em;
}
.textboxArea_wrapper {
    flex-grow: 8;
    display: flex;
    flex-direction: column;
    /* height: 100dvh; */
}
.code {
    background-color: rgb(4, 5, 5);
    font-size: normal;
    font-weight: 400;
    font-family: Monaco, Andale Mono, Ubuntu Mono, monospace;
    border: solid 1px #aaa;
    padding: 1rem;
    border-radius: 1rem 1rem 0 0;
    overflow: scroll;
    white-space: pre-wrap;
  }  
.RegenDialogue {
  font-weight: 400;
  font-style: italic;
}
.rpA{
    font-weight: 500;
    font-size: medium;
    font-weight: bold;
    font-style: normal;
    color: #9788ff;
}
.rpD{
    font-weight: 500;
    font-size: medium;
    font-weight: bold;
    font-style: normal;
    color: #d2eaff;
}
.rpNormal{
    font-style: normal;
    font-weight: 700;
}
.italic{
    font-style: italic;
}
.RegenOldData{
    background-color: #0001;
    border-radius: 0rem;
    padding: 0.5rem;
}
.RegenNewData{
    background-color: #0001;
    border-radius: 0rem;
    padding: 0.5rem;
}
.StreamText::after{
    content: "◝";
    margin-left: 0.5rem;
    position: absolute;
    transform: translate(-50%, -50%);
    animation: rotating 1s linear infinite;
    -webkit-animation: rotating 1s linear infinite;
    -moz-animation: rotating 1s linear infinite;
    -ms-animation: rotating 1s linear infinite;
    -o-animation: rotating 1s linear infinite;
}
.textboxArea{
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    font-style: italic;
    padding: 0.5em;
    flex-grow: 1;
}
@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .textboxArea {
        overflow-y: scroll;
        height: 84dvh;
        position: initial;
        
    }
    .helpScrollV {
        margin-top: 6rem;
      }
  }
.msg_wrapper{
    display: flex;
    flex-direction: column;
    width: 100%;
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.25s
}
@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes rotating /* Safari and Chrome */ {
    from {
      -webkit-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes rotating {
    from {
      -ms-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    to {
      -ms-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -webkit-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
.msgRow{
    display: flex;
}

.msgNewHelper{
  font-size: small;
  font-weight: normal;
  border-radius: 4px;
  align-self: center;
  width: 100%;
  text-align: center;
  height: 1rem;
  transition: ease 0.5s;
  opacity: 0;
  background-color: #0000001a;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 600px) {
    /* For mobile phones: */
    .msgNewHelper {
        opacity: 1;
        height: 3rem;
        margin: 1rem 0;
    }
  }
.msgHelperOpen{
    opacity: 1 !important;
    height: 3rem !important;
}
.msgNewHelper:hover{
    height: 3rem;
    opacity: 1;
}
.msgNewHelperDivider{
    display: flex;
    width: 100%;
    flex-direction: column;
    min-height: 1rem;
    border-top: 0.24rem solid #8b8989;
    border-radius: 0.1rem;
    padding: 0;
    margin: 0;
}
.msgToolBarRight {
    flex-direction: row;
    align-items: center;
    justify-content: right;
    display: flex;
    height: auto;
    width: 100%;
    text-align: end;
  }
.msgToolBarLeft {
  position: relative;
  isolation: isolate;
}
.msgToolBarRight {
  position: relative;
  isolation: isolate;
}
.msgToolBarLeft::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: var(--avatar-bg); /* Set via inline style */
  background-position: left;
  background-repeat: no-repeat;
  background-size: 300px;
  mask: linear-gradient(to right,rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.35) 150px, rgba(0,0,0,0) 270px);
  -webkit-mask: linear-gradient(to right,rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.35) 150px, rgba(0,0,0,0) 270px);
  z-index: -1; /* Place behind content */
  pointer-events: none; /* Prevent interaction */
}
.msgToolBarRight::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: var(--avatar-bg); /* Set via inline style */
  background-position: right;
  background-position-y: var(--offset-bg);
  background-repeat: no-repeat;
  background-size: 300px;
  mask: linear-gradient(to left,rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.35) 150px, rgba(0,0,0,0) 270px);
  -webkit-mask: linear-gradient(to left,rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.35) 150px, rgba(0,0,0,0) 270px);
  z-index: -1; /* Place behind content */
  pointer-events: none; /* Prevent interaction */
}
@media only screen and (max-width: 600px) {
    /* For mobile phones: */
    .msgToolBarRight::before {
        background-size: 300px;
    }
  }
.msgToolBarRight a{
    margin: auto 1rem;
}
.msgToolBarLeft {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: left;
    display: flex;
    height: auto;
    width: 100%;
    text-align: start;
}
.msgToolBarLeft a{
    margin: auto 1rem;
}
.msgDate{
  font-size: smaller;
  font-weight: 500;
  margin: 0 1rem;
}
.msgAvatar{
    margin: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: small;
}
.msgAvatar img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.msgIn{
    background-color:#0000001a;
    padding: 8px;
    border: 1px solid;
    border-radius: 6px;
    margin: 0.25vw 1vw 0.25vw 0;
    align-self: center;
    transition: ease 0.25s;
    white-space: pre-line;
    position:relative;
    /* font-style: italic;
    font-weight: normal; */
}
.LastMsg:hover{
    border-color: #84775d;
}
.msgOut{
    background-color: #0000001a;
    padding: 8px;
    border: 1px solid;
    border-radius: 6px;
    margin: 0.5vw 0 0.25vw auto;
    align-self: center;
    white-space: pre-line;
}
.inputForm{
    display: flex;
    padding: 4px;
    flex-direction: column;
}
.inputForm textarea{
    resize: none;
    width: 100%;
    /*background-color: #2b2b2b;
    outline: 1px solid #737373;*/
    border: none;
    color: #fff;
    border-radius: 6px;
    font-size: large;
}
.cropper-view-box{
    border-radius: 50%;
}
.page_wrapper {
    display: flex;
    flex: 0 0 calc(100% - 241px);
    gap: 10px;
    margin: 0 auto;
    max-height: calc(100vh - 5rem);
}
.page_landscape{
    flex: 1;
}
.MsgEdit{
    transition: ease 1s;
}
.msgEditWrapper {
    width: 100%;
}
@media only screen and (max-width: 600px) {
    /* For mobile phones: */
    .page_wrapper {
      flex: 1;
    }
    .inputForm{
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    flex-direction: column;
    z-index: 1;
    background-color: #181220da;
    }
    .MsgEdit{
        position:relative;
        background-color: #1e1333;
    }
    .msgEditWrapper{
        position: fixed !important;
        bottom: 25%;
        overflow-y: scroll;
        top: 10%;
        left: 0%;
        width: 90% !important;
        margin: auto 0;
        z-index: 100;
        justify-content: center;
        padding: 1rem;
    }
    .MsgEditMobileHelper{
        position: fixed;
        width: 100dvw;
        height: 100dvh;
        left: 0;
        top:0;
        overflow: hidden;
        z-index: 0;
        background-color: #0000005d;
    }
  }
.panel {
    flex-grow: 1;
    flex-basis: auto;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #7f7f7f;
    padding: 0.5em;
    background-color: #7f7f7f36;
    flex: 1;
    overflow-y: scroll;
}
.ContactAvatar:hover{
    animation: ripple 1.2s infinite ease-in-out;
    border: 1px solid #1e3518;
    content: "";
}

@keyframes ripple {
    0% {
      transform: scale(1.0);
      opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
      transform: scale(1.0);
      opacity: 1;
    }
}

.sidebar_wrapper{

}
.SnackBar .MuiPaper-root{
    background-color: #36313d;
}
.navtop_wrapper{
    width: 100%;
}
.swipeArea{
    top:5rem !important;
    height: calc(80% - 5rem) !important;
}
.navtop {
    display: flex;
    background: linear-gradient(135deg, #121212 0%, #1e1e2e 30%, #2a2537 60%, #36313d 100%);
    background-size: cover;
    height: 5rem;
}
.navbar-logo img{
    height: 4rem;
    margin: 0.3rem;
}
@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .navbar-logo img{
      display: none;
    }
    .navtop{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 2;
        height: 4rem;
    }
    .navtop .account-block {
        margin: auto 1em auto auto;
        color: #ccc;
    }
  }
.navtop a:link{
    color: #ccc;
}
.navbar-nav{
    display: flex;
    list-style-type: none;
}
.navbar-nav li{
    margin:1em;
}
.navbar-toggler{
    width: 60px;
    height: 60px;
    display: flex;
}
.navbar-toggler-icon{
    background-image: url(/imgs/Trigramme2630.svg);
    width: 20px;
    height: 20px;
    margin: auto;
}
.header_com{
    margin: auto auto auto 1rem;
}
.header_com p{
    display: flex;
}
.header_com a{
    color: rgb(158, 158, 158);
    text-decoration: none;
}
.header_com a:visited{
    color: rgb(158, 158, 158);
    text-decoration: none;
}
.navbar-nav li a {
    text-decoration: none;
    font-weight: 600;
}
.navbar-nav li a:link {
    color: rgb(158, 158, 158);
    text-decoration: none;
}
.navbar-nav li a:visited {
    color: rgb(158, 158, 158);
    text-decoration: none;
}
.navbar-nav li a:link + a:hover {
    color: #fff;
    font-weight: bolder;
}  
.navbar-nav li a:link + a:active {
    color: rgb(182, 182, 182);
    text-decoration: none;
}
.navtop .account-block{
    margin: auto 1rem;
    display: flex;
    background-color: #a8a8a80d;
    flex-direction: column;
    align-items: center;
    color: #ccc;
    border-radius: 0.5rem;
}

.navtop .account-block a:link{
    color:#ccc;
}
.navtop .account-block a:visited{
    color:#ccc;
}
.navtop .account-block li a:link{
    color:#ccc !important;
    text-decoration: none;
}
.layout {
    position: relative;
    display: table;
    min-width: 1024px;
    width: 100%;
    height: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    background: #fff;
    background-color: rgb(255, 255, 255);
}
h2{
    margin-left: 1em;
}
.account_page{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.account_info{
    display: flex;
    width: 50%;
    margin: auto;
    flex-direction: column;
}
.rightMobilePanel{
    background-color: #6f5e3fa1;
    height: 100%;
}
@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .account_info{
        margin: 0.4rem;
        width: auto;
    }
    .ava_info{
        flex-direction: column;
        margin-bottom: 1rem;
    }

  }
.layout_row {
    display: table-row;
    width: 100%;
    height: 1px;
}
.layout_row_navbar {
    position: static;
    z-index: 500;
    box-sizing: border-box;
    height: 68px;
    border-bottom: 1px solid #aaa;
    background: #fff;
}
.layout_row_body {
    height: auto;
    left: 20%;
    float: left;
}
.layout_cell {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 32px;
    min-width: 1024px;
    max-width: 1164px;
}
.layout_cell_body {
    padding-top: 20px;
    padding-bottom: 60px;
}
body.nv .main-navbar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 68px;
    box-sizing: border-box;
}
body.nv .main-navbar_section_left {
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
}
body.nv .main-navbar_section {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
.logo-wrapper {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-right: 25px;
    padding: 0.5em;
}

.header-ico-button {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-left: 25px;
    background-color: transparent;

    border-style: none;

    color: #000;
    outline: none;

    padding: .375rem;
}
.twtr-icon{
    fill: #1da1f2;
}
.git-icon{
    fill: #24292f;
}
.dark .git-icon{
    fill: #1da1f2;
}
.linked-icon{
    fill: #24292f;
}
.dark .linked-icon{
    fill: #1da1f2;
}
.logo {
    width: 120px;
    height: 17px;
    color: #444851;
    vertical-align: middle;
}
.nav-links {
    -js-display: flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-links_item-link {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    box-sizing: border-box;
    height: 67px;
    color: #838a92;
    letter-spacing: .3px;
    font-weight: 700;
    font-size: 14px;
    font-family: Arial,'Helvetica Neue',Helvetica,sans-serif;
    line-height: 67px;
}
.nav-links_item-link:hover {
    color: #5096b1;
    text-decoration: none;
}
.nav-links_item-link-selected
{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    box-sizing: border-box;
    height: 67px;
    color: #838a92;
    letter-spacing: .3px;
    font-weight: 700;
    font-size: 14px;
    font-family: Arial,'Helvetica Neue',Helvetica,sans-serif;
    line-height: 67px;
    border-bottom: 3px solid #6b96ff;
}
.nav-links_item {
    -ms-flex-align: center;
    align-items: center;
    padding-left: 14px;
    padding-right: 14px;
    z-index: 1000;
}
.nav-links_item:hover {
    background-color: #83838333;
    transition: ease 0.3s;
    /*! border-radius: 6px; */
}
.fonts-loaded .nav-links_item-link {
    font-weight: 500;
    font-family: 'Fira Sans',sans-serif;
}
.nav-toggle-theme {
    margin-left: auto;
    display: flex;
    flex-flow: row;
}
.nav-toggle-theme .caption{
    margin: auto;
}
/*Menu*/
.main-desktop{
    width:100%;
    cellspacing:10;
    cellpadding:10;
    border:0;
}
.menu_left{
    background-color: #EDEDED;
    width: 120px;
    margin: 4px;
    float:left;
    font-weight: 500;
    font-family: 'Fira Sans',sans-serif;
}
.menu_links{
margin: 12px 0 24px 12px;
padding: 0;
list-style: none;
position: absolute;
width: 120px;
top: 57px;
left: 191px;
background-color: #e6e6e6;
display:none;
}
.menu_links:hover{
    display:block;
}
ul#navbar-links.nav-links > .nav-links_item:hover > .menu_links {
    display: block;
}
.menu_link_item
{
    align-items: center;
    margin-right: 18px;
    border-bottom: 1px #cbcbcb solid;
    margin-left: 4px;
}
.menu_link_item_caption {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    box-sizing: border-box;
    height: 32px;
    color: #4e4e4e;
    letter-spacing: .3px;
    font-weight: 700;
    font-size: 14px;
    font-family: Arial,'Helvetica Neue',Helvetica,sans-serif;
    line-height: 32px;
}
.menu_link_item_caption:hover {
    color: #799999;
    text-decoration: none;
}

/* Custom elements */
.nswitch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 1em;
  }
  
  /* Hide default HTML checkbox */
  .nswitch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .nslider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
  }
  
  .nslider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #777;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
  }
  
  input:checked + .nslider {
    background-color: #555;
  }
  
  input:focus + .nslider {
    box-shadow: 0 0 1px #222;
  }
  
  input:checked + .nslider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  .item-img {
    background-image:url(images/nAssistant.webp);
    width: 300px;
    height: 200px;
    background-size: cover;
   }
   .item-block .dark{
    background-color: #222;
   }
   .dark .item-block:hover {
    background-color: #171717;
    border:#333 solid 1px;
   }
   .item-block {
    display: flex;
    flex-direction: row;
    border: 1px #ccc solid;
    border-radius: 1em;
    padding: 0.5em;
    transition: ease 0.2s;
    margin-top: 1em;
   }
   .dark .item-header{
    color:#aaa;
   }
   .item-header {
    font-weight: 700;
    font-size: 2em;
    padding: 0.2em;
    text-align: end;
    width: auto;
    margin-right: 2em;
    border-bottom: 1px #444 solid;
    margin-left: 2em;
    color: #555;
   }
   .item-desc-wrapper {
    display: flex;
    flex-flow: column;
    width: 100%;
    justify-content: space-between;
    color:#aaa;
   }
   .item-block:hover{
    background-color: #efefefef;
    border:#333 solid 1px;
   }
   .dark .item-desc-wrapper:link{
    color:#aaa;
   }
   .dark .item-desc-wrapper:visited{
    color:#aaa;
   }
   .item-desc-wrapper:link{
    color:#aaa;
   }
   .item-desc-wrapper:visited{
    color:#aaa;
   }
   .dark .item-desc{
    color: #aaa;
   }
   .item-desc {
    text-align: right;
    padding: 1em;
    color: #555;
   }   

   .item-req {
    text-align: right;
    padding: 0.5em;
    border-top: 1px #444 solid;
    margin-left: 1em;
   }
/* NEW Code*/
   .dropzone {
    position: absolute;
    display: flex;
    flex-direction: column;
    z-index: 10;
    width: 100%;
    height: 100%;
    transition: .35s ease-out;
   }
   .dropzone div{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-width: 2px;
    border-radius: 2px;
    border-color: #eeeeee;
    border-style: dashed;
    background-color: #fafafaa8;
    color: #000;
    outline: none;
    transition: border .24s ease-in-out;
   }
   .dropzone div p{
    font-family: "Roboto","Helvetica","Arial",sans-serif;
    margin: auto;
   }
   .dropzone#dropzoneOut{
    opacity: 0.0;
   }
   .dropzone#dropzoneIn{
    opacity: 1.0;
   }
   
   

