html {
  height: 100%;
}

body {
  background-color: #ededed;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-content: stretch;
  font-family: 'Roboto', sans-serif;
}

.check-status {
  text-align: center;
  margin: 10px;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
}

#statusMessage {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}

#thanksButton {
  text-align: center;
}

.total-sum {
  text-align: left;
  font-size: 14px;
  line-height: 16px;
  color: #bdbdbd;
  font-weight: 400;
}

.attach-file {
  margin-top: 10px;
  margin-bottom: 10px;
}
.attach-file button {
    width: 80%;
  }

.messages {
  margin-bottom: 30px;
}

.top-menu {
  text-align: center;
  width: 100%;
  background-color: #ededed;
  z-index: 1030;
  height: 35px;
  box-shadow: 0 8px 6px -6px rgba(0,0,0,.15);
}
.top-menu-nav {
  display: flex;
  justify-content: center;
}
.top-menu-nav .exchange-rate {
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.top-menu .buttons button {
  height: 35px;
}

.top-menu.fixed {
  top: 0;
}

.logo {
  position: absolute;
  top: 10px;
  left: 20%;
  z-index: 1040;

}

.logo img {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out; /** Chrome & Safari **/
  -moz-transition: all 0.3s ease-in-out; /** Firefox **/
  -o-transition: all 0.3s ease-in-out; /** Opera **/
}

.logo.fixed {
  top: 2px;
}

.logo.fixed img{
  height: 30px;
}

.start-again {
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
}

.fixed {
  position: fixed;
}

.container {
  max-width: 550px;
  font-weight: 300;
}

.container-margin {
  margin-top: 35px;
}

.nav-message {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.5px;
  height: 40px;
  line-height: 40px;
}
.navbar {
  background-color: #ededed;
  font-size: 18px;
  font-weight: 600;
}

.choices {
  width: 250px;
  margin: 10px;
}

.options {
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  transition: opacity 1s ease-out;
}

.options.hidden {
  height: 0px;
  width: 0px;
  transition: opacity 1s ease-out;
}

.options.hidden > button {
  display: none;
  transition: opacity 1s ease-out;
}

.options .choices {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.transfer-method img {
  width: 90%;
  margin-left: 5%;
}

.transfer-method .reqs {
  white-space: pre-line;
  text-align: left;
  margin: 20px;
  font-size: 20px;
  font-weight: 500;
}

.transfer-method .instruction-link {
  text-align: center;
  margin: 20px;
}

.user-content img {
    width: 90%;
    margin-left: 5%;
}

.message-header {
  font-size: 16px;
  text-align: left;
  transition: 1.5s ease all;
}

.previous-message .message-header {
  font-size: 16px;
  transition: 1.5s ease all;
}

.user-message {
  /*margin-bottom: 25px;*/
  margin-left: auto;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 0;
  width: fit-content;
  display: flex;
  position: relative;
  font-size: 16px;
}

.user-content {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 4px;
  width: fit-content;
  background-color: #93ed66;
  margin-right: 15px;
}

.user-content::after {
    content: '';
    position: absolute;
    right: 38px; top: 10px;
    border: 10px solid transparent;
    border-left: 10px solid #93ed66;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

.sam-message {
  /*margin-bottom: 25px;*/
  margin-left: 0;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: auto;
  width: fit-content;
  display: flex;
  position: relative;
  transition: .5s ease all;
}

.message-content {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 4px;
  width: unset;
  background-color: #ffffff;
  margin-left: 15px;
  transition: 1.5s ease all;
}

.message-content::after {
    content: '';
    position: absolute;
    left: 38px; top: 10px;
    border: 10px solid transparent;
    border-right: 10px solid #ffffff;
}

.message-avatar {
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

.message-time {
  text-align: center;
  padding: 5px;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 12px;
  color: #8a8a8a;
  font-family: poppins, arial;
}

#sum {
  width: 150px;
}

#fio {
  width: 220px;
}
#cardNum {
  width: 220px;
}

.progress {
  width: 80%;
  margin-left: 10%;
  margin-bottom: 10px;
  height: 10px;
  display: none;
}

@media only screen and (max-width: 767px) {
  .logo {
    left: 10px;
  }
  .nav-message {
    text-align: end;
    margin-right: 10px;
    font-size: 17px;
  }
  .buttons {
    text-align: end;
  }
  .top-menu-nav {
    justify-content: flex-end;
  }
}