
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  margin:0;
  padding:0;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  background-color: ffffff;
  background: linear-gradient(
    -225deg,
    rgba(44, 216, 213, 0.3) 0%,
    rgba(197, 193, 255, 0.3) 56%,
    rgba(255, 186, 195, 0.3) 100%
  );

}


/* main window */
#header{
  background-color:#ccddee;
  height:36;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  width:100%;
  z-index:10;
}


#main_window{
  top:0;
  right:0;
  width:100%;
  height:calc(100% - 82px);
}


#task_management {
  display: flex;
  width:100%;
  margin: 36 0;
  justify-content: space-evenly;
}


#footer {
  display:flex;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #ccddee;
  height: 16;
  justify-content: flex-end;
  align-items: center;
  z-index:10;
}

#main_content{
  display: flex;
  flex-direction: row;
  width:100%;
  margin: 0 0;
  height:calc(100% - 52px);
}

#main_setting{
  height: 100%;
  width:20%;
  padding:2rem
}

dev.settingWrapper{
  margin:8rem 0 0 0;
  width:100%;
  display:flex;
  flex-direction: column;
  justify-content: center;
}

div.settingRows{
  display: inline-block;
  width: 100%;
  margin:1rem 0rem;
}

#mainResult{
  padding:2rem;
  width: 80%;
  overflow-y: scroll;
}

.mainInput{
  height:24;
  color: #000;
}

.resultCols{
  width: 100%;
  display: flex;
  flex-direction: row;
}

.resultRows {
  display: inline-block;
  width: 60%;
  margin:2rem 0rem;
}

.resultTxtArea{
  height:12em;
  color: #000;
}

.requestTxtArea{
  height:calc(100% - 30.4px - 4rem);
  width:100%;
  color: #000;
}

.additionalRequests{
  width: 40%;
  margin:2rem 0rem;
  display:flex;
  padding:0 2rem;
  align-content: flex-end;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-end;
}




/* Popup CSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 50; /*set as your site*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}

.modalWrapper {
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 90%;
  height: 90%;
  padding: 8px 16px;
  background-color: #282828;
  box-shadow:
    inset -0.1em -0.1em 0.2em #101010,
    -0.09em -0.09em 0.2em #8da0b6;
}

.closeModal {
  position: absolute;
  top: 0rem;
  right: 2rem;
  cursor: pointer;
}

.modalContents {
  position:flex;
  height:90%;
  padding:0 16;
}


/* button */
.btn,
a.btn,
button.btn {
  width: 98;
  max-height: 3.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.5rem 0rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}


a.btn-border {
  border: 2px solid #666;
  border-radius: 0;
  background: #fff;
}

a.btn-border:hover {
  color: #ddd;
  background: #666;
}

::-webkit-scrollbar {
  border-radius: 10px;
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: #b6b6b6;
  border-radius: 10px;
}
::-webkit-scrollbar-corner {
    background-color: rgba(0, 0, 0, 0);
}


input{
  color:#fff;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  outline: none;
  border-radius:0;
  margin:2 0;
  border-bottom: 2px solid #8da0b6;
}

input:focus{
    border-bottom-color: #3671B5;
}

textarea{
  resize: none;
  color:#fff;
  width: 100%;
  height: calc(100% - 24px);
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #8da0b6;
  outline: none;
  border-radius:0;
  margin:2;
  padding:2;
}

.loadingWrapper {
  display:none;
  z-index:2047;
  background-color: black;
  opacity: 0.6;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}

.loading{
  z-index:2048;
  width:100px;
  height:100px;
  position:fixed;
  border-radius:150px;
  border:15px solid #fff;
  border-top-color:rgba(0,0,0,0.3);
  box-sizing:border-box;
  position:absolute;
  top:calc(50% - 50px);
  left:calc(50% - 50px);
  animation:circle 1s linear infinite;
  -webkit-animation:circle 1s linear infinite;
}
@keyframes circle{
  0%{transform:rotate(0deg)}
  100%{transform:rotate(360deg)}
}
@-webkit-keyframes circle{
  0%{-webkit-transform:rotate(0deg)}
  100%{-webkit-transform:rotate(360deg)}
}