@import url(https://fonts.googleapis.com/css?family=Khula:700);
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
body {
  background-color: #f6f7f9;
  margin: 0;
  font-family: "Courier New", Courier, monospace;
}
p {
  margin-bottom: 0;
}
.container {
  /*max-width: 500px;*/
  margin: 70px auto 0 auto;
}
.feed {
  background-color: #bbb;
  padding: 3px;
  margin-top: 20px;
}
.post {
  background-color: #fff;
  margin: 5px;
}
.post .header {
  height: 60px;
}
.post .header > *,
.chats .chat .header > * {
  display: inline-block;
  vertical-align: middle;
}

.post .header img,
.chats .chat .header img {
  width: 50px;
  height: 50px;
  margin: 5px;
}
.post .header h2 {
  color: rgb(25, 26, 25);
  font-size: 24px;
  margin: 0 0 0 5px;
}
.post p.content {
  margin: 5px;
  padding: 5px;
  min-height: 50px;
}
form {
  padding-bottom: 20px;
}
form textarea {
  width: calc(100% - 20px);
  padding: 10px;
  border-color: #bbb;
}
form [type="submit"] {
  border: none;
  background-color: #6ca6fd;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  float: right;
}

.optimistic {
  -webkit-animation: scale-up 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: scale-up 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes scale-up {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale-up {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.chats {
  background-color: #eee;
  width: 200px;
  height: calc(100% - 50px);
  position: fixed;
  top: 50px;
  right: 0;
  border-left: 1px solid #c3c3c3;
}

.chats .chat {
  cursor: pointer;
}

.chats .chat .header > div {
  width: calc(100% - 65px);
  font-size: 16px;
  margin-left: 5px;
}

.chats .chat .header h2,
.chats .chat .header span {
  color: #333;
  font-size: 16px;
  margin: 0;
}

.chats .chat .header span {
  color: #333;
  font-size: 12px;
}

.chatWindow {
  width: 250px;
  float: right;
  background-color: #eee;
  height: 300px;
  margin-right: 10px;
  border-left: 1px solid #c3c3c3;
  border-right: 1px solid #c3c3c3;
}

.chatWindow .header {
  width: calc(100% - 10px);
  background-color: #c3c3c3;
  padding: 5px;
  height: 20px;
}

.chatWindow .header .close {
  float: right;
  border: none;
  background: none;
  color: #fff;
  cursor: pointer;
}

.chatWindow .header .close:focus {
  outline: none;
}

.chatWindow .messages {
  overflow-y: scroll;
  height: calc(100% - 50px);
}

.chatWindow .messages .message {
  width: 80%;
  border: 1px solid #4079f3;
  margin: 2px;
  border-radius: 5px;
  padding: 2px;
}

.chatWindow .messages .message.left {
  background-color: #78a3ff;
  color: #fff;
  float: left;
}

.chatWindow .messages .message.right {
  float: right;
  background-color: #e8f4fb;
  color: #000;
}

.openChats {
  position: fixed;
  right: 200px;
  width: calc(100% - 200px);
  bottom: 0;
}

.wrapper {
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
}

.chatWindow .input input {
  width: calc(100% - 4px);
  border: none;
  padding: 2px;
}

.chatWindow .input input:focus {
  outline: none;
}

.bouncer {
  margin: 20px auto;
  border-radius: 100%;
  -webkit-animation: bounce 1s infinite ease-in-out;
  animation: bounce 1s infinite ease-in-out;
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

.message {
  margin: 20px auto;
  padding: 5px;
  max-width: 400px;
}

.error.message {
  border-radius: 5px;
  background-color: #fff7f5;
  border: 1px solid #ff9566;
  width: 100%;
}

.dropdown .trigger > * {
  display: block;
  z-index: 1;
}

.dropdown .content {
  position: absolute;
}

.dropdown div {
  position: relative;
}

.post .header .dropdown {
  float: right;
  height: 100%;
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.post .header .dropdown:after {
  height: 100%;
  content: "";
  font-size: 0;
  vertical-align: middle;
  display: inline-block;
  box-sizing: border-box;
}

.post .header .dropdown .content {
  background-color: #fff;
  border: 1px solid #333;
  width: 150px;
  text-align: center;
  right: 0;
}

.dropdown button {
  width: 100%;
  border: none;
  border-bottom: 1px solid #333;
  padding: 3px;
}

.dropdown button:last-child {
  border-bottom: none;
}

.post .postForm {
  padding: 10px;
}

.post .postForm form {
  padding-bottom: 40px;
}

.topbar {
  width: 100%;
  left: 0;
  height: 50px;
  background-color: #6ca6fd;
  position: fixed;
  top: 0;
  z-index: 5;
}

.inner {
  width: 800px;
  height: 100%;
  margin: auto;
  position: relative;
}

.topbar .inner .search {
  height: calc(100% - 20px);
  padding: 10px;
  width: 50%;
  display: inline-block;
  vertical-align: middle;
}

.topbar .inner .search input {
  border: none;
  height: 100%;
  padding: 0;
  width: 100%;
  outline: none;
}

.topbar .inner .user {
  position: absolute;
  right: 0;
  display: inline-block;
  height: 100%;
}

.topbar .buttons {
  position: absolute;
  right: 5px;
  top: 5px;
  height: calc(100% - 10px);
}

.topbar .buttons > * {
  height: 100%;
  margin-right: 5px;
  border: none;
  border-radius: 5px;
}

.topbar .inner .user > * {
  display: inline-block;
  vertical-align: middle;
}

.topbar .inner .user img {
  height: calc(100% - 10px);
  margin: 5px;
  border: none;
  min-width: 40px;
  background-color: #ccc;
}

.topbar .error.message {
  margin: 0;
  display: inline-block;
}

.topbar .search .result {
  width: calc(100% - 2px);
  border: 1px solid #c3c3c3;
  margin-top: 1px;
}

.topbar .search .result .user {
  position: relative;
  height: 50px;
  width: 100%;
  background-color: #fff;
}

.signup {
  cursor: pointer;
}

.authModal {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
}

.authModal > div {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.authModal > div form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-width: 200px;
  border: 1px solid #333;
  background-color: #fff;
  padding: 20px;
}

.authModal > div form input {
  border: 1px solid #c3c3c3;
  padding: 5px;
}

.authModal > div form input[type="submit"] {
  width: 100px;
  float: right;
  margin-top: 10px;
}

button.cancelUpload {
  border: none;
  background-color: #6ca6fd;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  float: left;
  margin-top: 10px;
}

button.uploadAvatar {
  border: none;
  background-color: #6ca6fd;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  float: right;
  margin-top: 10px;
}

.drop-n-crop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.dropzone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  text-align: center;
  background: #fff;
  border: 2px dashed #ddd;
  padding: 8px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.dropzone.dropzone--active {
  background: #f2f2f2;
  border-color: #b1b1b1;
}
.dropzone-instructions {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.dropzone.dropzone--active .dropzone-instructions {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.dropzone-instructions--main {
  color: #322d35;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}
.dropzone-instructions--sub {
  color: #201c23;
  font-style: italic;
  margin-top: 4px;
}
.dropzone-validation {
  color: #ff3d00;
  font-size: 16px;
  font-weight: bold;
  margin-top: 32px;
}
.cropper-container {
  font-size: 0;
  line-height: 0;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  direction: ltr;
  -ms-touch-action: none;
  touch-action: none;
}
.cropper-container img {
  display: block;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  max-height: none !important;
  width: 100%;
  height: 100%;
  image-orientation: 0;
}
.cropper-wrap-box,
.cropper-canvas,
.cropper-drag-box,
.cropper-crop-box,
.cropper-modal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cropper-wrap-box {
  overflow: hidden;
}
.cropper-drag-box {
  opacity: 0;
  background-color: #fff;
}
.cropper-modal {
  opacity: 0.5;
  background-color: #000;
}
.cropper-view-box {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
}
.cropper-dashed {
  position: absolute;
  display: block;
  opacity: 0.5;
  border: 0 dashed #eee;
}
.cropper-dashed.dashed-h {
  top: 33.33333%;
  left: 0;
  width: 100%;
  height: 33.33333%;
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.cropper-dashed.dashed-v {
  top: 0;
  left: 33.33333%;
  width: 33.33333%;
  height: 100%;
  border-right-width: 1px;
  border-left-width: 1px;
}
.cropper-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  opacity: 0.75;
}
.cropper-center:before,
.cropper-center:after {
  position: absolute;
  display: block;
  content: " ";
  background-color: #eee;
}
.cropper-center:before {
  top: 0;
  left: -3px;
  width: 7px;
  height: 1px;
}
.cropper-center:after {
  top: -3px;
  left: 0;
  width: 1px;
  height: 7px;
}
.cropper-face,
.cropper-line,
.cropper-point {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}
.cropper-face {
  top: 0;
  left: 0;
  background-color: #fff;
}
.cropper-line {
  background-color: #39f;
}
.cropper-line.line-e {
  top: 0;
  right: -3px;
  width: 5px;
  cursor: e-resize;
}
.cropper-line.line-n {
  top: -3px;
  left: 0;
  height: 5px;
  cursor: n-resize;
}
.cropper-line.line-w {
  top: 0;
  left: -3px;
  width: 5px;
  cursor: w-resize;
}
.cropper-line.line-s {
  bottom: -3px;
  left: 0;
  height: 5px;
  cursor: s-resize;
}
.cropper-point {
  width: 5px;
  height: 5px;
  opacity: 0.75;
  background-color: #39f;
}
.cropper-point.point-e {
  top: 50%;
  right: -3px;
  margin-top: -3px;
  cursor: e-resize;
}
.cropper-point.point-n {
  top: -3px;
  left: 50%;
  margin-left: -3px;
  cursor: n-resize;
}
.cropper-point.point-w {
  top: 50%;
  left: -3px;
  margin-top: -3px;
  cursor: w-resize;
}
.cropper-point.point-s {
  bottom: -3px;
  left: 50%;
  margin-left: -3px;
  cursor: s-resize;
}
.cropper-point.point-ne {
  top: -3px;
  right: -3px;
  cursor: ne-resize;
}
.cropper-point.point-nw {
  top: -3px;
  left: -3px;
  cursor: nw-resize;
}
.cropper-point.point-sw {
  bottom: -3px;
  left: -3px;
  cursor: sw-resize;
}
.cropper-point.point-se {
  right: -3px;
  bottom: -3px;
  width: 20px;
  height: 20px;
  cursor: se-resize;
  opacity: 1;
}
@media (min-width: 768px) {
  .cropper-point.point-se {
    width: 15px;
    height: 15px;
  }
}
@media (min-width: 992px) {
  .cropper-point.point-se {
    width: 10px;
    height: 10px;
  }
}
@media (min-width: 1200px) {
  .cropper-point.point-se {
    width: 5px;
    height: 5px;
    opacity: 0.75;
  }
}
.cropper-point.point-se:before {
  position: absolute;
  right: -50%;
  bottom: -50%;
  display: block;
  width: 200%;
  height: 200%;
  content: " ";
  opacity: 0;
  background-color: #39f;
}
.cropper-invisible {
  opacity: 0;
}
.cropper-bg {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC");
}
.cropper-hide {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
}
.cropper-hidden {
  display: none !important;
}
.cropper-move {
  cursor: move;
}
.cropper-crop {
  cursor: crosshair;
}
.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}
.canastaCard {
  position: relative;
  left: 0;
  /*top:80px;*/
  display: inline-block;
  margin: 5px 0;
  padding: 7px;
  height: 70px;
  width: 50px;
  background-color: whitesmoke;
  border: 1px solid black;
  border-radius: 5px;
  box-shadow: 5px 10px #333;
}

.card {
  display: flex;
  height: 90px;
  width: 80px;
  /*background-color: #17141d;*/
  border-radius: 10px;
  box-shadow: -1rem 0 3rem #000;
  /*   margin-left: -50px; */
  transition: 0.4s ease-out;
  position: relative;
  left: 0px;

  /*top:80px;*/
  margin: 5px 0;
  padding: 7px;
  background-color: whitesmoke;
  border: 1px solid black;
  border-radius: 5px;
  box-shadow: 5px 10px #333;
}

.simpleCanastaCard {
  position: relative;
  left: 0;
  display: inline-block;
  height: 70px;
  width: 50px;
  background-color: whitesmoke;
  border: 1px solid black;
  border-radius: 5px;
  box-shadow: 5px 10px #333;
}

.simpleCard {
  height: 80px;
  width: 60px;
  border-radius: 10px;
  box-shadow: -1rem 0 3rem #000;
  transition: 0.4s ease-out;
  position: relative;
  left: 0px;
  background-color: whitesmoke;
  border: 1px solid black;
  border-radius: 5px;
  box-shadow: 5px 10px #333;
}

.card:not(:first-child) {
  margin-left: -50px;
}

.card:hover {
  transform: translateY(-20px);
  transition: 0.4s ease-out;
}

.cardSelected {
  /*TOLTO IL 12 02 2022 display: flex;*/
  height: 100px;
  width: 80px;
  background-color: yellow;
  border-radius: 10px;
  box-shadow: -1rem 0 3rem #000;
  /*   margin-left: -50px; */
  position: relative;
  left: 0px;
  transform: translateY(-20px);
  transition: 0.4s ease-out;
}

.card:hover ~ .card {
  position: relative;
  left: 50px;
  transition: 0.4s ease-out;
}

.card:hover .filledbar {
  width: 120px;
  transition: 0.4s ease-out;
}

.circle {
  position: absolute;
  top: 150px;
  left: calc(50% - 60px);
}

.stroke {
  stroke: white;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  transition: 0.6s ease-out;
}

svg {
  fill: #17141d;
  stroke-width: 2px;
}

.card:hover .stroke {
  stroke-dashoffset: 100;
  transition: 0.6s ease-out;
}

.card:active {
  background-color: red;
}

.title {
  color: white;
  font-weight: 300;
  position: absolute;
  left: 20px;
  top: 15px;
}

ol.olClass {
  /*
      display:inline-block;
      height: 400px;
      width: 1100px;
      border-width: 1px;
      border-color: black;
      */
  border-color: black;
  box-sizing: content-box;
}

ol li {
  /*
      display:inline-block;
      height: 200px;
      width: 145px;
      border-width: 1px;
      border-color: black;
      */

  /*position: absolute;*/
  left: 0;
  top: 80px;
  display: inline-block;

  /* tolto 12 02 2022 
      margin:  5px 0;
      padding:7px;
      */
  height: 90px;
  /*width: 70px;*/
  width: 50px;
  background-color: whitesmoke;
  /*border: 1px solid black;
      border-radius: 5px;*/
  box-shadow: 5px 10px #333;
}
.container2 {
  /*background-color: #100e17;*/
  /*position: absolute;*/
  /*height: 200px;*/
  height: auto;
  width: auto;
  bottom: 10px;
  left: calc(50% - 700px);
  padding-top: 0px;
  /*text-align: center;*/
  /*display: flex;*/
  overflow: visible;
}

.simple-inner-up {
  position: static;
  height: auto;
  /*width: 1100px;*/
  top: 0px;
  /*left: calc(50% - 700px);
      padding-top: 250px;*/
  word-wrap: break-word;
  overflow: visible;
}

.simple-inner {
  /*position: fixed;*/
  height: auto;
  /*width: 1100px;*/
  bottom: 10px;
  /*left: calc(50% - 700px);
      padding-top: 250px;*/
  word-wrap: break-word;
  overflow: visible;
  margin-top: 40px;
}

.presentation {
  /*position: absolute;*/
  height: auto;
  /*width: 1100px;*/
  bottom: 10px;
  /*left: calc(50% - 700px);
      padding-top: 250px;*/
  word-wrap: break-word;
}

a {
  display: block;
  width: 100;
  height: 80px;
}

ol a {
  /*display:inline-block;
    height: 200px;
    width: 145px;
    border-width: 1px;
    border-color: black;
  */
  left: 0;
  top: 0px;
  display: inline-block;
  /* tolto 12 02 2022 
      margin:  5px 0;
      padding:7px;
      */
  height: 90px;
  width: 70px;
  background-color: whitesmoke;
  /*border: 1px solid black;
      border-radius: 5px;*/
  box-shadow: 5px 10px #333;
}
ol.dropZone {
  /*
    display:inline-block;
    height: 200px;
    width: 145px;
    border-width: 1px;
    border-color: black;
    */

  /*position: absolute;*/
  left: 0;
  top: 0px;
  /*display: inline-block;*/
  margin: 0;
  padding: 0px;
  /*height: 90px;
    width: 100% !important;*/
  /*background-color: whitesmoke;
    border: 1px solid black;
    border-radius: 5px;
    box-shadow: 5px 10px #333;*/
}

.nav1 a {
  color: #5a5a5a;
  font-size: 11px;
  /* tolto 12 02 2022 
    font-weight: bold;
    */
  padding: 14px 10px;
  text-transform: uppercase;
}

div.nav1 {
  /*display: inline;*/
  /*margin-right: 70px;*/
  border: 1px solid black;
  z-index: 5;
  /*display: inline-block;*/
  display: inline;
  /*overflow: auto;*/
}

.nav1 ol {
  display: inline-block;
}

.nav1 div.card {
  display: inline-block;
  border: 1px solid black;
  /* display: inline-block;
    height: 150px;
    width: 100px;*/
}

div.nav1 {
  display: inline-block;
}

div.nav4 div {
  display: block;
  border: 1px solid black;
  /* display: inline-block;
    height: 150px;
    width: 100px;*/
}

div.nav4 div.card {
  display: inline-block;
  border: 1px solid black;
  /* display: inline-block;
    height: 150px;
    width: 100px;*/
}

div.nav4 {
  /*display: block;*/
  display: flex;
}

.nav1 ol li {
  display: inline-block;
  /*height: 150px;
    width: 100px;*/
  height: auto;
  width: auto;
}

div.nav2 {
  display: flex;
  display: inline-block;
  border: 1px solid black;
  width: 100%;
}

#first {
  float: left;
  /*display: inline-block;*/
  width: 150px;
  border: 1px solid black;
}

#second {
  /*float:left;*/
  /*display: inline-block;*/
  height: 100px;
  background-color: yellow;
}

#clear {
  clear: both;
}

#second a {
  color: #5a5a5a;
  font-size: 11px;
  font-weight: bold;
  /*padding: 14px 10px;*/
  text-transform: uppercase;
  /* padding-left: 200px;*/
  left: 0;
}

#second div {
  display: inline;
  /*margin-right: 30px;*/
  border: 1px solid black;
}

#second ol {
  /*display: inline-block;*/
}

#second div.card {
  display: inline-block;
  height: 90px;
  width: 70px;
}

#second ol li {
  display: inline-block;
  /*height: 150px;
    width: 100px;*/
}
li.dropZone {
  /*
    display:inline-block;
    height: 200px;
    width: 145px;
    border-width: 1px;
    border-color: black;
    */

  /*position: absolute;*/
  left: 0;
  top: 0px;
  display: inline-block;
  margin: 0;
  padding: 0px;
  height: 90px;
  /*width: 100% !important;*/
  min-width: 1000px;
  background-color: whitesmoke;
  border: 1px solid black;
  border-radius: 5px;
  box-shadow: 5px 10px #333;
}

.big {
  font-size: 2em;
  text-align: center;
  line-height: 40px;
  margin: auto;
  display: block;
}

.red {
  color: red;
}

.black {
  color: black;
}

.simpleTiny {
  display: block;
  font-size: 2.5em;
  line-height: 30px;
  vertical-align: top;
}

.tiny {
  display: block;
  font-size: 1.7em;
  line-height: 30px;
  vertical-align: top;
}

.big_tiny {
  top: 0;
  display: block;
  font-size: 0.8em;
  line-height: 10px;
  vertical-align: top;
  position: absolute;
  right: 0;
}

.title {
  color: white;
  font-weight: 300;
  position: absolute;
  left: 20px;
  top: 15px;
}
* {
  padding: 0;
  margin: 0;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Open Sans", Impact;
  background-color: #03c577;
}

div.containerGame {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #03c577;
}

div.containerGame .centerDiv {
  width: 100%;
}

div.leftDiv {
  margin-right: 20px;
}

div.rightDiv {
  display: flex;
  flex-direction: row;
  margin-left: 20px;
}

div.innerRightDiv {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

div.innerLeftDiv {
  display: flex;
  flex-direction: column;
}

.drag-drop-zone {
  /*position: absolute;*/
  min-height: 100px;
  min-width: 100px;
  /*min-width: 1000px;*/
  /*max-width: 2000px;*/
  /*padding: 2rem;*/
  bottom: 0px;
  /*text-align: center;*/
  background: #07f;
  border-radius: 0.5rem;
  box-shadow: 5px 5px 10px #c0c0c0;
  left: calc(50% - 700px);
  z-index: -1;
  padding-left: 20px;
}

.drag-drop-right-zone {
  width: 100%;
  min-height: 500px;
  background: #07f;
  border-radius: 0.5rem;
  box-shadow: 5px 5px 10px #c0c0c0;
  padding-left: 20px;
  top: 50px;
  right: 100px;
}

.banco-drag-drop-zone {
  min-height: 150px;
  min-width: 100px;
  bottom: 0px;
  background: #07f;
  z-index: -1;
}
.drag-drop-zone p {
  color: #fff;
}
.drag-drop-zone.inside-drag-area {
  opacity: 0.7;
}
.dropped-files li {
  color: #07f;
  padding: 3px;
  text-align: left;
  font-weight: bold;
}

.drag-drop-banco-zone {
  background: #07f;
  border-radius: 0.5rem;
  box-shadow: 5px 5px 10px #c0c0c0;
  left: calc(50% - 700px);
  z-index: -1;
}
.drag-drop-banco-zone p {
  color: #fff;
}
.drag-drop-banco-zone.inside-drag-banco-area {
  opacity: 0.7;
}

.nav11 {
  position: relative;
  left: 0;
  top: 0px;
  display: inline-block;
  margin: 5px 0;
  padding: 0px;
  height: 70px;
  width: 50px;
  background-color: whitesmoke;
  border: 1px solid black;
  border-radius: 5px;
  box-shadow: 5px 10px #333;
}

.hiddenCard {
  position: relative;
  /*top:80px;*/
  display: inline-block;
  /*margin:  5px 0;*/
  /*padding: 7px;*/
  height: 50px;
  width: 30px;
  /*background-color: whitesmoke;*/
  border: 1px solid black;
  border-radius: 5px;
  box-shadow: 5px 10px #333;
}

.hiddenRightCard {
  height: 30px;
  width: 50px;
  background-color: whitesmoke;
  border: 1px solid black;
  border-radius: 5px;
  box-shadow: 5px 10px #333;
}

ol.olClass li {
  display: inline-block;
}

img.imgClass {
  padding-top: 20px;
}

.hidden {
  opacity: 0;
}

.area {
  text-align: right;
  font-size: 3.5em;
  color: red;
  letter-spacing: -7px;
  font-weight: 700;
  text-transform: uppercase;
  animation: blur 0.75s ease-out infinite;
  text-shadow: 0px 0px 5px #fff, 0px 0px 7px #fff;
  display: inline;
  float: right;
  margin-right: 200px;
}

div.playerAnimation {
  animation: blur 0.75s ease-out infinite;
  text-shadow: 0px 0px 5px #fff, 0px 0px 7px #fff;
  display: inline;
}

div.playerAnimation {
  background: none;
  border: 0;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 2px #f45e61;
  color: red;
  font-size: inherit;
  font-weight: 700;
  margin: 1em;
  padding: 1em 2em;
  text-align: center;
  text-transform: capitalize;
  vertical-align: middle;
}
.playerAnimation {
  overflow: hidden;
  position: relative;
}
.playerAnimation::before,
.playerAnimation::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  border: 5px solid transparent;
  width: 0;
  height: 0;
}
.playerAnimation::before {
  top: 0;
  left: 0;
  border-top-color: #60daaa;
  border-right-color: #60daaa;
  animation: border 2s infinite;
}
.playerAnimation::after {
  bottom: 0;
  right: 0;
  animation: border 2s 1s infinite, borderColor 2s 1s infinite;
}

@keyframes border {
  0% {
    width: 0;
    height: 0;
  }
  25% {
    width: 100%;
    height: 0;
  }
  50% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes borderColor {
  0% {
    border-bottom-color: #60daaa;
    border-left-color: #60daaa;
  }
  50% {
    border-bottom-color: #60daaa;
    border-left-color: #60daaa;
  }
  51% {
    border-bottom-color: transparent;
    border-left-color: transparent;
  }
  100% {
    border-bottom-color: transparent;
    border-left-color: transparent;
  }
}

div.userInfo {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

div.userStyle {
  text-align: center;
  font-size: xx-large;
  font-size: 20px;
  text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff,
    1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
}

div.inlineElement {
  display: flex;
}

div.infoArea {
  display: flex;
  float: right;
  margin-left: auto;
}

.ripple {
  background-color: white;
  animation: pulse 0.75s ease-out infinite;
  padding: 10px;
}

.rippleColumn {
  display: flex;
  background-color: white;
  flex-direction: column;
  border: 10px red solid;
  animation: pulse 0.75s ease-out infinite;
  /*animation: blur .75s ease-out infinite;*/
  padding: 10px;
}

.rippleRow {
  display: flex;
  background-color: white;
  border: 10px red solid;
  animation: pulse 0.75s ease-out infinite;
  /*animation: blur .75s ease-out infinite;*/
  padding: 10px;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

@keyframes blur {
  from {
    text-shadow: 0px 0px 10px #fff, 0px 0px 10px #fff, 0px 0px 25px #fff,
      0px 0px 25px #fff, 0px 0px 25px #fff, 0px 0px 25px #fff, 0px 0px 25px #fff,
      0px 0px 25px #fff, 0px 0px 50px #fff, 0px 0px 50px #fff,
      0px 0px 50px #7b96b8, 0px 0px 150px #7b96b8, 0px 10px 100px #7b96b8,
      0px 10px 100px #7b96b8, 0px 10px 100px #7b96b8, 0px 10px 100px #7b96b8,
      0px -10px 100px #7b96b8, 0px -10px 100px #7b96b8;
  }
}

button.startGame {
  border: none;
  color: black;
  padding: 10px;
  border-radius: 5px;
  font-size: 18px;
  margin: 0 20px;
}

button.endGame {
  border: none;
  color: black;
  padding: 10px;
  border-radius: 5px;
  font-size: 18px;
  margin: 0 20px;
  float: right;
}

button.ordinamento {
  border: none;
  color: black;
  padding: 10px;
  border-radius: 5px;
  font-size: 18px;
  margin: 0 20px;
}
