.world{
  color: #140c1dd7;
  -webkit-animation:spin 10s linear infinite;
  animation:spin 10s linear infinite;
}

@-webkit-keyframes spin {
  100% { -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    transform:rotate(360deg);
  }
}

/* horizontal scrolling */

.exchange_container {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 2px;
  font-family: 'Asap Condensed', sans-serif !important;
  margin-top: -8px;
}

/* Hide scrollbar for Chrome, Safari and Opera */

.exchange_container::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE and Edge */

.exchange_container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.coins {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  flex-shrink: 0;
  cursor: pointer;
  margin: 4px;
  font-family: 'Asap Condensed', sans-serif !important;
  font-weight: normal;
  font-size: large;
  border-radius: 4px;
  overflow: hidden;
}

@media screen and (max-width: 480px){
  .coins {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    flex-shrink: 0;
    cursor: pointer;
    margin: 4px;
    font-family: 'Asap Condensed', sans-serif !important;
    font-weight: normal;
    font-size: large;
    border-radius: 4px;
    overflow: hidden;
  }
}

.marquee {
  width: 100%;
  line-height: 50px;
  background-color:rgb(43, 49, 57);
  color: white;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
}

.marquee div{
  display: inline-block;
  padding-left: 100%;
  -webkit-animation: marquee 100s linear infinite;
          animation: marquee 100s linear infinite;
}

@-webkit-keyframes marquee {
  0%   { transform: translate(0, 0);
  }

  100% { transform: translate(-100%, 0);
  }
}

@keyframes marquee {
  0%   { transform: translate(0, 0);
  }

  100% { transform: translate(-100%, 0);
  }
}

.marquee2 {
  width: 100%;
  line-height: 50px;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
}

.marquee2 div{
  display: inline-block;
  padding-left: 100%;
  -webkit-animation: marquee 100s linear infinite;
          animation: marquee 100s linear infinite;
}

@-webkit-keyframes marquee2 {
  0%   { transform: translate(0, 0);
  }

  100% { transform: translate(-100%, 0);
  }
}

@keyframes marquee2 {
  0%   { transform: translate(0, 0);
  }

  100% { transform: translate(-100%, 0);
  }
}

.converter-widget{
  background-color: red !important;
}

.converter-widget div{
  width: 450px !important;
}

#comment_dialog{
  width: 50%;
  height: 80%;
}

@media screen and (max-width: 480px) {
  #comment_dialog{
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.my_message{
  padding: 8px;
  border-radius: 15px;
  border: 2px solid rgb(243, 6, 116);
}

.their_message{
  padding: 8px;
  border-radius: 15px;
  border: 2px solid rgb(85, 5, 95);
}

.my_message_span{
  padding: 8px;
  border-radius: 15px;
  border: 2px solid rgb(243, 6, 116);
}

.their_message_span{
  padding: 8px;
  border-radius: 15px;
  border: 2px solid rgb(85, 5, 95);
  height: auto !important;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.messages{
  margin-top: 40px !important;
  color: rgb(65, 63, 63);
}

#text_box_container{
  position: relative;
  height: 50px;
  border-radius: 10px;
  width: 100%;
}

#message_container{
  height: 300px;
  overflow: auto;
  padding-top: 50px;
  padding-bottom: 150px;
}

#text_content{
  width: 70%;
  height: 70px;
  outline: none !important;
  padding: 10px;
  line-height: 1.5;
  border-radius: 5px;
  border: 2px solid #e9ecef;
}

input:focus, textarea:focus, select:focus{
  outline: none;
}

#submit_message{
  transform: translate(30px, -20px);
}

#close_chat{
  position: fixed;
  z-index: 50;
  transform: translate(-17px, -68px);
  font-size: 40px !important;
  color: rgb(255, 1, 77);
  cursor: pointer;
}

#close_chat:hover{
  color: rgb(141, 2, 2);
}

@-webkit-keyframes notify {
  from {
    color: rgb(255, 0, 21);
  }

  to {
    color: grey;
  }
}

@keyframes notify {
  from {
    color: rgb(255, 0, 21);
  }

  to {
    color: grey;
  }
}

.notification-bell{
  color: grey;
  -webkit-animation-name: notify;
          animation-name: notify;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 1;
          animation-delay: 1;
  animation-direction: alternate-reverse;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  /* color: #161036d8; */
}


