/*
 * Boostrap Overrides  
 */
body {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

button:focus {
  outline: none !important;
  box-shadow: none !important;
}

p {
  margin-bottom: 0 !important;
}

/*
 * Classes
 */
.app-table {
  display: table;
}

.app-table-cell {
  display: table-cell;
  padding: 0;
}

.app-pos-mid {
  vertical-align: middle;
}

.text-center {
  text-align: center;
}

.chat-message-wrapper-left {
  /* Positioning */
  position: relative;
  margin-left: 1rem;
  /* Display & Box-Model */											
  display: block;
  width: 100%;
  padding-bottom: 1rem;
  /* Color */
  background-color: transparent;
  /* Text */
  /* Other */	  
}

.chat-message-wrapper-right {
  /* Positioning */
  position: relative;
  /* Display & Box-Model */											
  display: block;
  width: 100%;
  padding-bottom: 1rem;
  /* Color */
  background-color: transparent;
  /* Text */
  /* Other */	  
}

  .chat-message-wrapper-left > label {
    /* Positioning */
    position: relative;
    /* Display & Box-Model */											
    display: block;
    padding-bottom: 1rem;
    /* Color */
    background-color: transparent;
    /* Text */
    color: #44BEC7;
    font-size: 0.75rem;
    text-align: left;
    font-weight: bold;
    /* Other */	 
  }

  .chat-message-wrapper-right > label {
    /* Positioning */
    position: relative;
    /* Display & Box-Model */											
    display: block;
    margin-left: 18%;
    padding-bottom: 1rem;
    /* Color */
    background-color: transparent;
    /* Text */
    color: #44BEC7;
    font-size: 0.75rem;
    text-align: left;
    font-weight: bold;
    /* Other */	 
  }

  .chat-message-left {
    /* Positioning */
    position: relative;
    /* Display & Box-Model */											
    display: block;
    width: 80%;
    /* height: 5rem; */
    height: auto;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    padding: 1rem 0.12rem;
    /* Color */
    background-color: #FFFFFF;
    color: #2C4254;
    /* Text */
    font-size: 0.875rem;
    font-weight: 500;
    /* Other */														  	
  }

  .chat-message-right {
    /* Positioning */
    position: relative;
    left: 18%;
    /* Display & Box-Model */												
    display: block;
    width: 80%;
    /* height: 5rem; */
    height: auto;
    border: 1px solid #0084FF;
    border-radius: 5px;
    padding: 1rem 0.12rem;
    /* Color */
    background-color: #0084FF;
    color: #FFFFFF;
    /* Text */
    font-size: 0.875rem;
    font-weight: 500;
    /* Other */														  	
  }

  .chat-message-wrapper-cell {
      /* Positioning */
      /* Display & Box-Model */												
      height: 100%;
      width: 100%;
      border: none;
      /* Color */
      background-color: transparent;
      /* Text */
      /* Other */		  
    }

      .chat-message-wrapper-cell > span {
        /* Positioning */
        /* Display & Box-Model */
        display: inline-block;
        margin-left: 1rem;
        margin-right: 1rem;
        width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        /* Color */
        background-color: transparent;
        /* Text */
        text-align: left;
        /* Other */	      
      }

      .chat-message-wrapper-cell > span * {
        width: 100%;
        max-width: 100%;
      }

      .chat-message-wrapper-cell > span code {
        /* Color */
        color: yellow;
      }

html {
  font-size: 16px;
}

	body {
    /* Positioning */
		/* Display & Box-Model */
    height: 100vh;
    width: 100vw;
    box-sizing: border-box;
		/* Color */
		/* Text */
  }

    #appCurtain {
      /* Positioning */
      position: relative;
      /* Display & Box-Model */
      display: none;
      height: 100%;
      width: 100%;
      /* Color */
      /* Text */     
    }

      #appCurtainWrapperCell {
      /* Positioning */
      /* Display & Box-Model */
      height: 100%;
      width: 100%;
      /* Color */
      background-color: #000000;
      /* Text */      
      }

        #startChat {
          /* Positioning */
          /* Display & Box-Model */
          display: block;
          margin-left: auto;
          margin-right: auto;
          width: 30%;
          /* Color */
          /* Text */   
        }

    #appContainer {
      /* Positioning */
      position: relative;
      /* Display & Box-Model */
      display: none;
      height: 100%;
      /* Color */
      /* Text */  
    }

      #mainFrame {
        /* Positioning */
        /* Display & Box-Model */
        height: 100%;
        /* Color */
        /* Text */  
      }

        #headerSubFrame {
          margin-top: 1rem;
          margin-bottom: 1rem;
        }

          #logo {
            color: #2C4254;
            font-size: 2rem;
            height: 2rem;
            line-height: 2rem;
          }

          #saveChat {
            max-width: 8.2rem;
            margin-right: 0.75rem;
          }

        #chatFrame {
          /* Positioning */
          position: relative;
          margin-right: auto;
          margin-left: auto;
          /* Display & Box-Model */
          height: calc(100% - 6.75rem);
          /* Color */
          /* Text */
        }

          #chatWrapper {
            /* Positioning */
            position: relative;
            /* Display & Box-Model */
            height: 100%;
            /* Color */
            /* Text */ 
          }

            #messagesWrapper {
              /* Positioning */
              position: relative;
              /* Display & Box-Model */
              height: 80%;
              /* Color */
              background-color: #FCFCFA;
              /* Text */ 
              /* Other */
              overflow-y: scroll;
              overflow-x: hidden;
            }

            #inputWrapper {
              /* Positioning */
              position: relative;
              /* Display & Box-Model */
              height: 20%;
              /* Color */
              background-color: white;
              /* Text */       
            }

              label[for="inputMessage"] {
                /* Positioning */
                position: relative;
                /* Display & Box-Model */
                display: block;
                margin-top: 0.5rem;
                margin-bottom: 0.5rem;
                /* Color */
                color: #2C4254;
                /* Text */
                font-weight: bold;
                text-align: left;    
              }

              #inputMessage:focus {
                color: #2C4254;
                border: 0.25rem solid #2C4254 !important;
                box-shadow: none !important;
              }

        #footerFrame {
          /* Positioning */
          position: relative;
          bottom: 0;
          /* Display & Box-Model */
          margin-top: 1rem;
          margin-bottom: 1rem;
          /* Color */
          /* Text */
          font-size: 0.75rem;
        }

/* ----------- PHONES: MODE 1 ----------- */
@media screen and (max-width: 768px){
  /* 768px ~ 55rem with 14px root font-size, which is Bootstrap -md breakpoint. */  
  html {
    font-size: 14px;
  }
  
    #logo {
      font-size: 1.2rem;
      height: 1.2rem;
      line-height: 1.2rem;
    }
}