@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap);
/* general */
html {
  height: 100%;
  position: relative;
  overflow-x: hidden;
}
body {
  position: relative;
  height: 100%;
  color: #494949;
  background-color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  font-family: 'Open Sans', sans-serif;
  overflow-x: hidden;
  margin: 0;
}
.container {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
  z-index: 9;
}
canvas {
  display: none;
  z-index: 10 !important;
}
.step-btn {
  font-family: 'Open Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3797EF;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 900;
  width: 100%;
  height: 54px;
  border-radius: 5px;
  box-sizing: border-box;
  text-transform: capitalize;
}
.step-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px 23px;
  margin-top: 23px;
}
.step-buttons--second {
  grid-template-columns: 1fr;
}
/* Header */
.chat-header {
  border-bottom: 1px solid #A2A2A2;
  padding: 10px 0;
}
.chat-header__block {
  display: flex;
  align-items: center;
}
.chat-header__img {
  width: 50px;
  min-width: 50px;
  height: 50px;
}
.chat-header__img img {
  width: 100%;
  height: 100%;
}
.chat-header__text {
  margin-left: 11px;
}
.chat-header__text span {
  display: block;
}
.chat-header__text span.black {
  font-weight: 700;
  margin-bottom: 3px;
}
.chat-header__text span.grey {
  color: #A2A2A2;
}
/* Content */
.chat-layout {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.chat-layout--block {
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
}
.chat-content {
  padding: 20px 0 30px;
}
.chat-list__item {
  position: relative;
}
.chat-item__img {
  width: 30px;
  min-width: 30px;
  height: 30px;
  position: absolute;
  bottom: 0;
  left: -35px;
}
.chat-item__union {
  position: relative;
  margin-bottom: 24px;
}
.chat__item-text {
  background-color: #EFEFEF;
  border-radius: 20px 20px 20px 4px;
  padding: 22px 28px;
  line-height: 21px;
}
.chat__item-text .color {
  margin: 0 3px;
  text-transform: capitalize;
  font-weight: 700;
}
.chat__item-icons {
  position: absolute;
  left: 27px;
  bottom: -17px;
  border: 1px solid #FFFFFF;
  background-color: #EFEFEF;
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 7px 14px;
  cursor: pointer;
}
.chat__item-icons i {
  padding: 0 2px;
}
.chat-item__images a {
  max-width: 270px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.chat-item__images img {
  vertical-align: middle;
  width: 100%;
  border-radius: 2px;
  border: 1px solid #FFFFFF;
}
.chat-item__images img:first-child{
  border-top-left-radius: 4px;
}
.chat-item__images img:nth-child(2) {
  border-top-right-radius: 20px;
}
.chat-item__images img:nth-child(3) {
  border-bottom-left-radius: 20px;
}
.chat-item__images img:nth-child(4) {
  border-bottom-right-radius: 20px;
}
.chat-item__images i span {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px 2px 20px 2px;
  border: 1px solid #ffffff;
}
.chat-item__images i {
  position: relative;
}
.chat-item__images i img {
  border-bottom-right-radius: 20px;
}
/* Step */
.step-content {
  padding: 20px 0 30px;
  box-shadow: 0px -4px 10px 0px #0000006b;
  background-color: #EFEFEF;
  z-index: 20;
}
.step {
  display: none;
}
.step-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
.step-text {
  text-align: center;
}
@media (max-width: 768px) {
  body {
    font-size: 13px;
    line-height: 16px;
  }
  .step-content .container {
    padding: 0 30px;
  }
  .step-content {
    padding: 10px 0 20px;
  }
  .step-buttons {
    margin-top: 14px;
    grid-gap: 5px 19px;
  }
  .step-title {
    margin-bottom: 5px;
  }
  .step-btn {
    font-size: 13px;
    height: 44px;
  }
  .chat-header__img {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }
  .chat-item__union {
    margin-bottom: 17px;
  }
  .chat-content {
    padding: 20px 0 20px;
  }
  .chat__item-icons {
    padding: 2px 10px;
    left: 15px;
    bottom: -12px;
  }
  .chat__item-text {
    padding: 15px 21px 16px 14px;
    line-height: 18px;
  }
  .chat-header__text {
    margin-left: 20px;
  }
  .chat-item__images {
    max-width: 200px;
  }
}
