:root {
  --text: black;
  --background: #ffffff;
  --highlight: #038c78;
  --border: #777777;
  --border-hover: #333333;
  --textarea: #fafafa;
}

[data-theme="dark"] {
  --text: white;
  --background: #0d0f11;
}

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
pre,
summary,
body,
button,
textarea {
  font-family: "Karla", sans-serif;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: local('Helvetica Neue Medium'), local('Helvetica-Neue-Medium'),
      url('../fonts/HelveticaNeueCyr-Medium.woff2') format('woff2'),
      url('./fonts/HelveticaNeueCyr-Medium.woff') format('woff'),
      url('./fonts/HelveticaNeueCyr-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: local('Helvetica Neue Bold'), local('Helvetica-Neue-Bold'),
      url('../fonts/HelveticaNeueCyr-Bold.woff2') format('woff2'),
      url('../fonts/HelveticaNeueCyr-Bold.woff') format('woff'),
      url('../fonts/HelveticaNeueCyr-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: local('Helvetica Neue Italic'), local('Helvetica-Neue-Italic'),
      url('../fonts/HelveticaNeueCyr-Italic.woff2') format('woff2'),
      url('../fonts/HelveticaNeueCyr-Italic.woff') format('woff'),
      url('../fonts/HelveticaNeueCyr-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

.conversation .message span{
  font-family: 'Helvetica Neue';
}

body {
  background: var(--background);
  /*display: flex;
flex-direction: column;
justify-content: center;
align-items: center;*/
  /* height: 95vh; */
  /* width: 95vw; */
  margin: 0 auto;
  /* max-width: 600px; */
  color: var(--text);
}

body,
button,
textarea {
  /* font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; */
}

body,
button,
p,
a,
span {
  /* font-family: "Poppins", sans-serif; */
}

::-webkit-scrollbar {
  -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
  width:10px;
}

::-webkit-scrollbar-button:increment,.contenedor::-webkit-scrollbar-button {
  display: none;
} 

::-webkit-scrollbar:horizontal {
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #797979;
  border-radius: 20px;
  border: 2px solid #f1f2f3;
}

::-webkit-scrollbar-track {
  border-radius: 10px;  
}

.CodeMirror-line span {
  font-size: 20px;
}

.CodeMirror {
  font-family: inherit;
  font-size: 22px;
  padding: 18px;
  width: 100%;
  min-height: 300px;
  border-radius: 30px;
  box-shadow: 0 0 22px -15px rgb(0 0 0 / 75%);
}

button:focus,
summary:focus,
a:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--highlight);
}

/* Modal bootstrap Banner Publicitario */
.banner{
    display: none;
    z-index: 99999;
    position: fixed;
    width: 100%;
    bottom: 0;
    animation-duration: 1.5s;
    animation-name: slidein;
}

@keyframes slidein {
  from {
    opacity: 0;
  }

  to {
    opacity: 100;
  }
}

.modal{
  height: initial!important;
}

.modal-fullscreen{
  height: initial!important;
  position: fixed;
  bottom: 0px;
}

.modal-content{
  background-image: url("https://uploads-ssl.webflow.com/6154c800ad148e59aea3ceba/6262a8d9f951c476a00707ec_fondo-1%20(2).png");
  background-position: 50% 50%;
  background-size: cover;
}

.btn-close-white{
  font-size: 30px;
}

.btn-close{
  width: inherit;
  height: inherit;
}

.banner-contenido{
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  font-weight: 600;
}

.banner-img{
  width: 230px;
}

.h-20p{
  height: 20px!important;
  z-index: 99999;
}

.banner-btn{
  border-radius: 15px;
  background-color: #fc0;
  box-shadow: 7px 7px 8px 2px rgb(0 0 0 / 30%);
  text-align: center;
  display: inline-block;
  padding: 9px 15px;
  font-weight: 600;
}

.banner-btn a{
  font-size: 18px;
  color: #001a59;
  line-height: 28px;
  text-decoration: none;
}
/* End Modal bootstrap Banner Publicitario */

/* SpellCheck */

.CodeMirror .cm-spell-error { 
	background-image: url("https://raw.githubusercontent.com/jwulf/typojs-project/master/public/images/red-wavy-underline.gif");
	background-position: bottom;
	background-repeat: repeat-x;
}

#suggestBox {
  display:inline-block; 
  overflow:hidden;
  border:solid #444 1px;
  box-shadow: 5px 5px 5px #868686;
  background-color: white;
  border-radius: 20px;
  padding: 0px 0px 0px 20px;
  font-family: "Poppins", sans-serif!important;
  
}

#suggestBox > select {
  padding:10px; 
  padding-left: 0;
  margin:-5px -20px -5px -5px;
  border: none;
  
  
}

#suggestBox > select > option {
  padding-left: 1em;
  padding-right: 2em;
  font-size: 16px;
}

#suggestBox > select > option:hover {
  box-shadow: 0 0 10px 100px #4A8CF7 inset;
  color: white;
  
}

@media all and (max-width: 768px) { 
  #suggestBox > select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}




/* End SpellCheck*/

/* logo */

/* Tutorial inicio */

.logo {
  /* display: flex;
justify-content: center; */
  /* margin: 1em auto 0.5em auto; */
  text-decoration: none;
  color: var(--text);
  /* font-size: 115%; */
  transition: color 0.2s ease-out;
}

.logo {
  width: 20vw;
}

.display-none{
  display: none!important;
}

.d-block{
  display: block!important;
}

button.active {
  color: #660066!important;
  font-weight: 600;
}

.nav-link{
 color: #495057!important;
}
/* End Tutorial de inicio */

.emoji-content {
  padding: 0.5em;
}

#copy-whatsapp{
  background: #005e54;
}

.btn-emoji {
  border-radius: 15px;
  border: 1px solid #ccc;
  padding: 5px 10px;
  width: 130px;
  color: white;
  background-color: #0455b3;
}

.btn-emoji:hover {
  color: #ffcc00;
}

emoji-picker {
  z-index: 9999;
  position: absolute;
}

.logo:hover {
  color: var(--highlight);
}

/* a.logo img {
width: 100%;
} */

/* controls */

.controls {
  padding: 0.5em;
  transition: all 0.4s ease-out;
  width: 100%;
}

.control-btns {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.5em;
  border-bottom: 1px solid #e1e1e1;
  justify-content: space-between;
}

.more-fonts summary {
  margin: 0 0 12px 6px;
  cursor: pointer;
  border-radius: 2px;
}

.controls button {
  margin: 0.4em;
  width: 33px;
  height: 33px;
  cursor: pointer;
  background: inherit;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: background 0.2s ease-in;
  line-height: 0;
  margin-top: 5px;
  border-radius: 50% !important;
}

.controls button:hover {
  border-color: var(--border-hover);
}

.more-fonts button {
  padding: 0px;
}

/* textarea */

textarea {
  width: 100%;
  height: 294px;
  /* border: none; */
  border-radius: 30px;
  outline: none;
  background: var(--textarea);
  padding: 1em;
  font-size: 1.4em;
}

/* github buttons */

div.github {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.github span {
  margin: 0 2px;
}

/* buttons */
.large-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn {
  color: white;
  font-size: 1.1em;
  padding: 0.8em 1.1em;
  border-radius: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 134px; */
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin: 1.4em 0.5em 0 0.5em;
  border: none;
  outline: none;
  cursor: pointer;
}

.btn:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25), 0 6px 6px rgba(0, 0, 0, 0.22);
}

.btn svg {
  margin-right: 0.5em;
}

.tweet-button {
  background: #1da1f2;
}

.tweet-button:hover {
  background: #1a91da;
}

.copy-to-clipboard-button {
  background: #660066;
  color: white;
}

.copy-to-clipboard-button:hover {
  color: #ffcc00;
}

/* tooltips */

/* bubble */
.controls button:before,
.large-buttons button:before {
  content: attr(title);
  height: auto;
  width: auto;
  position: absolute;
  background: #4a4a4afa;
  border-radius: 4px;
  color: white;
  line-height: 30px;
  font-size: 1.1em;
  padding: 0 12px;
  transform: translate(0, -38px);
  transition: all 0.2s ease-out;
  pointer-events: none;
  opacity: 0;
}

/* triangle */
.controls button:after,
.large-buttons button:after {
  content: "";
  position: absolute;
  border-style: solid;
  border-color: #4a4a4afa transparent transparent transparent;
  transform: translate(0, -20px);
  transition: all 0.2s ease-out;
  pointer-events: none;
  opacity: 0;
}

.large-buttons button:before {
  font-size: 1em;
  transform: translateY(-52px);
}

.large-buttons button:after {
  transform: translateY(-34px);
}

.controls button:hover:before,
.large-buttons button:hover:before,
.controls button:hover:after,
.large-buttons button:hover:after {
  opacity: 1;
}

.circle {
  width: 20px;
  margin: 0px 10px;
  display: inline-block;
  position: relative;
  text-align: center;
  vertical-align: top;
}

.circle i {
  position: absolute;
  /* top: 7px; */
  left: 7px;
  text-align: center;
  font-size: 16px;
}

/**********************/

.emojionearea-standalone {
  float: right;
}

.divOutside {
  height: 20px;
  width: 20px;
  background-position: -1px -26px;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,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);
}
.emojionearea-button {
  opacity: 1 !important;
}

/**********************/

.circular-progress {
  /* margin-top: 60px; */
  position: relative;
  display: inline-block;
  width: 40px;
  /* height: 140px; */
  border-radius: 50%;
}

.circular-progress img {
  width: 20px;
}

.circular-progress svg {
  transform: rotate(270deg);
}
.circular-progress circle {
  stroke-width: 5;
  fill: none;
  stroke-linecap: round;
}
.circular-progress circle:nth-of-type(1) {
  stroke: #dee2e6;
}
.circular-progress circle:nth-of-type(2) {

  stroke-dasharray: 251.4285714286;
  /* stroke-dashoffset: 75.4285714286; */
}
.circular-progress .pct {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#slider {
  margin: 0 50px;
  width: 50%;
}
#slider::-moz-range-thumb {
  background-color: #d8503a;
}
#slider::-webkit-slider-thumb {
  background-color: #d8503a;
}
#slider::-ms-thumb {
  background-color: #d8503a;
}
#slider:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(216, 80, 58, 0.25);
}
#slider:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(216, 80, 58, 0.25);
}
#slider:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(216, 80, 58, 0.25);
}

@media all and (max-width: 425px) {
  .logo {
      width: 60vw;
      margin-top: 20px;
      margin: 1em auto 0.5em auto;
  }

  .controls button {
      margin: 0.2em;
      width: 25px;
      height: 25px;
  }

  .circle {
      width: auto;
      margin: 0px 10px;
  }

  .circle i {
      top: 14px;
      left: 18px;
      font-size: 35px;
  }

  .circular-progress {
      width: 60px;
  }

  .circular-progress i {
      font-size: 22px;
  }

  .banner-img{
    width: 180px;
  }

  .banner-title{
    font-size: 20px;
  }

  .banner-contenido{
    font-size: 15px;
    line-height: 20px;
  }
}
