@import url(https://fonts.googleapis.com/earlyaccess/nanumgothic.css);
.recipe-container {
  display: flex;
  flex-direction: row;
  height: 100%;
}
.recipe-container .left {
  flex-basis: 300px;
  height: 100%;
}
.recipe-container .right {
  flex: 1;
  margin-left: 10px;
}

.recipe-ingredient .grid-3-row {
  grid-template-rows: 40px 300px 1fr !important;
}
.recipe-ingredient .grid-3-row h4 {
  color: orange;
  font-size: 15px;
  font-weight: 600;
}
.recipe-ingredient .grid-3-row .top .row * {
  display: flex;
  align-items: center;
}
.recipe-ingredient .grid-3-row .bottom table th {
  background-color: #f5f5f5;
  text-align: center;
  font-weight: 600;
}
.recipe-ingredient .grid-3-row .bottom table td {
  min-width: 50px;
  width: 100px;
  text-align: right;
}

.ingredient.recipe {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 300px);
}
.ingredient.recipe .middle {
  flex-grow: 1;
  overflow: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  border: 1px solid #e2e2e2;
}
.ingredient.recipe .middle .recipe-result {
  padding: 6px;
  background-color: #dcdde2;
}
.ingredient.recipe .middle .recipe-result .recipe-result__items {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
}
.ingredient.recipe .middle .recipe-result .recipe-result__items > li {
  margin-bottom: 3px;
}
.ingredient.recipe .middle .recipe-result .recipe-result__items > li:last-child {
  margin-bottom: 0px;
}
.ingredient.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item {
  padding: 6px 10px;
  margin-bottom: 4px;
}
.ingredient.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item:hover {
  border: 2px solid #52B4EB;
  cursor: pointer;
}
.ingredient.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item.selected {
  border: 2px solid #5867dd;
  cursor: pointer;
}
.ingredient.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item:last-child {
  margin-bottom: 0px;
}
.ingredient.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-title ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: center;
}
.ingredient.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-title ul li {
  text-align: center;
}
.ingredient.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-title ul li:first-child {
  font-size: 17px;
  font-weight: 600;
}
.ingredient.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-title ul li:last-child {
  color: #929292;
}
.ingredient.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: center;
  font-size: 11px;
}
.ingredient.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-content ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.ingredient.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-content ul li {
  padding: 4px;
}
.ingredient.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-content ul li:first-child {
  border-bottom: 2px solid #ebedf2;
  text-align: center;
}
.ingredient.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-content ul li:last-child {
  text-align: right;
}
.private-reciepe-modal .modal-dialog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.private-reciepe-modal .modal-lg {
  min-width: 920px !important;
}
.private-reciepe-modal .modal-lg .modal-body .modal-container {
  display: flex;
  flex-direction: row;
}
.private-reciepe-modal .modal-lg .modal-body .modal-container .left {
  flex-basis: 300px;
}
.private-reciepe-modal .modal-lg .modal-body .modal-container .right {
  flex-grow: 1;
}
.private-reciepe-modal .modal-lg .modal-body .modal-container .right .ag-theme-fresh {
  height: calc(100vh - 630px);
}

.private.recipe {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 324px);
}
.private.recipe .middle {
  flex-grow: 1;
  overflow: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  border: 1px solid #e2e2e2;
}
.private.recipe .middle .recipe-result {
  padding: 6px;
  background-color: #dcdde2;
}
.private.recipe .middle .recipe-result .recipe-result__items {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
}
.private.recipe .middle .recipe-result .recipe-result__items > li {
  margin-bottom: 3px;
}
.private.recipe .middle .recipe-result .recipe-result__items > li:last-child {
  margin-bottom: 0px;
}
.private.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item {
  padding: 6px 10px;
  margin-bottom: 4px;
}
.private.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item:hover {
  border: 2px solid #52B4EB;
  cursor: pointer;
}
.private.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item.selected {
  border: 2px solid #5867dd;
  cursor: pointer;
}
.private.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item:last-child {
  margin-bottom: 0px;
}
.private.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-title ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: center;
}
.private.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-title ul li {
  text-align: center;
}
.private.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-title ul li:first-child {
  font-size: 17px;
  font-weight: 600;
}
.private.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-title ul li:last-child {
  color: #929292;
}
.private.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: center;
  font-size: 11px;
}
.private.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-content ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.private.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-content ul li {
  padding: 4px;
}
.private.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-content ul li:first-child {
  border-bottom: 2px solid #ebedf2;
  text-align: center;
}
.private.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-content ul li:last-child {
  text-align: right;
}
.public.recipe {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 288px);
}
.public.recipe .middle {
  flex-grow: 1;
  overflow: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  border: 1px solid #e2e2e2;
}
.public.recipe .middle .recipe-result {
  padding: 6px;
  background-color: #dcdde2;
}
.public.recipe .middle .recipe-result .recipe-result__items {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
}
.public.recipe .middle .recipe-result .recipe-result__items > li {
  margin-bottom: 3px;
}
.public.recipe .middle .recipe-result .recipe-result__items > li:last-child {
  margin-bottom: 0px;
}
.public.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item {
  padding: 6px 10px;
  margin-bottom: 4px;
}
.public.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item:hover {
  border: 2px solid #52B4EB;
  cursor: pointer;
}
.public.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item.selected {
  border: 2px solid #5867dd;
  cursor: pointer;
}
.public.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item:last-child {
  margin-bottom: 0px;
}
.public.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-title ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: center;
}
.public.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-title ul li {
  text-align: center;
}
.public.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-title ul li:first-child {
  font-size: 17px;
  font-weight: 600;
}
.public.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-title ul li:last-child {
  color: #929292;
}
.public.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: center;
  font-size: 11px;
}
.public.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-content ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.public.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-content ul li {
  padding: 4px;
}
.public.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-content ul li:first-child {
  border-bottom: 2px solid #ebedf2;
  text-align: center;
}
.public.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-content ul li:last-child {
  text-align: right;
}
.daily-container {
  display: flex;
  flex-direction: row;
  height: 100%;
}
.daily-container .left {
  flex-basis: 360px;
  height: 100%;
}
.daily-container .right {
  flex: 1;
  margin-left: 10px;
}

.global {
  min-width: 360px;
}
.global.recipe {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 355px);
}
.global.recipe .middle {
  flex-grow: 1;
  overflow: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  border: 1px solid #e2e2e2;
}
.global.recipe .middle .recipe-result {
  padding: 6px;
  background-color: #dcdde2;
}
.global.recipe .middle .recipe-result .recipe-result__items {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
}
.global.recipe .middle .recipe-result .recipe-result__items > li {
  margin-bottom: 3px;
}
.global.recipe .middle .recipe-result .recipe-result__items > li:last-child {
  margin-bottom: 0px;
}
.global.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item {
  padding: 6px 10px;
  margin-bottom: 4px;
}
.global.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item:hover {
  border: 2px solid #52B4EB;
  cursor: pointer;
}
.global.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item.selected {
  border: 2px solid #5867dd;
  cursor: pointer;
}
.global.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item:last-child {
  margin-bottom: 0px;
}
.global.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-title ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: center;
}
.global.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-title ul li {
  text-align: center;
}
.global.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-title ul li:first-child {
  font-size: 17px;
  font-weight: 600;
}
.global.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-title ul li:last-child {
  color: #929292;
}
.global.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: center;
  font-size: 11px;
}
.global.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-content ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.global.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-content ul li {
  padding: 4px;
}
.global.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-content ul li:first-child {
  border-bottom: 2px solid #ebedf2;
  text-align: center;
}
.global.recipe .middle .recipe-result .recipe-result__items > li .recipe-result__item .recipe-result__item-content ul li:last-child {
  text-align: right;
}
.pp-2 {
  padding: 0.1rem !important;
}

.calendar {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
}
.calendar .calendar-toolbar {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
}
.calendar .calendar-toolbar .calendar-toolbar__date {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: stretch;
  margin-bottom: 20px;
}
.calendar .calendar-toolbar .calendar-toolbar__tab .nav-tabs {
  margin-bottom: 0px !important;
}
.calendar .calendar-toolbar .calendar-toolbar__tab .nav-link {
  font-size: 14px;
  padding: 0.8rem 3rem;
}
.calendar .calendar-toolbar .calendar-toolbar__tab .nav-link span {
  padding-left: 10px;
  font-size: 12px !important;
}
.calendar .calendar-toolbar .calendar-toolbar__tab .nav-link.active {
  background-color: #eee;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
  font-weight: bold;
}
.calendar .calendar-header {
  display: grid;
  grid-template-columns: 90px repeat(7, 1fr);
}
.calendar .calendar-header > div {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid #ddd;
  background-color: #eee;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
}
.calendar .calendar-header > div:nth-child(odd) {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.calendar .calendar-header > div:last-child {
  border-right: 1px solid #ddd;
}
.calendar .calendar-body .calendar-body--item {
  list-style: none;
  padding: 0px;
  margin: 0px;
  cursor: pointer;
  display: grid;
}
.calendar .calendar-body .calendar-body--item.revenge {
  grid-template-columns: 45px 45px repeat(7, 1fr);
  grid-template-rows: repeat(2, minmax(150px, auto));
}
.calendar .calendar-body .calendar-body--item.revenge li {
  /*&:nth-child(n+4) {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;

    .person {
      border-bottom: 1px solid #ddd;
      //padding: 6px 3px;
      background: white;
      color: #575962;
      margin-bottom: 6px;
      text-align: right;
    }

    !*.menu {
      margin: 3px 10px;
      padding: 3px;

      &:last-child {
        margin-bottom: 0px;
      }
    }*!
  }*/
}
.calendar .calendar-body .calendar-body--item.revenge li.active {
  border: 1px solid red !important;
}
.calendar .calendar-body .calendar-body--item.revenge li:nth-child(1) {
  grid-row: 1/3;
  grid-column: 1;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.calendar .calendar-body .calendar-body--item.revenge li:nth-child(1) > div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar .calendar-body .calendar-body--item.revenge li:nth-child(2) {
  grid-row: 1/2;
  grid-column: 2;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.calendar .calendar-body .calendar-body--item.revenge li:nth-child(2) > div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar .calendar-body .calendar-body--item.revenge li:nth-child(3) {
  grid-row: 2/3;
  grid-column: 2;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.calendar .calendar-body .calendar-body--item.revenge li:nth-child(3) > div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar .calendar-body .calendar-body--item .day {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #ddd;
}
.calendar .calendar-body .calendar-body--item .day .person {
  border-bottom: 1px solid #ddd;
  background: white;
  color: #575962;
  margin-bottom: 6px;
  text-align: right;
}
.calendar .calendar-body .calendar-body--item .day .menu-items {
  flex: 1;
  border-bottom: 1px solid #ddd;
}
.calendar .calendar-body .calendar-body--item .day .menu-items:hover {
  background-color: #e2e2e2;
}
.calendar .calendar-body .calendar-body--item .day .menu-items:not(.unselect).ui-selecting {
  background: #FECA40;
}
.calendar .calendar-body .calendar-body--item .day .menu-items:not(.unselect).ui-selected {
  background: #FECA40;
}
.calendar .calendar-body .calendar-body--item .day .menu-items .menu {
  margin: 3px 10px;
  padding: 3px;
}
.calendar .calendar-body .calendar-body--item.single {
  grid-template-columns: 90px repeat(7, 1fr);
  grid-template-rows: minmax(150px, auto);
}
.calendar .calendar-body .calendar-body--item.single li.active {
  border: 1px solid red !important;
}
.calendar .calendar-body .calendar-body--item.single li:nth-child(1) {
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.calendar .calendar-body .calendar-body--item.single li:nth-child(1) > div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-container {
  background-color: white;
}
.calendar-container .calendar-toolbar {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
}
.calendar-container .calendar-toolbar .calendar-toolbar__date {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: stretch;
  margin-bottom: 20px;
}
.calendar-container .calendar-toolbar .calendar-toolbar__tab .nav-tabs {
  margin-bottom: 0px !important;
}
.calendar-container .calendar-toolbar .calendar-toolbar__tab .nav-link {
  font-size: 14px;
  padding: 0.8rem 3rem;
}
.calendar-container .calendar-toolbar .calendar-toolbar__tab .nav-link span {
  padding-left: 10px;
  font-size: 12px !important;
}
.calendar-container .calendar-toolbar .calendar-toolbar__tab .nav-link.active {
  background-color: #eee;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
  font-weight: bold;
}
.calendar-container .calendar-header {
  display: grid;
  grid-template-columns: 90px repeat(7, 1fr);
}
.calendar-container .calendar-header > div {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid #ddd;
  background-color: #eee;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
}
.calendar-container .calendar-header > div:nth-child(odd) {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.calendar-container .calendar-header > div:last-child {
  border-right: 1px solid #ddd;
}
.calendar-container .calendar-body {
  overflow: hidden;
  height: calc(100vh - 460px);
  overflow-y: auto;
}
.calendar-container .calendar-body .calendar-body--item {
  list-style: none;
  padding: 0px;
  margin: 0px;
  cursor: pointer;
  display: grid;
}
.calendar-container .calendar-body .calendar-body--item.single {
  grid-template-columns: 90px repeat(7, 1fr);
  grid-template-rows: minmax(150px, auto);
}
.calendar-container .calendar-body .calendar-body--item.single li.active {
  border: 1px solid red !important;
}
.calendar-container .calendar-body .calendar-body--item.single li:nth-child(1) {
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.calendar-container .calendar-body .calendar-body--item.single li:nth-child(1) > div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-container .calendar-body .calendar-body--item.revenge {
  grid-template-columns: 45px 45px repeat(7, 1fr);
  grid-template-rows: repeat(2, minmax(150px, auto));
}
.calendar-container .calendar-body .calendar-body--item.revenge li {
  /*&:nth-child(n+4) {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;

    .person {
      border-bottom: 1px solid #ddd;
      //padding: 6px 3px;
      background: white;
      color: #575962;
      margin-bottom: 6px;
      text-align: right;
    }

    !*.menu {
      margin: 3px 10px;
      padding: 3px;

      &:last-child {
        margin-bottom: 0px;
      }
    }*!
  }*/
}
.calendar-container .calendar-body .calendar-body--item.revenge li.active {
  border: 1px solid red !important;
}
.calendar-container .calendar-body .calendar-body--item.revenge li:nth-child(1) {
  grid-row: 1/3;
  grid-column: 1;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.calendar-container .calendar-body .calendar-body--item.revenge li:nth-child(1) > div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-container .calendar-body .calendar-body--item.revenge li:nth-child(2) {
  grid-row: 1/2;
  grid-column: 2;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.calendar-container .calendar-body .calendar-body--item.revenge li:nth-child(2) > div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-container .calendar-body .calendar-body--item.revenge li:nth-child(3) {
  grid-row: 2/3;
  grid-column: 2;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.calendar-container .calendar-body .calendar-body--item.revenge li:nth-child(3) > div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-container .calendar-body .calendar-body--item .day {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #ddd;
}
.calendar-container .calendar-body .calendar-body--item .day .person {
  border-bottom: 1px solid #ddd;
  background: white;
  color: #575962;
  margin-bottom: 6px;
  text-align: right;
}
.calendar-container .calendar-body .calendar-body--item .day .menu-items {
  flex: 1;
  border-bottom: 1px solid #ddd;
}
.calendar-container .calendar-body .calendar-body--item .day .menu-items:hover {
  background-color: #e2e2e2;
}
.calendar-container .calendar-body .calendar-body--item .day .menu-items:not(.unselect).ui-selecting {
  background: #FECA40;
}
.calendar-container .calendar-body .calendar-body--item .day .menu-items:not(.unselect).ui-selected {
  background: #FECA40;
}
.calendar-container .calendar-body .calendar-body--item .day .menu-items .menu {
  margin: 3px 10px;
  padding: 3px;
}

.stock-config .modal-dialog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.stock-config .modal-lg {
  min-width: 920px !important;
}
.stock-config .modal-lg .modal-body {
  display: flex;
  flex-direction: row;
  padding: 10px 10px 4px 10px;
}
.stock-config .modal-lg .modal-body .left {
  flex-basis: 300px;
}
.stock-config .modal-lg .modal-body .right {
  flex-grow: 1;
}

body, .ag-root-wrapper, .datepicker-here, .m-portlet__head-text, .m-portlet__head-text small {
  font-family: "Nanum Gothic", sans-serif !important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-table th {
  border: 1px solid #c5c5c5 !important;
  background: #f6f6f6;
  color: #454545;
  padding: 4px;
  text-align: center;
}
.form-table td {
  padding: 1px;
  background: #fff;
  border: 1px solid #c5c5c5 !important;
}
.form-table input.form-control {
  height: 25px;
  padding: 0px;
}
.form-table input.form-control.number {
  text-align: right;
}

html.swal2-shown {
  overflow: visible !important;
}

body.swal2-shown {
  overflow: auto !important;
  padding: 0 !important;
}

.kakao-btn, .naver-btn, .facebook-btn {
  background: #FFEB00 !important;
  border-color: #FFEB00 !important;
  color: #3C1E1E !important;
}
.kakao-btn i, .naver-btn i, .facebook-btn i {
  font-size: 18px;
  padding-right: 5px;
  position: relative;
  top: 2px;
}
.kakao-btn .title, .naver-btn .title, .facebook-btn .title {
  font-size: 15px;
}

.btn-kakao-focus {
  -webkit-box-shadow: 0px 5px 10px 2px rgba(152, 22, 244, 0.19) !important;
  box-shadow: 0px 5px 10px 2px rgba(152, 22, 244, 0.19) !important;
}
.btn-kakao-focus:hover, .btn-kakao-focus:focus, .btn-kakao-focus:active {
  -webkit-box-shadow: 0px 5px 10px 2px rgba(163, 143, 0, 0.36) !important;
  box-shadow: 0px 5px 10px 2px rgba(163, 143, 0, 0.36) !important;
}

.facebook-btn {
  background: #3b5998 !important;
  border-color: #3b5998 !important;
  color: #fff !important;
}

.naver-btn {
  background: #1fbc02 !important;
  border-color: #1fbc02 !important;
  color: #fff !important;
}
.naver-btn .fa-naver {
  background-image: url("/images/naver.png");
  background-size: 20px;
  width: 20px;
  height: 20px;
}

.google-btn .fa-google-plus-square {
  font-size: 18px;
  padding-right: 5px;
}
.google-btn .title {
  font-size: 15px;
}

.ag-theme-fresh .ag-header-group-cell {
  display: flex;
  justify-content: center;
}
.ag-theme-fresh .ag-header-group-cell .ag-header-group-cell-label {
  width: auto;
}
.ag-theme-fresh .ag-cell-label-container {
  display: flex;
  justify-content: center;
}
.ag-theme-fresh .ag-cell-label-container .ag-header-cell-label {
  width: auto;
}
.ag-theme-fresh .ag-row-hover {
  background-color: #d0d0f8;
}
.ag-theme-fresh .ag-row-focus {
  background-color: #d0d0f8;
}

paging ul.m-datatable__pager-nav {
  margin: 0 !important;
  padding: 0 !important;
  display: inline-block !important;
}
paging ul.m-datatable__pager-nav .active a {
  background: #716aca;
  color: #fff;
}
paging ul.m-datatable__pager-nav a {
  color: #898b96;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  height: 2.25rem;
  min-width: 2.25rem;
  vertical-align: middle;
  padding: 0.5rem;
  border-radius: 50%;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  vertical-align: middle;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 400;
}
paging ul.m-datatable__pager-nav a:hover {
  background: #716aca;
  color: #fff;
}

.modal label {
  font-weight: bold;
}

.approval ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: grid;
  grid-template-columns: 25px repeat(3, 80px);
  grid-template-rows: 25px 60px;
}
.approval ul li {
  border: 1px solid #e2e2e2;
}
.approval ul li div {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
}
.approval ul li:nth-child(1) {
  grid-row: 1/3;
}

.datepicker--nav-title {
  font-family: "Nanum Gothic", sans-serif !important;
  font-size: 14px !important;
  font-weight: bold !important;
}

.datepicker--day-name {
  font-family: "Nanum Gothic", sans-serif !important;
  font-size: 14px !important;
  font-weight: bold !important;
}

.datepicker--cell {
  font-family: "Nanum Gothic", sans-serif !important;
}

.dndPlaceholder {
  background-color: #ddd;
  display: block;
  min-height: 27px;
}

.dndDraggingSource {
  display: none;
}

.m-content.my-content--full-height {
  height: calc(100% - 70px);
}

.m-portlet.m-portlet--skin-gray {
  background-color: #f2f3f8;
  box-shadow: none;
}
.m-portlet.m-portlet--full-height {
  height: 100% !important;
}
.m-portlet.m-portlet--fullscreen > .m-portlet__body {
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.m-portlet.m-portlet--fullscreen .calendar-body > .m-scrollable {
  height: calc(100vh - 200px);
}
.m-portlet .calendar-body > .m-scrollable {
  height: calc(100vh - 460px);
}

.board-container.grid-col-5 .board-header .border-title {
  grid-template-columns: 60% repeat(4, 1fr) !important;
}
.board-container.grid-col-5 .board-list .board-items {
  grid-template-columns: 60% repeat(4, 1fr) !important;
  align-items: center;
}
.board-container .board-toolbar {
  padding: 10px 0px;
}
.board-container .board-header, .board-container.grid-col-5 .board-header {
  background-color: white;
  border-top: 2px solid #000;
  border-bottom: 5px solid #ecedef;
  background-color: #f0f0f0;
}
.board-container .board-header .border-title {
  font-size: 14px;
  font-weight: 600;
  display: grid;
  grid-template-columns: 70% repeat(3, 1fr);
  padding: 8px 40px;
}
.board-container .board-header .border-title div:nth-child(n+2) {
  text-align: center;
}
.board-container .board-list, .board-container.grid-col-5 .board-list {
  background-color: white;
}
.board-container .board-list .board-items {
  padding: 10px 40px;
  display: grid;
  grid-template-columns: 70% repeat(3, 1fr);
  border-bottom: 1px solid #ecedef;
}
.board-container .board-list .board-items div:nth-child(n+2) {
  text-align: center;
}
.board-container .board-footer {
  background-color: white;
  padding-top: 30px !important;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
}

.boardview-container {
  padding: 30px 10px;
  font-size: 15px;
  font-weight: 400;
  color: #1f1f1f;
}
.boardview-container .board-view {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
}
.boardview-container .board-view .view-header {
  border-bottom: 1px solid #e8e9eb;
  padding: 0 18px 30px;
}
.boardview-container .board-view .view-header .view-title {
  font-size: 26px;
  font-weight: 400;
}
.boardview-container .board-view .view-header .view-info {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: stretch;
  align-content: stretch;
  width: 230px;
}
.boardview-container .board-view .view-header .date {
  color: #8c919a;
}
.boardview-container .board-view .view-header .hit {
  color: #8c919a;
}
.boardview-container .board-view .view-header .comment {
  color: #8c919a;
}
.boardview-container .view-body {
  padding: 35px 18px;
}
.boardview-container .view-bottom {
  display: flex;
}

.preserve-container, .preserve-preview .preserve-container-preview {
  color: #000;
  font-weight: 400;
  font-size: 12px;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(4, 260px);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
.preserve-container .preserve-item, .preserve-preview .preserve-container-preview .preserve-item {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: grid;
  grid-template-columns: 50px 210px;
  grid-template-rows: 25px minmax(140px, 1fr) repeat(3, 25px);
  justify-content: center;
}
.preserve-container .preserve-item li, .preserve-preview .preserve-container-preview .preserve-item li {
  padding: 4px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preserve-container .preserve-item li:nth-child(3), .preserve-preview .preserve-container-preview .preserve-item li:nth-child(3) {
  writing-mode: tb-rl;
}
.preserve-container .preserve-item li:nth-child(1n), .preserve-preview .preserve-container-preview .preserve-item li:nth-child(1n) {
  border-left: 1px solid #000000;
  border-top: 1px solid #000000;
}
.preserve-container .preserve-item li:nth-child(2n), .preserve-preview .preserve-container-preview .preserve-item li:nth-child(2n) {
  border-right: 1px solid #000000;
}
.preserve-container .preserve-item li:nth-last-child(2), .preserve-preview .preserve-container-preview .preserve-item li:nth-last-child(2) {
  border-bottom: 1px solid #000000;
}
.preserve-container .preserve-item li:last-child, .preserve-preview .preserve-container-preview .preserve-item li:last-child {
  border-bottom: 1px solid #000000;
}
.preserve-container .preserve-item li dl, .preserve-preview .preserve-container-preview .preserve-item li dl {
  margin: 0px;
}
.preserve-container .preserve-item li dl dt, .preserve-preview .preserve-container-preview .preserve-item li dl dt {
  font-weight: 400;
  padding-bottom: 4px;
}
.preserve-container .preserve-item li dl dt:last-child, .preserve-preview .preserve-container-preview .preserve-item li dl dt:last-child {
  padding-bottom: 0px;
}

.preserve-preview {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
}
.preserve-preview .preserve-container-preview {
  font-size: 16px;
  grid-template-columns: 300px;
}
.preserve-preview .preserve-container-preview .preserve-item {
  grid-template-columns: 80px 270px;
}

section {
  padding-left: 20px;
  padding-right: 20px;
  border-right: 1px solid #e2e2e2;
  margin: 20px 20px 20px 0px;
}

tags-input .host {
  margin: 0 !important;
}
tags-input .host .tags {
  border: none !important;
  box-shadow: none !important;
}

.full-center {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
}
.full-center .team-join {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
}
.full-center .team-join li {
  margin-bottom: 30px;
  font-size: 14px;
  text-align: center;
}
.full-center .team-join li:first-child {
  margin-top: 20px;
}
.full-center .team-join li:nth-child(2) {
  margin-bottom: 30px;
}
.full-center .team-join li:last-child {
  margin-bottom: 0px;
}

.order {
  margin-bottom: 30px;
}
.order .title {
  font-size: 17px;
  font-weight: 900;
}
.order .info {
  padding-top: 10px;
}
.order .info .table {
  border-top: 2px solid #cecece;
}
.order .info .table tr {
  border-bottom: 1px solid #e4e4e4 !important;
}
.order .info .table tr th {
  text-align: right;
  background-color: #f4f4f4;
  width: 150px;
  border-top: 1px solid #e4e4e4;
}
.order .info .table tr td {
  padding-left: 20px;
  text-align: left;
  border-top: 1px solid #e4e4e4;
}

.box {
  margin-bottom: 20px;
}
.box .text {
  border: 4px solid #f7f7fa;
  padding: 10px 20px;
}
.box .text ul {
  padding-left: 16px;
}
.box .text li {
  padding-top: 10px;
}

.doNotPay {
  text-align: center;
  font-size: 18px;
}
.doNotPay .title {
  font-size: 30px;
  font-weight: 900;
}
.doNotPay .body {
  text-align: left;
  padding: 20px 60px;
}
.doNotPay .footer {
  padding: 20px 60px;
}
.doNotPay .footer .btn {
  font-size: 18px !important;
}

.week.datepicker-days tr:hover {
  background-color: #828ee6;
}

.form-table.temperature tr:nth-child(2) th:nth-child(n+2):nth-child(-n+6) {
  width: 60px !important;
  vertical-align: middle;
}
.form-table.temperature tr:nth-child(3) th:nth-child(n+1):nth-child(-n+2) {
  width: 60px !important;
  vertical-align: middle;
}
.form-table.temperature td {
  vertical-align: middle;
}
.form-table.temperature th {
  vertical-align: middle;
}

.daily-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  grid-column-gap: 10px;
}

.editable-wrap .editable-controls > input {
  padding: 0px;
  width: 50% !important;
  height: 30px !important;
}

@media (max-width: 1024px) {
  .news .news-body .card {
    margin-bottom: 6px;
  }
  .news .news-body .card .card-body {
    /*display: grid !important;
    //grid-template-columns: 1fr 200px !important;
    align-items: center !important;*/
    padding: 10px;
  }
  .news .news-body .card .card-body .new-content .subtitle {
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .news .news-body .card .card-body .new-content .subtitle .owner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .news .news-body .card .card-body .new-content .subtitle .owner h5 {
    font-size: 14px !important;
  }
  .news .news-body .card .card-body .new-content .subtitle .owner span {
    font-size: 12px !important;
  }
  .news .news-body .card .card-body .new-content .title {
    margin-bottom: 10px;
  }
}
@media (min-width: 1024px) {
  .news .news-body .card {
    margin-bottom: 6px;
  }
  .news .news-body .card .card-body {
    display: grid !important;
    grid-template-columns: 1fr 200px !important;
    align-items: center !important;
    padding: 20px;
  }
  .news .news-body .card .card-body .new-content .subtitle {
    margin-bottom: 10px;
  }
  .news .news-body .card .card-body .new-content .title {
    margin-bottom: 10px;
  }
  .news .news-body .card .card-body .new-info {
    justify-self: center;
  }
  .news .news-footer {
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.board .board-result a {
  color: #1f1f1f !important;
}
.board .board-result a:visited {
  color: #95959a !important;
}

.grid-3-row {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  row-gap: 10px;
}
.grid-2-row {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  row-gap: 10px;
}

.grid-2-col {
  height: 100%;
  display: grid;
  column-gap: 10px;
  grid-template-columns: auto 1fr;
}
.grid-2-col .left {
  border-right: 1px solid #d7d7d7;
}
.calendar-no-border .datepicker.datepicker-inline {
  border: none;
}

.old.day {
  color: #c8ccd8 !important;
}

.new.day {
  color: #c8ccd8 !important;
}

.week-datepicker .datepicker-days table tbody tr:hover {
  background-color: #eee;
}

.analysis .head ul {
  list-style: none;
  display: grid;
  grid-template-columns: 80px auto auto repeat(4, 80px);
  margin: 0px !important;
  padding: 0px !important;
}
.analysis .body .body-item {
  display: grid;
  grid-template-columns: 80px 100px 1fr;
  margin: 0px !important;
  padding: 0px !important;
}
.analysis .body .body-item .ingredient {
  display: grid;
  grid-template-columns: repeat(4, 80px);
}
.analysis .body .body-item .ingredient .item {
  display: grid;
}

.taster .head ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: grid;
  grid-template-columns: 400px repeat(5, 1fr);
  grid-template-rows: 40px;
}
.taster .head ul li {
  border: 1px solid #ddd;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.taster .body .daily {
  display: grid;
  grid-template-columns: 200px 1fr;
}
.taster .body .daily .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
}
.taster .body .daily .menu-item .item {
  display: grid;
  grid-template-columns: 200px repeat(5, 1fr);
}
.taster .body .daily .menu-item .item div {
  border: 1px solid #ddd;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.my-footer {
  height: 100%;
  color: #6f727d;
  font-weight: 400;
}
.my-footer .top ul {
  list-style: none;
  display: grid;
  grid-template-columns: 110px 80px 190px 160px 260px 1fr;
  grid-column-gap: 2px;
  margin: 0px !important;
  padding: 0px !important;
}
.my-footer .buttom {
  margin-top: 4px;
}
.my-footer .buttom ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  margin: 0px !important;
  padding: 0px !important;
}
.my-footer .buttom ul li {
  padding: 4px !important;
}

.m-menu-toogle {
  padding: 0.65rem 1.1rem;
}

.m-menu__item--active {
  background-color: #f8f8fb !important;
}

.edit-field {
  background-color: yellow;
  color: black;
}

.m-option {
  display: grid;
  width: 100%;
  grid-template-rows: 30px 1fr;
  grid-template-columns: 30px 1fr;
  grid-row-gap: 8px;
}
.m-option .my-option__head {
  grid-column: 1/3;
  grid-row: 1/1;
  justify-self: center;
  font-size: 16px;
}

.mypage .m-card-user__pic img {
  max-width: 80px !important;
}
.mypage .profile {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 40px 40px 40px;
  align-items: center;
  font-size: 15px;
}

[class^=flaticon-]:before, [class*=" flaticon-"]:before,
[class^=flaticon-]:after, [class*=" flaticon-"]:after {
  margin-left: 0px !important;
}

.m-footer {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.m-topbar .m-topbar__nav.m-nav > .m-nav__item > .m-nav__link .m-topbar__userpic img {
  width: auto !important;
  height: auto !important;
  max-height: 41px !important;
  object-fit: cover !important;
}

#video .modal-dialog {
  max-width: 800px;
  margin: 30px auto;
}
#video .modal-body {
  position: relative;
  padding: 0px;
}
#video .close {
  position: absolute;
  right: -30px;
  top: 0;
  z-index: 999;
  font-size: 2rem;
  font-weight: normal;
  color: #fff;
  opacity: 1;
}

/*# sourceMappingURL=styles.css.map */
