* {
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: large;
    /*overflow: hidden;*/
    margin: 0px;
    padding: 0px;;
}

html, body {
    height: 100%;
} 

.hidden {
    display: none;
}

.invisible {
    visibility: hidden;
}

#big-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
}

#big-logo img {
    display: block;
    height: 118px;
}


#top-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    /*
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    */
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 60%, rgba(255,255,255,0) 100%);

    z-index: 200;

}

#logo {
    position: fixed;
    top: 38px;
    left: 50px;
    z-index: 500;
}

/* Content */

#content {
    height: 100%;
    max-width: 940px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    margin: auto;
}

@media only screen and (max-width: 1116px) {
    #content {
      margin: auto 30px;
    }
  }





/* Buttons */
.setting-button {
    position: fixed;
    top: 28px;
    right: 38px;
    width: 48px;
    height: 48px;
    z-index: 500;
    border-radius: 50%;
    background-color: white;
    border: none;
    cursor: pointer;
    overflow: hidden;
    padding-top: 5px;
}

.new-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #3796D3;
    border: none;
    cursor: pointer;
    overflow: hidden;
    margin-right: 10px;
}

.send-button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: white;
    border: none;
    cursor: pointer;
    overflow: hidden;
    margin-left: -40px;
    margin-top: 8px;
    padding-left: 8px;
    padding-top: 4px;
}

.send-button:hover {
    background-color: #3797d323;
    transition: background-color 0.3s;
}

/* Nachrichten */
.content-messages {
    overflow-y: auto;
}


.msg {
    display: flex;
    width: 100%;
}

.profile-image {
    border: 1px solid #3796D3;
    width: 48px;
    height: 48px;   
    
}

.bot .profile-image {
    border-radius: 24px 0px 24px 24px;
}

.user .profile-image {
    border-radius: 0px 24px 24px 24px;
}

.msg .text {
    color: white;
    padding: 20px;
    min-height: 48px;
    width: 100%;
}

.bot .text {
    background: #167BB5;
    border-radius: 0px 24px 24px 24px;
    margin: 0px 58px 20px 10px;
}

.user .text {
    background: #3796D3;
    border-radius: 24px 0px 24px 24px;
    margin: 0px 10px 20px 58px;
}

/* Input */
#content-input {
    display: flex;
    margin-bottom: 30px;
    margin-top: 30px;
    margin-right: 58px;
}

#content-input .input-container {
    display: flex;
    width: 100%;
    background-color: white;
    border: 1px solid #3796D3;
    border-radius: 24px;
    transition: opacity 0.3s;
}

#ta-frame {
    margin: 0;
    width: 100%;
    height: 30px;
    margin: 8px 50px 5px 20px;
}

#content-input textarea {
    overflow: hidden;
    padding: 0;
    border:  0;
    outline: 0;
    width: 100%;
    font-size: 20px;
    resize: none;
}


/*Side Menü*/
.menu {
    overflow-x: hidden;
    position: relative;
    right: 0;
    background-color: white;
}
  
.menu-open {
    /*right: 388px;*/
}
  
.menu-open .menu-side {
    right: 0;
}

.menu-side,
.menu {
    -webkit-transition: right 300ms ease-in-out;
    -moz-transition: right 300ms ease-in-out;
    transition: right 300ms ease-in-out;
}

.menu-side {
    background-color: #167BB5;
    color: white;
    position: fixed;
    top: 0;
    right: -388px;
    width: 388px;
    height: 100%;
    margin: 0;
    padding: 0;
    z-index: 300;
}

.menu-container {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: -5px 0px 10px rgba(0, 0, 0, 0.4);
    
}

.menu-side .menu-settings {
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}

.menu-side .menu-option {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    margin: 30px;
}

.menu-option div {
    font-size: 20px;
    color: white;
}

.spacer {
    margin-top: 50px;
}

.menu-chat_option {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 30px;
    margin-top: 20px;
}

.menu-chat_option input {
    width: 20px;
    height: 20px;
}

.menu-chat_option label {
    font-size: 20px;
    color: white;
    margin-left: 10px;
}

.cell {
    flex: 1;
}

/* Setting Toggle Button */
.switchSmall2 {
    display: inline-block;
}
.switchSmall2 input {
    display: none;
}
.switchSmall2 small {
    display: inline-block;
    width: 38px;
    height: 15px;
    background: #455a64;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
}
.switchSmall2 small:before {
    content: "";
    position: absolute;
    width: 19px;
    height: 19px;
    background: #fff;
    border-radius: 50%;
    top: -2px;
    left: -1px;
    transition: .3s;
    box-shadow: -3px 0 3px rgba(0,0,0,0.25);
}
.switchSmall2 input:checked ~ small {
    background: lightgray;
    transition: .3s;
}
.switchSmall2 input:checked ~ small:before {
    transform: translate(20px, 0px);
    transition: .3s;
    box-shadow: 3px 0 3px rgba(0,0,0,0.25);
}


/* Menü Speichern Button */
.menu-side #save-settings {
    padding: 10px;
    border: 1px solid #3796D3;
    border-radius: 24px;
    margin: 0px 20px 30px 20px;
    font-size: 20px;
    color: #167BB5;
}

.menu-side #save-settings:hover {
    opacity: 0.8;
    cursor: pointer;
    transition: 0.3s;
}


/*Scrollbar*/

.scrollstyle::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: rgba(245, 245, 245, 0.4);
}

.scrollstyle::-webkit-scrollbar
{
	width: 6px;
	background-color: rgba(245, 245, 245, 0.4);
}

.scrollstyle::-webkit-scrollbar-thumb
{
	background-color: rgba(55, 150, 211, 0.4);
}



/* Waiting Animation */
.loading {
    margin-left: 60px;
}

.loading > div {
    width: 10px;
    height: 10px;
    background-color: #3796D3;

    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  }
  
  .loading .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
    background-color: #167BB5;
  }
  
  .loading .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
    background-color: #51b2ef;
  }
  
  @-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0) }
    40% { -webkit-transform: scale(1.0) }
  }
  
  @keyframes sk-bouncedelay {
    0%, 80%, 100% { 
      -webkit-transform: scale(0);
      transform: scale(0);
    } 40% { 
      -webkit-transform: scale(1.0);
      transform: scale(1.0);
    }
  }


/* Startscreen */
.start {
    background-color: #167BB5;
}

.end {
    background-color: white;
    transition: background-color 0.8s;
}


/* Kopiericon */
.text {
    position: relative;
}

.copy-image {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 10px;
  height: 10px;
  cursor: pointer;
}





  






  

  
  

