.chat {
  z-index: 100;
  width: 245px;
  height: 278px;
  display: none;
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  position: fixed;
  right: 23px;
  bottom: 180px;
  padding: 13px 0 0 13px;
}

.chat_show {
    display: block;
}

.chat__select {
    height: 189px;
}

.close {
    position: absolute;
    font-style: normal;
    font-weight: normal;
    font-size: 17.4545px;
    line-height: 21px;
    top: 12px;
    right: 22px;
    cursor: pointer;
    color: #585858;
}

.chat__cap {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 17px;
    line-height: 20px;

    color: #000000;
}

.chat__item {
    margin-top: 17px;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 17px;
    line-height: 20px;
    color: #3E8BFF;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.chat__item img {
    margin-right: 14px;
}

.chat__desc {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;

    color: #8E8E8E;
    width: 190px;
    margin-bottom: 20px;
}

.button-chat {
    width: 212px;
    height: 56px;
    background: #0A64EC;
    box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    line-height: 16px;
    border: none;
}

.chat input {
    width: 212px;
    height: 33px;
    padding-left: 5px;
    background: #F5F5F5;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-bottom: 9px;
}
.chat input::placeholder {
    font-size: 14px;
  }
.chat textarea {
    width: 212px;
    height: 70px;
    padding-left: 5px;
    padding-top: 3px;
    background: #F5F5F5;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-bottom: 9px;
}
.chat textarea::placeholder {
    font-size: 14px;
  }

.complete {
    width: 100%;
    display: none;
}

.complete_show {
    display: block;
}

.complete img {

    display: block;
    margin: 0 auto;
    margin-top: 50px;
}

.complete__desc {
    margin-top: 20px;
    text-align: center;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 12.775px;
    line-height: 15px;
    text-align: center;
    width: 219px;
    color: #8E8E8E;

}

.complete__line {
    width: 154px;
    height: 2px;

    color: black;
    margin: 0 auto;

    margin-top: 20px;
}

.chat__btn {
    position: fixed;
    right: 10px;
    bottom: 91px;
    width: 178px;
    height: 66px;

    background: #0A64EC;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 20px;

    color: #FFFFFF;
}

.chat__btn img {
    margin-right: 20px;
}


@media screen and (min-width:1200px) {
  .chat{
      right: 23px;
  }
  .chat__btn {
      position: fixed;
      right: 90px;
      z-index: 99999999;
  }

}
