@import url("fonts.css");
@import url("login.css");
@import url("summary.css");
@import url("add_task.css");
@import url("signUp.css");
@import url("media_queries.css");

body,
* {
  font-family: 'Inter' !important;
}

#innerDialog,
#dialog,
#contactInfo {
  --animate-duration: 0.2s;
}

html {
  /*Main colors*/
  --main-color: #2a3647;
  --main-color-dark: #091931;
  /* --main-bg-color: #f0f0f0; */
  --main-bg-color: #f6f7f8;
  --primary-color: #29abe2;
  --success-color: #7ae229;
  --danger-color: #ff3d00;
  --warning-color: #ffa800;
  --menu-active: #091931;
  --menu-hover: #2a3d59;
  --progress-bar: #4589ff;

  /*Elemental colors*/
  --black: black;
  --white: white;
  --gray: #d1d1d1;
  --dark-gray: #eeeeee;

  /*Others colors*/
  --heat-wave: #ff7a00;
  --girls-night-out: #ff5eb3;
  --venetian-night: #6e52ff;
  --sugar-grape: #9327ff;
  --blue-bikini: #00bee8;
  --blue-martina: #1fd7c1;
  --peachy-pinky: #ff745e;
  --peahes-creme: #ffa35e;
  --blush-pink: #fc71ff;
  --forsythia: #ffc701;
  --c64Blue: #0038ff;
  --lemon-lime: #c3ff2b;
  --sunflower: #ffe62b;
  --tomato-frog: #ff4646;
  --brimstone: #ffbb2b;

  /*shadow*/
  --box-shadow-element: 0px 1px 2px 0px #00000040;
  --box-shadow-button: 0px 4px 4px 0px #00000040;
}

body {
  font-family: "Inter";
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--main-bg-color);
}

input::placeholder {
  color: var(--gray);
  font-weight: 400;

}

/*General class and id*/

.backArrow {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 152px;
  right: 64px;
  cursor: pointer;
  /* z-index: -1; */
}

.error-alert {
  color: var(--danger-color);
}

.succes-alert {
  color: var(--success-color);
}

.info-alert {
  color: var(--primary-color);
}

.subtasksPopup input[type="checkbox"] {
  display: none;
}

.subtasksPopup input[type="checkbox"]+label {
  display: block;
  min-height: 32px;
  cursor: pointer;
  background-image: url("../img/hook_unchecked.svg");
  background-repeat: no-repeat;
  background-position: 8px -3px;
  padding-left: 53px;
  font-size: 16px;
  line-height: 19.2px;
}

.subtasksPopup input[type="checkbox"]:checked+label {
  background-image: url("../img/hook_checked-black.svg");
}

.noscroll {
  overflow: hidden;
}

#main {
  flex: 1;
  margin-left: 232px;
}

h2 {
  font-family: "Inter";
  font-weight: 700;
  font-size: 61px;
  margin: 0;
}

h3 {
  font-family: "Inter";
  font-weight: 700;
  font-size: 27px;
  margin: 0;
}

.container {
  display: flex;
}

.button {
  color: var(--white);
  background-color: var(--main-color);
  border-radius: 10px;
  padding: 8px 16px;
  border: unset;
  font-size: 21px;
  cursor: pointer;
  transition: all 100ms ease-in-out;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.button:hover {
  background-color: var(--primary-color);
  box-shadow: var(--box-shadow-button);
}

/*SVG*/
.svgContainer {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.svgContainer:hover .svgLightBlue {
  fill: var(--primary-color);
}

.svgContainer:hover {
  color: var(--primary-color);
}

.svgContainerDarkblue,
.svgContainerButtonPrio {
  transform: scale(1);
  transition: all 125ms ease-in-out;
  cursor: pointer;
}

.svgContainerDarkblue:hover {
  background-color: var(--main-color);
  box-shadow: var(--box-shadow-button);
  transform: scale(1.03);
}

.svgContainerDarkblue:hover .svgWhite {
  fill: var(--white);
}

.svgContainerDarkblue:hover .svgDarkblue {
  fill: var(--main-color);
}

.svgContainerDarkblue:hover .svgStrokeDarkblue {
  stroke: var(--main-color);
}

.svgContainerDarkblue:hover span {
  color: var(--white);
}

.svgIcon {
  cursor: pointer;
}

.svgIcon:hover .svgIconStrokeLightBlue {
  stroke: var(--primary-color);
}

.svgContainer:hover .svgStrokeblue {
  stroke: var(--primary-color);
}

/*End SVG*/

.d-none {
  display: none !important;
}

#dialog {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 900;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 800;
}

#innerDialog,
.innerDialog {
  max-width: 800px;
  border-radius: 30px;
  height: fit-content !important;
  background-color: white;
  /* padding: 64px; */
  box-shadow: 0px 0px 4px 0px #0000001a;
  position: fixed;
  left: 0;
  right: 0;
  top: 8vh;
  bottom: 0;
  z-index: 800;
  margin: 8px auto 0;
}

#innerDialog h2 {
  font-size: 48px;
}

.closeDialog,
.closeDialogWhite {
  position: fixed;
  top: 24px;
  right: 24px;
  cursor: pointer;
  padding: 4px;
}

.closeDialog:hover {
  background-color: #eee;
  border-radius: 50%;
}

.closeDialogWhite {
  display: none;
}

/* Main Menu */

#menu {
  position: fixed;
  width: 232px;
  background-color: var(--main-color);
  color: var(--main-bg-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  height: 100vh;
  font-family: "Inter";
  font-size: 16px;
}

#menu a {
  color: var(--white);
  text-decoration: none;
  padding: 8px 48px;
}

#mainNav {
  /* flex: 1; */
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

#mainNav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 48px;
}

.active {
  background-color: var(--main-color-dark)
}

#mainNav a:hover {
  background-color: var(--menu-hover);
}

#footerNav {
  flex-direction: column;
  gap: 16px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

#footerNav a {
  padding: 8px 48px;
}

#footerNav a:hover {
  color: var(--primary-color);
}

.first-letter-uppercase::first-letter {
  text-transform: uppercase;
}

/*End*/

/* Header */
#header {
  background-color: var(--white);
  padding: 16px 64px;
  -webkit-box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header #headerMenu {
  /* opacity: 0; */
  position: absolute;
  right: 16px;
  top: 88px;
  bottom: 0;
  width: fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  background-color: var(--main-color);
  padding: 16px;
  border-radius: 20px 0px 20px 20px;
}

#header #headerMenu a {
  text-decoration: none;
  padding: 16px;
  color: #cdcdcd;
}

#header #headerMenu a:hover {
  background-color: var(--menu-hover);
}

h1 {
  font-family: "Inter";
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: black;
  margin: 0;
  padding: 16px 0;
}

.profile {
  border: 3px solid var(--main-color);
  border-radius: 100%;
  width: 48px;
  height: 48px;
  color: var(--primary-color);
  font-family: "Inter";
  font-weight: 400;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.headerIcons {
  display: flex;
  gap: 16px;
  align-items: center;

}

#header a {
  text-decoration: none;
  cursor: pointer;
}

.help {
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.help h4 {
  margin: 0;
  font-size: 20px;
}

.boardSections h3 {
  font-size: 20px;
  color: var(--main-color);
}

.boardHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.boardHeader .searchContainer {
  color: black;
  background-color: white;
  border-radius: 10px;
  padding: 8px 16px;
  border: 1px solid #ddd;
  font-size: 21px;
  display: flex;
}

.searchContainer img {
  cursor: pointer;
  margin-left: 8px;
}

.searchContainer img:hover {
  background-color: var(--main-bg-color);
  border-radius: 50%;
}

.boardHeader input {
  color: black;
  outline: none;
  border: unset;
  font-size: 21px;
}

.cleanButtonSearch{
  border-right: 1px solid #ddd;
  margin-left: 0 !important;
  padding-right: 8px;
}

.searchBox {
  display: flex;
  gap: 32px;
}

.boardSections {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.boardSections section {
  min-width: 252px;
  flex: 1;
}

.boardSections section header {
  display: flex;
  justify-content: space-between;
}

.boardSections section header img {
  cursor: pointer;
}

.boardHeader {
  display: flex;
  margin-bottom: 16px;
}

.taskCard {
  background-color: white;
  border-radius: 24px;
  -webkit-box-shadow: px 0px 10px 3px #00000014;
  box-shadow: 0px 0px 10px 3px #00000014;
  padding: 16px;
  margin: 16px 0;
  cursor: pointer;
  transition: all ease-in-out 125ms;
}

.taskCard:hover {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
  transform: translate(0, -5px) scale(1.03) rotate(8deg);
}

.emptyTaskCard {
  background-color: #e7e7e7;
  color: #a8a8a8;
  border-radius: 8px;
  border: 1px dashed #a8a8a8;
  padding: 16px;
  margin: 32px 0 16px 0;
  text-align: center;
}

.drag-area-highlight .emptyTaskCard {

  margin: 16px 0 16px 0;
}

.category {
  color: white;
  border-radius: 8px;
  padding: 4px 16px;
}

.categoryPopup {
  font-size: 23px;
  color: white;
  border-radius: 8px;
  padding: 4px 24px;
}

.userStory {
  background-color: var(--c64Blue);
}

.technicalTask {
  background-color: var(--blue-martina);
}

.taskTitle {
  font-weight: 700;
  font-size: 16px;
  margin: 16px 0;
}

.taskDesription {
  color: #a8a8a8;
}

.taskPopup {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
}

.taskPopupFooter {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.taskDesriptionPopup {
  color: black;
  font-size: 20px;
  max-height: 120px;
  overflow-y: auto;
}

.taskPopupLabel {
  display: inline-block;
  font-size: 20px;
  color: var(--main-color);
  width: 150px;
}

.taskCard .user {
  display: flex;
}

.profileSmall {
  border: 1px solid white;
  border-radius: 100%;
  width: 32px;
  height: 32px;
  color: white;
  font-family: "Inter";
  font-weight: 400;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  margin-right: -8px;
}

.taskCard footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.progress {
  background-color: var(--progress-bar);
  width: 128px;
  height: 8px;
  border-radius: 8px;
}

.progressContainer {
  border-radius: 8px;
  width: 128px;
  height: 8px;
  background-color: var(--main-bg-color);
}

.subtasks {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

/* End Board Page */

/* pop alert*/
.container-popUp.error {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0 0 0/20%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
}

.popUp {
  transform: translateY(1000px);
  transition: all 225ms ease-in-out;
}

.popUp p {
  margin: 8px 0;
  text-align: center;
}

.container-popUp.error .popUp {
  transform: translateY(0);
  width: 312px;
  height: 74px;
  border-radius: 16px;
  background-color: var(--main-color);
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.btn-disabled,
.btn-disabled:hover {
  background-color: var(--gray) !important;
  box-shadow: unset;
  border: unset;
  cursor: not-allowed;
}

/* end pop up alert*/