@import "tailwindcss";

@font-face {
	font-family: "AnoRegular";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("/fonts/AnoRegular-Regular.otf");
}

@font-face {
	font-family: "Druk Wide";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("/fonts/Druk Wide-Bold-Desktop.otf");
}

:root {
  --main-font-family: Druk Wide, AnoRegular, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
  Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  --main-font-size: 0.875rem;
  --main-background-color: #BA0C2F;
  --main-button-color: #ffffff;
  --error-color: #dd2b0e;
  --grey-color: #303030;
  --loading-color: #868686;
}

html,
body {
  padding: 0;
  margin: 0;
  font-family: var(--main-font-family);
  font-size: var(--main-font-size);
}

a {
  color: inherit;
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

.img-container {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  /* padding-top: 100%; */
}

.img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.page-wrap {
  min-height: calc(100vh - 48px - 25px);
}
.page-wrap.inert {
  padding-left: 0;
}

.page-content {
  width: 100%;
  padding-top: 16px;
  padding-bottom: 100px;
  margin-top: 48px;
  transition: padding 0.2s;
}

.page-content .container {
  padding: 0 16px;
}

.nav-sidebar {
  position: fixed;
  bottom: 0;
  left: 0;
  transition: width 0.2s, left 0.2s;
  z-index: 600;
  width: 256px;
  top: 48px;
  background-color: #f5f5f5;
  border-right: 1px solid #e9e9e9;
  transform: translate3d(0, 0, 0);
}
.page-wrap.inert .nav-sidebar {
  left: -256px;
}
.page-wrap .btn-sidebar {
  position: absolute;
  top: 0;
  right: -1.45rem;
  border: 1px solid var(--grey-color);
  border-radius: 3px;
  cursor: pointer;
  transform: rotate(180deg);
  transition: transform 0.2s;
}
.page-wrap.inert .btn-sidebar {
  transform: rotate(0);
  transition: transform 0.2s;
}
  .nav-sidebar ul {
    padding-left: 0;
    list-style: none;
  }
    .nav-sidebar ul li {
      white-space: nowrap;
    }
    
.btnClose {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  }
  .btnClose::before,
  .btnClose::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 60%;
    height: 1px;
    background-color: #000000;
  }
  
  .btnClose::before {
    rotate: 45deg;
  }
  
  .btnClose::after {
    rotate: -45deg;
  }

.login-wrap {
  padding-left: 0;
}
.logo {
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 56px;
  height: 56px;
}

.filter-box {
  position: absolute;
  right: 0;
  top: 35px;
  border: 1px solid #868686;
}