body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

h1 {
  text-align: center;
  margin: 24px 0;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 16px;
}

.prompt-container {
  align-items: center;
  margin-bottom: 16px;
}

#prompt {
  flex: 1;
  font-size: 16px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.generate-button {
  font-size: 22px;
  padding: 8px 16px;
  border: 1px black solid;
  border-radius: 4px;
  background-color: #4caf50;
  color: white;
  cursor: pointer;
  font-weight: bold;
  margin-top: 5px;
}
.input-field {
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 4px;
  margin-right: 6px;
}

.generate-button:hover {
  border: 1px #ff9838 solid;
}

#text div {
 padding: 3px;
}

.info-lable {
  font-size: 12px;
  margin-top: auto;
}
textarea {
  resize: none;
  width:100%;
}
.boxsizing-border {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.grid-container-3col {
  --grid-layout-gap: 10px;
  --grid-column-count: 3; 
  --grid-item-txt--min-width: 220px; 
  
  --gap-count: calc(var(--grid-column-count) - 1);
  --total-gap-width: calc(var(--gap-count) * var(--grid-layout-gap));
  --grid-item-txt--max-width: calc((100% - var(--total-gap-width)) / var(--grid-column-count));

  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max(var(--grid-item-txt--min-width), var(--grid-item-txt--max-width)), 1fr));
  grid-gap: var(--grid-layout-gap);
  line-height: 1em;
}

a:link, a:visited, a:active {
  text-decoration: none;
}

.info-lable:hover { text-decoration: underline; }
.info-lable:hover { text-decoration: underline; }
a:link .info-lable { color: blue; }

img.loading-img {
    width: auto;
}

.dropdown-check-list {
  display: inline-block;
  width: 100%;
  font-size: 20px;
}

.dropdown-check-list .anchor {
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding: 5px 50px 5px 10px;
  border: 1px solid #ccc;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  width: -webkit-fill-available;
}

.dropdown-check-list .anchor:after {
  position: absolute;
  content: "";
  border-left: 2px solid black;
  border-top: 2px solid black;
  padding: 5px;
  right: 10px;
  top: 20%;
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.state-down {
  display: flex;
}
.state-closes {
  display: none;
}

.favorite-icon, .favorite-heart-icon {
  height: 26px;
  width: 26px; 
}

img.favorite-heart-icon:hover {
  content: url(starselected.png);
}


#checkboxes {
  border: 1px #dadada solid;
  flex-wrap: wrap;
  padding: 7px;
  min-height: 20px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top: none;
  max-height: 220px;
  overflow-y: auto;
}

#checkboxes button {
  color: black;
  display: block;
  border-radius: 4px;
  padding: 6px;
  border: 1px #dadada solid;
  margin: 2px;
  font-size: 20px;
}

#checkboxes button:hover {
  border: 1px #ff9838 solid;
}

.hover-border:hover {
  border: 1px #ff9838 solid;
  transform: scale(1.03);
}

.grid-item-txt {
  border: 1px solid black;
  border-radius: 25px;
  display: flex;
  background-color: aliceblue;
  box-shadow: rgb(0 0 0 / 9%) 0 7px 10px 0, rgb(0 0 0 / 5%) 0 5px 3px 0;
  min-height: 50px;
  align-items: center;
}

.item-selected {
  background-color: #198f62;
}
.item-not-selected {
  background-color: transparent;
}

.favorite-count-container {
  display: block;
  background: #d23201;
  cursor: pointer;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  border-left: 2px solid black;
  padding: 7px;
}

.favorite-list {
  font-size: 16px;
  padding-top: 5px;
  display: flex;
}
.favorite-idears {
  min-height: 170px;
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(180deg);
  white-space: nowrap;
  display: block;
  margin-top: 7px;
  writing-mode: vertical-rl;
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.top-margin {
  margin-top: 20px;
}
.bottom-margin {
  margin-bottom: 20px;
}
.small-img {
  height: 20px;
  width: 20px;
}
.pointer-cursor {
  cursor : pointer;
}
.pointer-cursor:hover {
  background-color: #a8cae9;
}

.pop-out-container {
  font-size: 20px;
  position: fixed;
  z-index: 100001;
  display: flex;
  margin-top: -125px;
  top: 44%;
  bottom: 10px;
  background: white;
  box-shadow: rgb(0 0 0 / 35%) 0 6px 100px 0;
  border-radius: 4px;
  border: 1px solid #ccc;
  bottom: auto;
  max-height: -webkit-fill-available;
}

.close-icon {
  right: 30px;
  position: absolute;
  top: -23px;
  background: white;
  cursor: pointer;
  border-radius: 50%;
  padding: 5px;
  border: 1px black solid;
  z-index: 1000;
}

.favorite-count-container .favorite-icon {
  transition: transform .8s ease-in-out;
}

.rotate-y {
  transform: rotatey(360deg);
}

.allign-to-bottom {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.click-text {
  font-size: 22px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.float-right {
  display: flex;
  float: right;
}
@media (min-width: 992px)   {
  .float-right {
    margin-right: -36px;
  }
  .select-domain-popup {
    margin-left: -50px;
  }
}

@media (min-width: 768px) and (max-width: 991px)  {
  .float-right {
    margin-right: 4px;
  }
  .select-domain-popup {
    margin-left: -30px;
  }
}
@media (max-width: 767px)  {
  .float-right {
    margin-right: 14px;
  }
  .select-domain-popup {
    margin-left: -20px;
  }
}
.thin-border {
  border-radius: 4px;
  border: 1px solid #ccc;
}

.padding-medium {
  padding: 10px;
}

.select-domain-popup {
  font-size: 20px;
  position: fixed;
  z-index: 100002;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-top: 25px;
  top: 0px;
  background: white;
  box-shadow: rgb(0 0 0 / 65%) 0 16px 100px 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border: 1px solid #ccc;
  --left: 0px;
  bottom: 0px;
  --right: 0px;
  max-width: 960px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  width: -webkit-fill-available;
}
.scroll-aria {
  overflow:auto
}
.domain-check {
  display: flex;
  border-radius: 4px;
  padding: 5px 10px 5px 10px;
  border: 1px solid #ccc;
  font-size: 12px;
  flex-wrap: wrap;
}
.green-align-right {
  color: blue;
  font-weight: bold;
  margin-left: auto; 
  margin-right: 0;
  font-size: 16px;
  white-space: nowrap;
}

.large-font-align-right {
  font-weight: bold;
  font-size: 26px;
  margin-left: auto;
  margin-right: 0;
}

.center-text {
  text-align: center;
  line-height: 1.4em;
}
::-webkit-scrollbar {
  height: 7px;
  width: 7px;
}
::-webkit-scrollbar-thumb {
  background-color: #d1d1d1;
  border-radius: 20px;
}
::-webkit-scrollbar-track {
  background-color: #fff;
}
.get-hosting-items {
  height: 100%;
  display: flex;
  flex-flow: column;
}
.offer-field {
  padding: 15px;
  background-color: antiquewhite;
  border-radius: 10px;
  display: flex;
}
.select-domain-popup img {
  display: unset;
  width: unset;
} 

.generate-button:disabled {
  background-color: gray;
}

.ai-text {
  background-color: lightblue;
}
.user-message {
  justify-content: flex-end;
}
.user-text {
  background-color: #ccf5ce;
}
.message-bubble {
  display: flex;
  align-items: flex-start;
  position: relative;
  line-height: 20px;
  border-radius: 20px;
  word-wrap: break-word;
  white-space: pre-wrap;
  max-width: 100%;
  padding: 0 13px;
  margin-top: 14px;
}

.conversation {
  overflow-y: auto;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  min-height: 310px;
}
.chatbot-text {
  color: #333333;
  font-size: 1.1em;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
}
.message-container {
  background: #ffffff;
  /* width: 100%; */
  display: flex;
  /* align-items: center; */
  min-height: 86px;
}
.input-field-chat {
  flex: 1;
  height: 60px;
  border: 1px solid #eef1f5;
  border-radius: 4px;
  padding: 0 10px;
  font-size: 14px;
  transition: border-color 0.3s;
  background: #ffffff;
  color: #333333;
  border: none;
  font-size: 1em;
  min-width: 100px;
}

.close-chat {
  right: 5px;
  position: absolute;
  top: 5px;
  background: #f5f5f5;
  cursor: pointer;
  border-radius: 50%;
  padding: 5px;
  border: 1px #e5e5e5 solid;
  z-index: 1000;
  height: 28px;
  width: 28px;
  text-align: center;
}

.open-chat {
  position: fixed;
  bottom: 10px;
  background: #d23201;
  cursor: pointer;
  border-radius: 50%;
  border: 2px black solid;
  z-index: 1000;
  height: 64px;
  width: 64px;
  text-align: center;
  margin-left: -43px;
}

.chatbot {
  background-color: #f5f5f5;
  border: 1px solid #eef1f5;
  border-radius: 4px;
  font-size: 20px;
  position: fixed;
  z-index: 100002;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
  top: 0px;
  box-shadow: rgb(0 0 0 / 65%) 0 16px 100px 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border: 1px solid #ccc;
  /* left: 0px; */
  /* bottom: 0px; */
  /* --right: 0px; */
  max-width: 960px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  width: -webkit-fill-available;
  margin-left: -10;
  max-height: -webkit-fill-available;

}
.repply-button {
  /* border: 1px black solid; */
  /* border-radius: 4px; */
  /* background-color: #4caf50; */
  /* color: white; */
  /* cursor: pointer; */
  /* font-weight: bold; */
  /* min-height: 50px; */
  /* min-width: 130px; */
  /* display: inline-block; */
  /* padding: 10px 20px; */
  /* font-size: 18px; */
  /* font-weight: bold; */
  /* text-transform: uppercase; */
  /* text-align: center; */
  /* color: #fff; */
  /* background-color: #007bff; */
  /* border: none; */
  /* border-radius: 4px; */
  /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); */
  /* transition: all 0.3s ease-in-out; */
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background-color: #f76c4f;
  border: none;
  border-radius: 4px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.1s ease-in-out;
  margin: 12px;
}

button.repply-button:hover, button.repply-button:focus {
  background-color: #ee543a;
  transform: scale(1.03);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
  outline: none;
  cursor: pointer;
}

.writing-dots {
   width: 56px;
   height: 13.4px;
   background: radial-gradient(circle closest-side,#bee47d 90%,#0000) 0%   50%,
        radial-gradient(circle closest-side,#bee47d 90%,#0000) 50%  50%,
        radial-gradient(circle closest-side,#bee47d 90%,#0000) 100% 50%;
   background-size: calc(100%/3) 100%;
   background-repeat: no-repeat;
   animation: dots-zcf63l 1s infinite linear;
}

@keyframes dots-zcf63l {
   33% {
      background-size: calc(100%/3) 0%  ,calc(100%/3) 100%,calc(100%/3) 100%;
   }

   50% {
      background-size: calc(100%/3) 100%,calc(100%/3) 0%  ,calc(100%/3) 100%;
   }

   66% {
      background-size: calc(100%/3) 100%,calc(100%/3) 100%,calc(100%/3) 0%;
   }
}

.spinner {
  border: 6px #4caf50 dashed;
  border-radius: 50%;
  animation: spinner-zp9dbg 5s infinite linear;
  right: 0px;
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
}

.ai-avatar {
  height: 40px;
  width: 40px;
  margin: auto;
  position: absolute;
  display: block;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
}

@keyframes spinner-zp9dbg {
  to {
     transform: rotate(1turn);
  }
}
.zoom-in-out {
  animation: zoom-in-zoom-out 1s ease infinite;
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(1, 1);
  }
}

.bubble {
  position: relative;
  font-family: sans-serif;
  font-size: 22px;
  line-height: 24px;
  width: 170px;
  background: lightblue;
  border-radius: 40px;
  padding: 24px;
  text-align: center;
  color: #000;
  right: 180px;
  bottom: 100px;
}

.bubble-bottom-left:before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 12px solid transparent;
  border-right: 24px solid lightblue;
  border-top: 12px solid lightblue;
  border-bottom: 20px solid transparent;
  right: 32px;
  bottom: -24px;
}