@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');@import url(helper.css);
/*@import url(header.css);*/
:root {
  --whiteColor: rgb(255, 255, 255);
  --bgColor: #F4F4F4;
  --mainColor: #658DFF;

  --yellow: rgb(255, 229, 101);
  --yellow60: #FFEFA9;
  --gray: #D7D7D7;
  --deepGray: #6D8295;
  --gray: #f4f4f4;
  --deepGray: #ECECEC;
  --paddingFeedback: 50px;
  --red: #CE2B2F;
  --deepRed: #b82428;

  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: 'Ubuntu', cursive!important;
  font-family: 'Ubuntu', sans-serif;
  transition-duration: 500ms!important;
}
* {
  margin: 0;
  padding: 0;
  transition-duration: 300ms;
  box-sizing: border-box;
}
html, body {
  font-family: sans-serif;
  background-color: var(--whiteColor);
  scroll-behavior: smooth;
  overflow-x: hidden; 
  color: var(--bgColor);
}
#mainContent {
  min-height: calc(100vh - 200px);
  width: 100vw;
}
#mainContentContainer {
  width: 1200px;
  margin: 35px auto;
}
.hoverBtn {
  transition-duration: 300ms;
}
.hoverBtn:hover {
  cursor: pointer;
  transform: scale(1.1);
}
.nst {
  -moz-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}
.btn {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  background-color: var(--deepRed);
  color: #fff;
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  padding: 8px 16px;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 30px;
  border: 0;
  -webkit-transition: -webkit-box-shadow .3s,background-color .3s;
  transition: box-shadow .3s,background-color .3s;
  -webkit-box-shadow: 0 7px 20px rgba(185,39,43,0);
  box-shadow: 0 7px 20px rgba(185,39,43,0);
  transition-duration: 800ms;
}
.btn:hover {
  cursor: pointer;
  background-color: var(--red);
  box-shadow: 0 0 10px var(--red);
}
.popup {
  position: absolute;
  top: -120px;
  left: -80px;
  width: 200px;
  min-height: 50px;
  border-radius: 15px;
  padding: 15px 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background-color: white;
  z-index: 999999999999;
  animation: showPopup 0.3s linear;
  display: flex;
  align-items: center;
  transition-duration: 300ms;
  border: 2px solid var(--yellow);
}
.popup:hover {
  cursor: pointer;
}
@keyframes showPopup {
  from {
    top: -50px;
    opacity: 0;
  }
  to {
    top: -120px;
    opacity: 1;
  }
}
.showElement {
  animation: showElementAnim 0.3s linear;
}
@keyframes showElementAnim {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hiddenElement {
  animation: hiddenElementAnim 0.3s linear;
}
@keyframes hiddenElementAnim {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
#appendContainer {
  border-radius: 0.3rem;
  border: 2px solid var(--red);
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.12);
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 5px;
}
#appendContent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
#appendContent select {
  width: 22%;
  margin-bottom: 3px;
}
#appendContent input {
  margin-bottom: 3px;
}
#filterContainer {
  border-radius: 0.3rem;
  border: 2px solid var(--red);
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.12);
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#filterContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
#filterContent > div {
  width: 110%;
  display: flex;
  justify-content: center;
} 
#filterContent > div:nth-child(1) {
  margin-bottom: 5px;
} 

select {
  padding: 1.5px 2px;
}
select, input {
  box-sizing: border-box;
  font-size: 1.3rem;
  width: 22%;
  border: none;
  border: 1px solid var(--red);
  outline: none;
  transition-duration: 300ms;
  padding: 3px;
  border-radius: 0.3rem;
  text-align: center;
  margin: 0 1px;
}
select {
  width: 17%;
}
input:focus {
  background-color: var(--gray);
}


