:root {
  --mcRed: rgba(212, 43, 30, 1);
  --mcYello: rgba(254, 198, 48, 1);
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto Flex', sans-serif;
  /*background-image: url(../pics/burger7_1.jpg);*/
  background-color: white;
  background-size: 100%;
  background-repeat: repeat;
}

.background {
  display: flex;
  align-items: center;
  flex-flow: column;
  height: 100%;
}

#wrapper {
  width: 90%;
  max-width: 700px;
  min-width: 500px;
  background-color: var(--mcYello);
  border-radius: 30px;
  position: relative;
  top: 0;
  margin: 50px 0;
  box-shadow: rgba(0, 0, 0, 1) 0 10px 50px;
  padding: 30px 0 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}

#header {
  caret-color: transparent;
  /* text line removal */
  width: 100%;
  border-radius: 25px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

h1 {
  color: var(--mcRed);
  text-align: center;
  font-size: 30px;
  width: 100%;
}

#wrapper form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  caret-color: transparent;
  /* text line removal */
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* select color removal */
}

.itemLine {
  margin: 10px 0;
  display: flex;
  justify-content: center;
}


.checkboxInput {
  display: none;
}

.botSizeSelect input {
  display: none;
}

.checkboxImage {
  border-radius: 30px;
  width: 200px;
  height: 80px;
  background-color: black;
  color: var(--mcYello);
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  transition: background-color 0.2s ease-in;
  position: relative;
  z-index: 4;
}

.checkboxImage:hover {
  cursor: pointer;
  background-color: rgba(55, 5, 0, 1);
}

.checkboxContainer {
  margin: 10px 15px;
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  /* text line removal */
  caret-color: transparent;
  /* select color removal */
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
}

.sizeSelect {
  margin-top: -80px;
  border-radius: 30px;
  width: 200px;
  height: 80px;
  background-color: rgba(55, 5, 0, 1);
  color: var(--mcYello);
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  transition: height 0.2s ease-in, background-color 0.2s ease-in, box-shadow 0.2s ease-out;
  /* text line removal */
  caret-color: transparent;
  /* select color removal */
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.countSelect {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: margin 0.2s ease-in;
  margin-top: 30px;
  height: 30px;
  padding: 0px;
}

.countNumber {
  width: 60px;
  display: inline-flex;
  justify-content: center;
}

.countArrow {
  height: 60%;
  background: var(--mcYello);
  border-radius: 20px;
  padding: 5px;
  padding-left: 10px;
  z-index: 3;
}

.countArrow,
.radioMark,
.radioSize,
.infoIcon:hover {
  cursor: pointer;
}

.botSizeSelect {
  display: flex;
  width: 100%;
  transition: margin 0.2s ease-in;
  justify-content: center;
  margin-top: -37px;
}

.radioSize {
  margin-top: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 50px;
}

.radioMark {
  height: 30px;
  width: 60px;
  background: rgba(255, 255, 255, 0.44);
  margin-top: -80px;
  z-index: 2;
  border-radius: 20px;
  margin-bottom: 100px;
  transition: margin-right 0.2s ease;
}

.checkboxContainer .infoIcon {
  height: 20px;
  width: 120px;
  background-color: var(--mcYello);
  border-radius: 15px;
  margin: -90px 0 20px;
  z-index: 2;
  text-align: center;
}

.checkboxContainer .infoIcon img {
  height: 30px;
  margin-top: -5px;
}

.submitButton {
  display: grid;
  place-items: center;
  width: 280px;
  height: 60px;
  background-color: var(--mcRed);
  color: var(--mcYello);
  font-weight: bold;
  font-size: 25px;
  border-radius: 26px;
}

.submitButton input {
  display: none;
}

label:hover {
  cursor: pointer;
}

.footer {
  border-radius: 30px;
  width: 100%;
  height: 40px;
  background-color: var(--mcYello);
  text-align: center;
}

#copyrightContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row;
  height: 40px;
  font-size: 9px;
}

#copyrightMap, #socialMediaIcons:hover {
  cursor: pointer;
}

#copyrightMap {
  border-radius: 15px;
  width: 21px;
  height: 21px;
  margin-left: 3px;
  overflow: hidden;
}

.sweetAlertSocials {
  display: flex;
  flex-flow: row;
  width: 40%;
}

#swalContainer {
  display: flex;
  flex-flow: column;
  align-items: center;
}

.swalText {
  display: flex;
  width: 100%;
  justify-content: left;
  align-items: center;
  padding-left: 20px;
}

.sidebar {
  z-index: 6;
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateX(50%) translateY(-50%) rotate(-90deg);
  height: 50px;
  width: 100px;
  background-color: var(--mcYello);
  border-radius: 15px;
  transition: height 0.5s ease, width 0.3s ease, transform 0.5s ease;
  display: flex;
  flex-flow: column;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 5px 20px 10px rgba(0, 0, 0, 0.5);
}

.expandSidebar {
  caret-color: transparent;
  display: grid;
  place-items: center;
  border-radius: 15px;
  height: 40px;
  width: 100%;
}

.expandImg {
  transition: 1s ease;
  height: 100%;
  transform: rotate(90deg);
  margin-top: 8px;
}

.rotateExpandImg {
  transform: rotate(-90deg);
  margin-top: -20px;
}

.expandSidebar:hover {
  cursor: pointer;
}

.chatboxContainer {
  display: flex;
  flex-flow: column;
  width: 90%;
  height: 80%;
  background-color: rgba(134, 134, 134, 0.42);
  border-radius: 15px;
  overflow: hidden;
}

.chatboxHeader {
  height: 10%;
  background-color: rgba(147, 147, 147, 0.42);
  width: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  text-align: center;
  display: flex;
  flex-flow: row;
  align-items: center;
}

.chatbotProfile {
  display: flex;
  flex-flow: row;
  align-items: center;
}

.chatbotAvatar {
  width: 20px;
  margin: 0 5px;
  display: grid;
  place-items: center;
}

.chatbotStatus {
  background-color: var(--mcRed);
  height: 10px;
  width: 10px;
  border-radius: 5px;
  margin: 0 10px;
}

.messageContainer {
  width: 100%;
  height: 80%;
  overflow-y: scroll;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.messageContainer::-webkit-scrollbar {
  display: none;
}

.userMessageBox {
  display: flex;
  justify-content: flex-end;
  margin: 3px 5px;
}

.userMessageData {
  text-align: right;
  max-width: 70%;
  width: fit-content;
  padding: 4px 8px;
  border-radius: 10px;
  border-bottom-right-radius: 2px;
  background-color: rgba(254, 198, 48, 0.7);
  word-wrap: break-word;
  /* IE 5.5-7 */
  white-space: -moz-pre-wrap;
  /* Firefox 1.0-2.0 */
  white-space: pre-wrap;
  /* current browsers */
  max-width: 70%;
  box-shadow: 1px 2px 4px 0.3px;
}

.staffMessageBox {
  display: flex;
  justify-content: flex-start;
  margin: 3px 5px;
  word-wrap: break-word;
  /* IE 5.5-7 */
  white-space: -moz-pre-wrap;
  /* Firefox 1.0-2.0 */
  white-space: pre-wrap;
  /* current browsers */
}

.staffMessageData {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 10px;
  border-bottom-left-radius: 2px;
  background-color: rgba(212, 43, 30, 0.6);
  max-width: 70%;
  box-shadow: -2px 2px 4px 0.3px;
}

.messageSendBox {
  height: 10%;
  background-color: rgba(147, 147, 147, 0.42);
  width: 100%;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  display: grid;
  place-items: center;
}

.messageSendBox input {
  padding: 4px 9px;
  width: 87%;
  background-color: var(--mcYello);
  border: 0;
  outline: none;
  border-radius: 10px;
}

.sidebarFooter {
  position: absolute;
  bottom: 5px;
  width: 100%;
  height: 9%;
  display: flex;
  flex-flow: row;
}

.iconBox {
  width: 25%;
  height: 100%;
  display: grid;
  place-items: center;
}

.iconBox img {
  width: 40%;
}

.iconBox :hover {
  cursor: pointer;
}

.expandSidebarContainerHeight {
  height: 500px;
}

.expandSidebarContainerWidth {
  width: 300px;
}

.expandSidebarContainerTranslate {
  transform: translateX(-20px) translateY(-50%) rotate(0deg);
}

.clickToggleExpand {
  transition: background-color 0.2s ease-in, height 0.2s ease-out, box-shadow 0.2s ease;
  height: 200px;
  background-color: var(--mcRed);
  box-shadow: rgba(0, 0, 0, 0.7) 0px 0px 10px;
}

.clickToggleTitle {
  background-color: var(--mcRed);
}

.clickToggleTitle:hover {
  background-color: var(--mcRed);
}

.moveRadioLeft {
  margin-right: 100px;
}

.moveRadioMiddle {
  margin-right: 0px;
}

.moveRadioRight {
  margin-right: -100px;
}