/* DEFAULT SETTINGS */

*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
  }
  
  body {
    background: rgb(235, 77, 75);
    font-family: 'Poiret One', cursive;
  }
  
  ::selection {
    background: rgb(235, 77, 75);
    color: rgba(255, 255, 255,1.0);
  }
  
  a {
    color: rgba(255, 255, 255, 1.0);
  }
  
  /* DEFAULT SETTINGS */
  
  /* TO DO */
  
  .container {
    width: 95vw;
    height: 95vh;
    background: rgba(255, 255, 255,1.0);
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .text-container {
    width: calc(100% - 40px);
    height: auto;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  input[type=text] {
    /* width: 580px; */
    width: calc(100% - 80px);
    height: 40px;
    border-radius: 20px;
    border: none;
    background: rgba(236, 240, 241,1.0);
    display: block;
    margin: 15px 0;
    font-size: 21px;
    font-family: 'Poiret One', cursive;
    font-weight: 400;
    padding: 5px 15px;
    color: rgba(20, 22, 24,1.0);
    outline: none;
  }
  
  button {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    border: none;
    background: rgba(236, 240, 241,1.0);
    display: block;
    font-weight: 900;
    font-size: 10px;
    cursor: pointer;
    transition: 200ms ease-in-out;
    font-family: 'Poiret One', cursive;
    outline: none;
    color: rgba(125, 125, 125,1.0);
    -webkit-tap-highlight-color: transparent;
  }

  button:focus {
    outline: none!important;
  }
  
  button:hover {
    background: rgb(235, 77, 75);
    color: rgba(255, 255, 255,1.0);
  }
  
  .result-container {
    width: calc(100% - 40px);
    height: calc(100% - 85px);
    background: rgba(236, 240, 241,1.0);
    position: absolute;
    margin-left: 25px;
    margin-right: 25px;
    border-radius: 20px;
    overflow-y: scroll;
  }
  
  .result-container::-webkit-scrollbar {
    width: 7px;
    border-radius: 20px;
    background: white;
  }
  
  .result-container::-webkit-scrollbar-thumb {
    background: rgb(235, 77, 75);
    border-radius: 20px;
  }
  
  
  .result-container .note {
    width: calc(100% - 30px);
    height: auto;
    padding: 10px;
    background: rgba(255, 255, 255,1.0);
    color: rgba(20, 22, 24,1.0);
    transition: 300ms ease-in-out;
    border-radius: 20px;
    margin: 15px auto;
    animation: note-appears 0.5s ease-in-out;
  }
  
  @keyframes note-appears {
    from { transform: scale(0) }
    to { transform: scale(1) }
  }
  
  .note .btns {
    width: auto;
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .note .btns::before {
    content: '';
    width: 50px;
    height: 3px;
    position: absolute;
    transform: translateX(-55px);
    background: rgba(55, 55, 55, 0.5);  /*rgba(253, 121, 168,1.0);*/
  }
  
  
  .btn {
    width: 20px;
    height: 20px;
    background: rgba(55, 55, 55, 0.5);
    border-radius: 20px;
    margin-left: 10px;
    color: white;
    text-align: center;
    line-height: 20px;
    vertical-align: middle;
    cursor: pointer;
    transition: 200ms ease-in-out;
    font-size: 10px;
    -webkit-tap-highlight-color: transparent;
  }

  .btn:focus {
    outline: none!important;
  }
  
  .btn:hover {
    background: rgba(55, 55, 55, 0.8);
  }
  
  .no-notes {
    font-size: 30px;
    color: rgba(55, 55, 55, 0.4);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: 400ms ease-in-out;
  }
  /* TO DO */
  
  /* RESPONSIVE SETTINGS */
  
  @media screen and (max-width: 910px) {
    .container {
      width: calc(100% - 20px);
    }
  
    .text-container, .result-container {
      width: calc(100% - 40px);
    }
  
    .result-container {
      margin-left: 20px;
      margin-right: 20px;
    }
  }
  
  @media screen and (max-width: 700px) {
    .container {
      width: 100%;
      height: 100vh;
      border-radius: 0px;
    }
  }
  
  /* RESPONSIVE SETTINGS */