@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;600;900&display=swap');

:root {
  --base-font-family: "Fira Sans", sans-serif;
  --base-font-size: 1.6rem;
  --base-line-height: 1.2;
  --dark: #000000;
  --light: #ffffff;
  --proceed: #16ce3e;
  --light-green: rgba(111, 190, 54, .18);
  --light-green-500: #6fbe36;
  --abort: #ff6347;
  --abort-500: rgb(255 99 71 / 18%);
  --light1: #f6f5f5;
  --light2: #f2efef;
  --border: #ced4da;
  --bg1: #eff3f7;
  --bg2: #f6f9ff;
  --bg3: #d5d8f7;
  --text: #74788d;
  --text2: rgba(72, 76, 122);
  --purple-500: rgb(108 111 245 / 18%);
  --carve-grad: linear-gradient(180deg, #fff, #f5f5fa) !important;
  --carve-shadow: 0 4px 11px 0 rgba(37, 44, 97, .15), 0 1px 3px 0 rgba(93, 100, 148, .2);
  /* ------ FONT WEIGHT ------ */
  --font-normal: 400;
  --font-medium: 600;
  --font-bold: 900;
  /* ----------------- SHADOWS --------------- */

  --button-shadow: 0 1px 1px hsl(0deg 0% 0% / 0.075),
    0 2px 2px hsl(0deg 0% 0% / 0.075),
    0 4px 4px hsl(0deg 0% 0% / 0.075),
    0 8px 8px hsl(0deg 0% 0% / 0.075),
    0 16px 16px hsl(0deg 0% 0% / 0.075);
  --hover-shadow: 0rem 0.3rem 0.5rem rgb(0 0 0 / 50%);
  --shadow-header: rgb(17 17 26 / 10%) 0px 2px 6px;
  --shadow-footer: rgb(17 17 26 / 10%) 0px -2px 6px;
  --shadow-all: rgb(17 17 26 / 15%) 0px 0px 3px;
  --dd-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.2);

  /* ----------------- THEME --------------- */

  --main: #6c6ff5;
  --vice: #eff2f7;

}

::-webkit-scrollbar {
  width: 0.6rem;
}

::-webkit-scrollbar-track {
  background: var(--vice);
}

::-webkit-scrollbar-thumb {
  background: var(--main);
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: var(--base-font-family);
  font-size: 62.5%;
  line-height: var(--base-line-height);
}

body {
  margin: 0;
  font-size: var(--base-font-size);
  padding: 1.5rem;
  color: var(--text);
  display: flex;
  flex-flow: column;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.body-wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* .body {
  overflow-y: auto;
  padding: 1.5rem;
} */
a {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  color: var(--text);
}

/* (*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(* for website Ã¢â€ â€œ *)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*) */
.bottom-line {
  border-bottom: 0.15rem solid var(--border);
  margin: 2.5rem 0rem;
}

/* (*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(* for website Ã¢â€ â€˜ *)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*) */

/* (*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(* RS carve css Ã¢â€ â€œ *)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*) */
/* (*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(* RS carve css Ã¢â€ â€˜ *)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*) */
.font-normal {
  font-weight: var(--font-normal) !important;
}

.font-medium {
  font-weight: var(--font-medium) !important;
}

.font-bold {
  font-weight: var(--font-bold) !important;
}

.bottom-space {
  margin-top: 1.5rem;
}

.brightness-low {
  opacity: 0.3;
}

.brightness-medium {
  opacity: 0.5;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.hide {
  display: none !important;
}

.seek {
  display: block !important;
}

.hidden {
  opacity: 0;
  transition: all 200ms linear;
}

.freeze {
  overflow: hidden;
}

.icon-abort {
  stroke: var(--abort) !important;
}

.icon-proceed {
  stroke: var(--proceed) !important;
}

.outer-space-0 {
  margin: 0 !important;
}

.icon {
  stroke: var(--text);
  cursor: pointer;
  z-index: 2;
  vertical-align: middle;
  transition: all 500ms ease;
}

.carve-spot-freeze .icon {
  fill: inherit;
}

.icon:hover {
  animation: rotate-vis-versa 500ms ease;
}

@keyframes rotate-vis-versa {
  0% {
    transform: rotate(-45deg);
  }

  50% {
    transform: rotate(45deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* (*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(* UL LI Ã¢â€ â€œ *)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*) */
.carve-list-item {
  padding: 0.7rem 0rem;
  line-height: 2.5rem;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border);
  min-height: 3.5rem;
}

.carve-list-item:last-child {
  border-bottom: none;
}

/* (*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(*(* UL LI Ã¢â€ â€˜ *)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*)*) */

label {
  outline: none;
}

div {
  position: relative;
}

[type="checkbox"]:not(:checked)+label::before,
[type="checkbox"]:checked+label::before,
[type="radio"]:not(:checked)+label::before,
[type="radio"]:checked+label::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  border: 0.2rem solid var(--main);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.4rem;
}

[type="checkbox"]:checked+label::before,
[type="radio"]:checked+label::before {
  background: var(--main);
  z-index: 0;
  transition: all 300ms ease-in-out;
  box-shadow: var(--hover-shadow);
}

[type="checkbox"]:checked+label::after {
  content: "";
  display: block;
  width: 1rem;
  height: 0.45rem;
  border-style: solid;
  border-width: 0.2rem 0.2rem 0rem 0rem;
  border-color: var(--light);
  position: absolute;
  top: 0.7rem;
  left: 0.5rem;
  transform: rotate(135deg);
}

[type="radio"]:not(:checked)+label::before,
[type="radio"]:checked+label::before {
  border-radius: 100%;
}

/* [type="radio"]:checked+label::after {
content: "";
display: block;
background: var(--vice);
width: 0.6rem;
height: 0.6rem;
position: absolute;
top: 0.7rem;
border-radius: 10rem;
left: 0.7rem;
box-shadow: 0px 0px 0px 2.2px var(--main);
} */

[type='file'] {
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  padding: 2rem 4rem 2rem 0rem;
  border: 0 !important;
  outline: none;
  z-index: 2000;
}

[type='file']::-webkit-file-upload-button {
  display: none;
}

.gradient-strip {
  background-image: var(--carve-grad) !important;
  box-shadow: var(--carve-shadow) !important;
  color: var(--text2) !important;
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* TITLES +*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
h1,
.heading-xlarge,
h2,
.heading-large,
h3,
.heading-medium,
h4,
.heading-regular,
h5,
.heading-small,
h6,
.heading-xsmall {
  line-height: 100%;
  font-weight: 400;
  margin-bottom: 1.2rem;
  margin-top: 0;
  text-align: left;
  display: inline-block;
}

h1,
.heading-xlarge {
  font-size: 2.6rem;
}

h2,
.heading-large {
  font-size: 2.2rem;
}

h3,
.heading-medium {
  font-size: 1.8rem;
}

h4,
.heading-regular {
  font-size: 1.6rem;
}

h5,
.heading-small {
  font-size: 1.4rem;
}

h6,
.heading-xsmall {
  font-size: 1.2rem;
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* BUTTON +*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
button,
.button {
  outline: none;
  border: inherit;
  padding: 0rem 1.5rem;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  text-transform: capitalize;
  letter-spacing: 0.05rem;
  user-select: none;
  background: transparent;
  transition: all 300ms ease-in-out;
  white-space: nowrap;
  min-height: 4.5rem;
  line-height: 4.5rem;
  border-radius: 0.8rem;
}

.carve-button-group {
  display: flex;
  gap: 1.5rem;
}

.themebtn-group div {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  margin: 0.5rem;
  float: left;
  border-radius: 0.4rem;
}

#themeDark {
  background: tomato;
}

#themeBlue {
  background: Blue;
}

#themeGreen {
  background: #00d478;
}

span,
label {
  display: block;
  min-width: 2rem;
  min-height: 2rem;
}

.logo-wrapper {
  flex: auto;
}

.login {
  text-decoration: underline;
  cursor: pointer;
}

span.error-text {
  color: tomato;
  font-size: 76%;
  text-transform: capitalize;
  display: none;
  position: absolute;
}

.float-begin {
  float: left;
}

.float-end {
  float: right;
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* HEADER +*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
header {
  position: relative;
  background: var(--light);
  z-index: 3;
  box-shadow: var(--shadow-header);
  padding: 1rem;
  min-height: 8rem;
  display: flex;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
}

/* .header-wrapper .icon {
  stroke: var(--light);
} */

/* .menu-wrapper ul {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
} */

.menu-wrapper ul li {
  text-transform: capitalize;
  margin: 0rem 1.5rem;
  display: inline-flex;
}

.menu-item {
  min-height: 2rem;
  line-height: 2rem;
  cursor: pointer;
}

.menu-item svg {
  width: 2.4rem;
  height: 2.4rem;
}

.menu-item.active {
  color: var(--vice);
  border-top: 0.2rem solid var(--dark);
  padding: 0.5rem;
  background: inherit;
}

.logo-wrapper img {
  max-width: 100%;
  object-fit: contain;
  height: 100%;
}

[class*='-head'] {
  box-shadow: var(--shadow-header);
  background: var(--main);
  color: var(--vice);
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* FOOTER +*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
footer {
  display: flex;
  background: var(--bg2);
  justify-content: center;
  margin-top: auto;
  width: 100%;
}

footer p {
  text-transform: capitalize;
  display: flex;
  align-items: center;
  opacity: 0.6;
}

footer p::before {
  content: 'Ã‚Â©';
  display: block;
  font-size: 2.5rem;
  height: 2.5rem;
  margin-right: 0.5rem;
}

[class*='-footer'] {
  box-shadow: var(--shadow-footer);
  background: var(--light);
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* TOGGLE MENU +**+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
.carve-menu-toggle {
  display: flex;
  align-items: center;
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* TEXT FILED +*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
input[type="text"],
input[type="email"],
input[type="password"],
select {
  min-height: 4.5rem;
  border-radius: 0rem;
  padding: 1.5rem;
  font-size: 100%;
  outline: 0;
  border: 0.15rem solid var(--border);
  text-overflow: ellipsis;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

input[type]:focus:invalid,
select:focus:invalid {
  border: 0.1rem solid var(--abort);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  background: url('../image/date-picker.svg') no-repeat 60%;
}

.input-field input[type="date"] {
  font-family: inherit;
  font-size: 1.6rem;
  border: 0.1rem solid var(--text);
  color: var(--text);
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  position: relative;
  min-height: 4.5rem;
  width: 100%;
}

.input-field {
  position: relative;
  margin-bottom: 2rem;
  background: var(--light);
  text-transform: capitalize;
  width: 100%;
}

.input-field input {
  font-family: inherit;
}

.input-field.baseline {
  background: transparent;
  z-index: 0;
}

.input-field.baseline input[type] {
  border-left: 0;
  border-right: 0;
  border-top: 0;
  padding: 2rem 1.5rem 0.5rem;
  background: transparent;
}

/* .input-field.baseline label {
  z-index: -1;
} */

.input-field.mandate label::after {
  content: "*";
  color: var(--abort);
  display: inline-block;
  margin-left: 0.2rem;
}

.input-field label {
  transition: all 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  /* width: fit-content; */
  max-width: 90%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.input-field input:focus+label,
.input-field input:valid+label,
.select-field label {
  top: -0.6rem;
  font-size: 87%;
  background: white;
  padding: 0 0.6rem;
  z-index: 0;
}

.input-field.baseline input:focus+label,
.input-field.baseline input:valid+label {
  top: 0.3rem;
  font-size: 70%;
  background: transparent;
  padding: 0;
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* SELECT FILED +*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
select {
  appearance: var(--font-normal);
  background: transparent;
  text-transform: capitalize;
  -webkit-appearance: none;
  padding-right: 5rem;
  cursor: pointer;
  color: var(--dark);
}

.select-field::after {
  content: '';
  display: block;
  background: transparent;
  width: 1rem;
  height: 1rem;
  border-style: solid;
  border-width: 0 0.2rem 0.2rem 0;
  transform: rotate(45deg);
  position: absolute;
  right: 1.5rem;
  top: 2rem;
  border-color: var(--vice);
}

select::-ms-expand {
  display: none;
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* CHECKBOX, RADIO +*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
.check-field,
.radio-field {
  margin-bottom: 1.5rem;
}

[type="checkbox"],
[type="radio"] {
  display: none;
}

.check-field label,
.radio-field label {
  position: relative;
  cursor: pointer;
  padding-left: 2.8rem;
  text-transform: capitalize;
  line-height: 2.1rem;
  height: 2.1rem;
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* ICON +*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
.icon-close,
.icon-close.rounded {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
  stroke: white;
  transition: all 100ms ease-in-out;
  background: tomato;
  border-radius: 10rem;
  padding: 0.25rem;
}

.form .icon-close {
  display: block !important;
}

.icon-close.rounded {
  padding: 0.3rem;
  border-radius: 100%;
}

.icon-upload {
  margin: auto;
  /* position: absolute; */
  display: flex;
  width: 5.5rem;
  height: 100%;
  padding: 1.5rem;
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* SELECT FILTER +*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
.search-group input {
  padding-left: 5rem;
}

.select-filter ul {
  border: 0.1rem solid var(--vice);
  border-top: 0;
  max-height: 30rem;
  overflow: auto;
  padding-top: 0;
  display: none;
  position: absolute;
  width: 100%;
  background: var(--light);
  z-index: 3;
  box-shadow: 0 1px 1px 0 rgb(0 0 0 / 2%), 0 10px 10px 0 rgb(0 0 0 / 13%);
  top: 5.2rem;
}

.search-group {
  background: var(--light);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px;
}

.select-filter ul li {
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  text-transform: capitalize;
}

.select-filter ul li:hover {
  background: var(--vice);
}

.filter-button {
  border: 0.1rem solid var(--vice);
  border-radius: 0rem;
  text-align: left;
  box-shadow: none;
  color: var(--vice);
  background: var(--main);
}

.filter-button:hover {
  box-shadow: none;
}

.icon-search {
  position: absolute;
  display: flex;
  width: 5rem;
  height: 5.2rem;
  padding: 1.5rem;
  opacity: 0.3;
}

.close-btn {
  transform: rotate(45deg);
  font-size: 2rem;
  border: 0.1rem solid var(--main);
  max-width: 1.5rem;
  aspect-ratio: 1;
  min-height: 1.5rem;
  padding: 0.6rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: var(--light);
  color: var(--main);
}

.selected-file {
  display: inline-block;
  margin-right: 1.5rem;
  background: var(--vice);
  padding: 0.5rem 1rem;
  border-radius: 0.428rem;
  font-size: 1.4rem;
  letter-spacing: 0.01rem;
}

.file-name {
  position: absolute;
  top: calc(50% - 1.3rem);
  left: 0rem;
  white-space: nowrap;
  height: 2.6rem;
  cursor: all-scroll;
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* FILE UPLOAD +*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
.carve-file-upload {
  border: 0.2rem dashed var(--dark);
  display: flex;
  cursor: pointer;
  border-radius: 1rem;
  max-width: 50rem;
  min-height: 6rem;
  margin-bottom: 3rem;
  background: var(--light);
}

.carve-file {
  width: 100%;
  overflow: auto;
  overflow-y: hidden;
  /* margin-bottom: 1rem; */
}

.carve-file::-webkit-scrollbar {
  height: 1rem;
}

.carve-file::-webkit-scrollbar-thumb {
  border-radius: 10rem;
}

.carve-file .icon-close {
  display: flex;
  width: 4rem;
  right: 0;
  height: 100%;
  top: 0;
  padding: 1rem;
  display: none;
}

[type='file']:valid+.carve-file .icon-close {
  display: block;
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* BUTTON +*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
.shadow-off:hover {
  box-shadow: none;
}

button:hover,
.button:hover {
  box-shadow: var(--button-shadow);
}

.carve-button-main {
  background: var(--main);
  color: var(--vice);
}

.carve-button-dark {
  background: var(--dark);
  color: var(--vice);
}

.carve-button-pill {
  border-radius: 10rem;
}

.carve-button-stroke {
  background: transparent;
  border: 0.1rem solid;
}

.stroke-main {
  border: 0.1rem solid var(--main);
  color: var(--main);
}

.stroke-vice {
  border: 0.1rem solid var(--vice);
  color: var(--vice);
}

.carve-button-fab {
  position: fixed;
  right: 1.5rem;
  bottom: 9rem;
  background: var(--main);
  /* padding: 1rem; */
  width: 4rem;
  height: 4rem;
  border-radius: 10rem;
  display: grid;
  place-items: center;
  box-shadow: var(--button-shadow);
  border: 0.1rem solid var(--border);
  overflow: hidden;
  z-index: 9;
}

.carve-button-fab .icon {
  stroke: var(--vice);
}

.carve-button-block {
  width: 100%;
}

.carve-button-vice {
  background: var(--vice);
  color: var(--dark);
}

.carve-button-green {
  background: var(--light-green-500);
  color: var(--light);
}

/* +*+*+*+*+*+*+*+*+*+*+*+*++*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* TABLE +*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
table {
  margin: 0;
  position: relative;
  top: 0;
  border-collapse: collapse;
  border: 0.1rem solid var(--vice);
}

table thead {
  text-transform: capitalize;
  position: sticky;
  top: 0;
  background: var(--main);
  color: var(--bg2);
}

th:first-child,
td:first-child {
  border-left-style: hidden;
}

th:last-child,
td:last-child {
  border-right-style: hidden;
}

thead tr th {
  border-top-style: hidden;
  border-bottom-style: hidden;
  box-shadow: 0px -1px 1px var(--vice) inset;
  font-weight: var(--font-medium);
}

tbody tr:last-child td {
  border-bottom-style: hidden;
}

table th,
table td {
  padding: 1.5rem;
  font-size: inherit;
  min-width: 10rem;
  width: fit-content;
  border: 0.1rem solid var(--border);
}

/* ******************** TABLE STICKY ********************  */
.table-sticky,
.table-responsive {
  overflow-x: auto;
  max-height: 40rem;
  border: 0.1rem solid var(--border);
  max-width: 100%;
  width: fit-content;
  background: var(--light);
}

.table-sticky::-webkit-scrollbar,
.table-responsive::-webkit-scrollbar {
  display: none;
}

.table-sticky table thead {
  z-index: 2;
}

.table-sticky tr {
  position: relative;
}

.table-sticky th:last-child,
.table-sticky td:last-child {
  position: sticky;
  right: 0;
  min-width: 12rem;
}

.table-sticky th:last-child {
  background: var(--main);
}

.table-sticky td:last-child {
  background: var(--light);
}

/* uncomment the below css for first column */
/* .table-sticky th:first-child, .table-sticky td:first-child {
    position: sticky;
    background: var(--vice);
    left: 0;
    min-width: 12rem;
  } */


/* TABLE RESPONSIVE  */
.table-responsive {
  overflow-x: auto;
}

/* +*+*+*+*+*+*+*+*+*+*+*+*++*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* CARD *+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+*+ */
.carve-card {
  transition: all 300ms ease-in-out;
  display: flex;
  flex-flow: column;
  background: var(--light);
  /* box-shadow: var(--shadow-all); */
}

/* .carve-card:hover {
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.23);
} */

.carve-card-head {
  position: relative;
}

.carve-card-head .heading-medium {
  margin-bottom: 0;
}

.carve-card-head [class*='heading-'] {
  font-weight: var(--font-medium);
}

.carve-card-body {
  flex: 1;
}

.carve-card-body img {
  padding: 3rem;
}

.carve-card-body p {
  margin: 0;
}

.split {
  padding: 0;
}

.carve-card-head {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
}

[class*="carve-card-"] {
  padding: 1.5rem;
}

.split .carve-card-head .icon-close {
  top: 1.5rem;
  right: 1.5rem;
}

.split p {
  margin: 0;
}

/* +*+*+*+*+*+*+*+*+*+*+*+*++*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* MODALS *+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+*+ */
.carve-modal {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 9px -1px, rgba(0, 0, 0, 0.2) 0px 1px 3px -1px;
  border-radius: 0.5rem;
  transition: all 300ms ease-in-out;
  display: none;
}

.carve-modal-inner {
  position: relative;
  background: var(--light);
  border-radius: 0.8rem;
  z-index: 992;
  animation: modalOp 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-flow: column;
  max-height: 60rem;
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
  max-width: 30rem;
}

.carve-modal-inner [class*="carve-modal-"] {
  padding: 1.5rem;
}

.carve-modal-head *,
.carve-modal-body p {
  margin: 0;
}

.carve-modal-body {
  overflow: auto;
  background: white;
  overflow-wrap: break-word;
}
@keyframes modalOp {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes modalOp {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.panel-anim {
  animation: closeModel 290ms linear;
}

@keyframes closeModel {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(-50px);
    opacity: 0;
  }
}

@-webkit-keyframes closeModel {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(-50px);
    opacity: 0;
  }
}

.modal-seek {
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0 0 0 / 0.8);
  z-index: 2000;
  align-items: center;
  width: 100% !important;
}

/* .modal-seek::after {
  content: '';
  position: fixed;
  background: rgb(0, 0, 0, 0.8);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 991;
  animation: fadeBg 100ms ease-in-out;
} */

@keyframes fadeBg {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeBg {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-medium {
  max-width: 40rem;
}

.modal-large {
  max-width: 60rem;
}

.modal-medium .carve-modal-body {
  min-height: 20rem;
}

.split .carve-modal-head .heading-medium {
  margin-bottom: 0;
}

.split .carve-modal-head .icon-close {
  top: 1.5rem;
  right: 1.5rem;
}

.split p {
  margin: 0;
}

/* [class*='-footer'] {
  box-shadow: var(--shadow-footer);
} */

.split .carve-modal-inner {
  padding: 0;
}

.split .carve-modal-inner {
  max-height: 50rem;
  display: flex;
  flex-flow: column;
  max-width: 50rem;
  margin: auto;
}

.split .carve-modal-inner .carve-modal-body {
  flex: 1;
  overflow: auto;
}

.carve-modal .carve-tab {
  width: 100%;
}

/* +*+*+*+*+*+*+*+*+*+*+*+*++*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* ACCORDION *+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+*+ */
.carve-accordion {
  margin-bottom: 1.5rem;
}

.carve-accordion-head {
  background: var(--main);
  padding: 1.5rem;
  cursor: pointer;
  position: relative;
  color: var(--vice);
}

.carve-accordion-head::after {
  content: '';
  display: block;
  background: transparent;
  width: 1rem;
  height: 1rem;
  border-style: solid;
  border-width: 0 0.2rem 0.2rem 0;
  transform: rotate(45deg);
  position: absolute;
  right: 1.5rem;
  top: 2rem;
  transform-origin: center center;
  transition: all 200ms ease-in-out;
}

.carve-accordion-body {
  border-color: var(--main);
  border-style: solid;
  padding: 0 1.5rem;
  border-width: 0.2rem;
}

.carve-accordion-body p {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  transition: all 100ms ease;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.015rem;
}

.carve-accordion.active .carve-accordion-body p {
  max-height: max-content;
  margin: 1.5rem 0;
}

.carve-accordion.active .carve-accordion-head::after {
  transform: rotate(-135deg);
}

/* +*+*+*+*+*+*+*+*+*+*++*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* TABS *+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+*+ */
.carve-tabs-head {
  position: relative;
  width: 100%;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
  min-height: 4.5rem;
  z-index: 1;
  background: var(--light);
  color: var(--text);
}

.carve-tabs-head::-webkit-scrollbar {
  display: none;
}

.carve-menu-group {
  display: flex;
  align-items: center;
  position: relative;
}

.carve-tab-menu {
  padding: 0rem 1.5rem;
  cursor: pointer;
  outline: none;
  height: 4.5rem;
  line-height: 4.5rem;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: capitalize;
}

.carve-tab-content {
  display: none;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.015rem;
  max-height: 40rem;
  overflow: auto;
}

.carve-modal-inner .carve-tab-content {
  overflow: inherit;
  max-height: fit-content;
}

.carve-tab-content.active {
  display: block;
}

.carve-tabs-head .tab-indicator {
  position: absolute;
  left: 0;
  height: 4.5rem;
  background: var(--main);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0px;
  top: 0;
  z-index: -1;
}

.carve-tabs-body,
.carve-tabs-footer {
  padding: 1.5rem;
}

.carve-tab {
  border: 0.2rem solid var(--main);
  max-width: 100%;
  display: flex;
  flex-flow: column;
  overflow: auto;
}

.carve-tab-menu.active,
.carve-tabs-body {
  background: transparent;
}

.carve-tabs-body {
  overflow: auto;
}

.carve-tab-menu.active {
  font-weight: var(--font-medium);
  color: var(--vice);
}

/* +*+*+*+*+*+*+*+*+*+*+*+*++*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* BADGE +*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+*+ */
.carve-badge {
  padding: 0.3rem;
  border-radius: 10rem;
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
  font-size: 70%;
  font-weight: 600;
  letter-spacing: 0.0125rem;
  line-height: 1;
}

.badge-light {
  background: var(--vice);
}

.badge-dark {
  background: var(--main);
  color: var(--vice);
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* PILL +*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+***+*+*+*+*+*+*+*+*+*+*+*+ */
.carve-chips-group {
  display: flex;
  flex-wrap: wrap;
}

[class*="-chip"] {
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
}

.green-chip {
  color: var(--light-green-500) !important;
}

.red-chip {
  color: var(--abort) !important;
}


.carve-chips {
  border: 0.1rem solid var(--border);
  width: fit-content;
  padding: 0.5rem 1rem;
  border-radius: 10rem;
  cursor: pointer;
  margin: 0rem 0.7rem 0.5rem 0rem;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  transition: all 250ms ease-in-out;
  background-image: linear-gradient(180deg, #fff, #f5f5fa) !important;
  /* box-shadow: 0 4px 11px 0 rgba(37, 44, 97, .15), 0 1px 3px 0 rgba(93, 100, 148, .2); */
  color: var(--text2);
  font-weight: 600;
  min-width: 11rem;
  justify-content: center;
}

.carve-rect-chip {
  border-radius: 0.5rem;
  font-size: 75%;
  background: #6c6ff533;
  border-bottom: 0.1rem solid var(--main) !important;
  color: var(--main);
  text-transform: capitalize;
  padding: 0.25rem 0.5rem;
  border: 0;
  font-weight: 600;
  letter-spacing: 0.015rem;
  background-image: none !important;
  box-shadow: none;
}

.carve-rect-chip:hover {
  box-shadow: none !important;
}

.carve-chips.fill {
  background: var(--vice);
  border: 0.1rem solid var(--vice);
}

.carve-chips .icon-close {
  position: relative;
  top: auto;
  left: auto;
  display: none;
  right: auto;
  opacity: 0.5;
}

.chip-remove.carve-chips .icon-close {
  display: block;
}

.chip-right .icon-close {
  order: 2;
}

.chip-dark {
  background: var(--main);
  border: 0.1rem solid;
}

.carve-chips.chip-dark .icon-close {
  stroke: var(--vice);
  opacity: 1;
}

/* .carve-chips:hover {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, #6c6ff5 0px 0px 0px 2px;
} */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* carve-switch +*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+***+*+*+*+*+*+*+*+*+*+*+*+ */
.carve-switch label {
  position: relative;
  width: 5rem;
  height: 2.5rem;
  display: inline-block;
  cursor: pointer;
}

.carve-switch [type="checkbox"]:not(:checked)+label::before {
  border: none;
}

.carve-switch [type="checkbox"]:checked+label::before {
  box-shadow: none;
}

.carve-switch label::after,
.carve-switch label::before {
  transition: all 100ms linear;
  content: '';
  display: inline-block;
}

.carve-switch [type='checkbox']:not(:checked)+label::before,
.carve-switch [type='checkbox']:checked+label::before {
  width: 5rem;
  height: 2.5rem;
  border-radius: 10rem;
  background: var(--main);
}

/* .carve-switch [type='checkbox']:checked+label::before {
  background: var(--light-green-500);
  border: var(--light-green-500);
} */
.carve-switch [type='checkbox']:not(:checked)+label::after {
  width: 1.9rem;
  height: 1.9rem;
  top: 0.3rem;
}

.carve-switch [type='checkbox']:not(:checked)+label::after,
.carve-switch [type='checkbox']:checked+label::after {
  border-radius: 10rem;
  background: var(--light);
  position: absolute;
  border: 0;
  left: 0.3rem;
}

.carve-switch [type='checkbox']:checked+label::after {
  transform: translateX(2.5rem);
  background: var(--light);
  width: 1.9rem;
  height: 1.9rem;
  top: 0.3rem;
}

.carve-switch label span {
  position: absolute;
  z-index: 2;
  right: 0.4rem;
  line-height: 2.5rem;
  font-size: 80%;
  color: var(--light);
  font-weight: 600;
  display: none;
}

.carve-switch [type='checkbox']:not(:checked)+label .on {
  display: block;
}

.carve-switch [type='checkbox']:checked+label .off {
  display: block;
  right: auto;
  left: 0.4rem;
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* DRAWER +*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+***+*+*+*+*+*+*+*+*+*+*+*+ */
.carve-drawer .carve-drawer-inner {
  max-width: 30rem;
  width: 30rem;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--main);
  color: var(--light);
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 9993;
  animation: moveX 300ms ease-in-out;
}

@keyframes moveX {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@-webkit-keyframes moveX {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

.drawer-hide {
  animation: moveXHide 300ms ease-in-out !important;
}

@keyframes moveXHide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@-webkit-keyframes moveXHide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.drawer-right .carve-drawer-inner {
  right: 0;
  left: auto;
  animation: moveRight 300ms ease-in-out;
}

@keyframes moveRight {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

@-webkit-keyframes moveRight {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.drawer-right .drawer-hide {
  animation: moveXright 300ms ease-in-out !important;
}

@keyframes moveXright {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
  }
}

@-webkit-keyframes moveXright {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
  }
}

.carve-drawer.seek::after {
  content: '';
  display: block;
  background: rgba(0, 0, 0, 0.502);
  left: 0;
  right: 0;
  position: fixed;
  z-index: 9992;
  top: 0;
  bottom: 0;
  animation: wanein 300ms ease-in-out;
}

@keyframes wanein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes wanein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.waneout::after {
  animation: waneout 300ms ease-in-out !important;
}

@keyframes waneout {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes waneout {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.carve-drawer-head {
  min-height: 5rem;
  display: flex;
  align-items: center;
  padding: 1.5rem;
  box-shadow: none !important;
}

/* .carve-drawer-head::after {
  content: '';
  display: block;
  height: 4rem;
  width: 100%;
  background: var(--bg2);
  position: absolute;
  left: -1.1rem;
  top: auto;
  filter: blur(7px);
  z-index: 2;
  bottom: -2.8rem;
} */

.carve-drawer-head .heading-medium {
  margin: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 100ms ease-in-out;
}

.carve-drawer-body {
  padding: 1.5rem;
  height: 100vh;
  overflow-y: auto;
  background: var(--light);
}

/* .carve-drawer-body ul li::after {
  content: '';
  display: flex;
  width: 0;
  height: 0.1rem;
  background: var(--main);
  position: absolute;
  bottom: -0.1rem;
  margin: 0 auto;
  right: 0;
  left: 0;
  transform-origin: center center;
  transition: width 300ms linear;
  opacity: 0.4;
} */
.carve-drawer-body ul li {
  min-height: 4.5rem;
  line-height: 4.5rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: all 300ms ease-in-out;
  color: var(--text2);
}

.carve-drawer-body li .menu-icon {
  margin-right: 0.5rem;
  min-width: 2.8rem;
  fill: var(--light);
  width: 2.8rem;
  height: 2.8rem;
  transition: width 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.carve-drawer-body li span {
  text-transform: capitalize;
  font-size: 1.1rem;
  position: absolute;
  bottom: -1.8rem;
  left: 50%;
  transform: translateX(-50%);
}

.carve-drawer-body ul li:hover::after {
  width: 100%;
  left: 0;
}

.carve-drawer-body ul li:hover,
.carve-drawer-body ul li:focus {
  font-size: 1.66rem;
  background: var(--bg1);
  color: var(--text);
}

.carve-drawer-body ul li:hover span,
.carve-drawer-body ul li:focus span {
  color: var(--light);
  left: 100%;
  top: 1.3rem;
  margin-left: 2.5rem;
  background: var(--main);
  white-space: nowrap;
  height: max-content;
  line-height: 2;
  padding: 0rem 1.5rem;
  border-radius: 0.3rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.carve-drawer-body ul li:hover span::before,
.carve-drawer-body ul li:focus span::before {
  content: '';
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  position: absolute;
  border-left: 0.1rem solid var(--main);
  left: -0.7rem;
  border-bottom: 0.1rem solid var(--main);
  transform: rotate(45deg) translateY(-50%);
  top: 0.95rem;
  border-width: 1rem;
}

.carve-drawer-body ul li:hover::before,
.carve-drawer-body ul li:hover::after,
.carve-drawer-body ul li:focus::before,
.carve-drawer-body ul li:focus::after {
  content: '';
  display: inline-block;
  width: 4rem;
  height: 4rem;
  background: url("../image/edge.png") no-repeat;
  position: absolute;
  right: -1rem;
  top: -3rem;
  z-index: 2000;
  background-size: 3rem;
}

.carve-drawer-body ul li:hover::after,
.carve-drawer-body ul li:focus::after {
  bottom: -3rem;
  transform: rotate(-90deg);
  top: auto;
  left: auto;
  transition-delay: 200ms;
}

.carve-drawer-body li:hover .menu-icon,
.carve-drawer-body li:focus .menu-icon {
  fill: var(--text);
}

.carve-drawer-body::-webkit-scrollbar {
  width: 0.6rem;
  display: none;
}

.carve-drawer-body::-webkit-scrollbar-thumb {
  background: var(--main);
}

.carve-drawer-body::-webkit-scrollbar-track {
  background: var(--vice);
}

.carve-drawer-body:hover::-webkit-scrollbar {
  display: block;
}

.carve-drawer {
  display: none;
}

.carve-drawer.rise .carve-drawer-inner {
  max-width: 100%;
  bottom: 0;
  top: auto;
  height: auto;
  animation: rise 300ms ease-in-out;
  width: 100%;
  max-height: 70%;
}

@keyframes rise {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

@-webkit-keyframes rise {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.fall {
  animation: fall 300ms ease-in-out !important;
}

@keyframes fall {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(100%);
  }
}

@-webkit-keyframes fall {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(100%);
  }
}

.carve-drawer.rise .carve-drawer-inner,
.carve-drawer.rise .carve-drawer-inner .carve-drawer-head {
  border-radius: 1.5rem 1.5rem 0 0;
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*  TOAST +*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+***+*+*+*+*+*+*+*+*+*+*+*+ */
.carve-toast {
  background: var(--main);
  color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  position: fixed;
  top: 10.5rem;
  left: 1.5rem;
  right: 1.5rem;
  font-size: 1.4rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  z-index: 9999;
  display: none;
  animation: modalOp 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  max-width: 50rem;
  margin: 0 auto;
  line-height: 1.5;
}

.modal-cl {
  animation: modalCl 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes modalCl {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(-50px);
    opacity: 0;
  }
}



.palette-seek {
  animation: moveHorizontal 200ms ease-in-out;
}

@keyframes moveHorizontal {
  from {
    transform: translateX(70%);
  }

  to {
    transform: translateX(0);
  }
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* SIGN IN / SIGN UP +*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
.carve-password-block {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
}

.carve-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.5rem;
}

.carve-modal-inner .icon {
  right: 0.5rem;
  top: 0.5rem;
}

.carve-password-block .login {
  color: tomato;
}

@media (max-width: 768px) {

  /* footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
} */
  .left-drawer .drawers .carve-drawer {
    display: none;
    position: absolute;
    height: 100vh;
    box-shadow: 2px 0px 6px rgb(0 0 0 / 20%);
  }

  .icon-list {
    display: block !important;
  }

  .menu-item.active {
    border: none;
    padding: 0;
    font-weight: var(--font-medium);
  }

  .menu-item {
    line-height: 3rem;
  }

  .carve-line {
    display: block;
    margin-bottom: 1.5rem;
  }

  [class*='box-'] {
    width: 100%;
  }

  .carve-modal {
    width: 90%;
  }

  .split .carve-modal-inner {
    width: 100%;
  }

  .table-sticky th:last-child::before,
  .table-sticky td:last-child::before {
    box-shadow: -13px 0 12px -11px #e2e2e2 inset;
    content: " ";
    height: 100%;
    top: 0;
    left: -15px;
    position: absolute;
    width: 15px;
  }

  .menu-wrapper {
    display: none;
    width: 100%;
    position: fixed;
    top: 8.8rem;
    left: 0;
    right: 0;
    background: var(--main);
    padding: 1.5rem;
    animation: menu-skew 300ms ease-in-out alternate;
  }

  @keyframes menu-skew {
    from {
      transform: translateY(10px);
      opacity: 0;
    }

    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .menu-wrapper ul {
    display: block;
  }

  .menu-wrapper ul li {
    font-size: 85%;
    margin: 0;
  }

  .main-section-wrapper {
    flex-wrap: wrap;
    position: relative;
  }

  .logo-wrapper {
    width: 50%;
    display: flex;
    /* margin: 0 auto; */
    max-height: 7rem;
    height: auto;
    aspect-ratio: 43/10;
    justify-content: center;
  }

  /* uncomment the below css for first column */
  /* .table-sticky th:first-child::after, .table-sticky td:first-child::after {
        box-shadow: 13px 0 12px -11px #e2e2e2 inset;
        content: " ";
        height: 100%;
        top: 0;
        right: -15px;
        position: absolute;
        width: 15px;
    } */
}

@media (max-width: 360px) {
  /* .carve-modal-inner {
    max-height: 46rem !important;
  } */
}

@media (max-width: 576px) {
  /* .carve-line {
    display: block;
    margin-bottom: 1.5rem;
  } */
}

@media (min-width: 769px) {
  .left-drawer .drawers .carve-drawer {
    display: block;
  }

  .carve-menu-toggle {
    display: none;
  }

}

@media (max-width: 992px) {
  /* .left-drawer .drawers .carve-drawer {
    display: none;
    position: absolute;
    height: 100vh;
    box-shadow: 2px 0px 6px rgb(0 0 0 / 20%);
  } */
}

@media (min-width: 993px) {
  /* .left-drawer .drawers .carve-drawer {
    display: block;
  } */

  /* .left-drawer .drawers .carve-drawer .carve-drawer-body {
    height: calc(100vh - 13.8rem);
  } */
  .left-drawer .drawers .carve-drawer .carve-drawer-body::-webkit-scrollbar {
    display: none;
  }
}

.left-drawer {
  /* box-shadow: rgb(50 50 93 / 9%) 0px 2px 5px -1px, rgb(0 0 0 / 8%) 2px 1px 3px -1px; */
  z-index: 1;
}

.left-drawer .carve-drawer.seek::after {
  display: none;
}

.left-drawer .carve-drawer-inner {
  animation: none;
  position: relative;
  z-index: 2;
  display: block;
  transition: width 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[class*="template-"] {
  /* padding-top: 8.8rem;
  padding-left: 0;
  padding-right: 0; */
  height: 100vh;
  overflow: hidden;
}

.main-section-wrapper,
.main-section {
  display: flex;
  flex-wrap: wrap;
}

.main-section {
  justify-content: space-between;
  flex-flow: column;
  width: 100%;
  flex: 1;
  overflow: auto;
  height: calc(100vh - 8.8rem);
  /* padding: 1.5rem; */
}

.width-toggle {
  width: 6rem !important;
}

/* .rotate-toggle {
  transform: rotate(180deg);
  left: 1.5rem;
  width: 3rem;
  height: 3rem;
  padding: 0.5rem;
} */
.icon-list {
  position: absolute;
  left: 0;
  top: calc(50% - 1.2rem);
  display: none;
  z-index: 3;
}

.main-section .heading-large {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.carve-select-btn {
  width: 100%;
  border: 1px solid #caced1;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 !important;
}

.carve-select-val {
  text-align: left;
}

.arrow::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 2rem;
  height: 2rem;
  top: 50%;
  right: 0rem;
  z-index: 2;
  background: url("../image/caret-down.svg") no-repeat;
  transition: all 0.3s ease-in-out;
  transform: translateY(-50%);
  background-size: 2rem;
}

span.arrow {
  right: 0rem;
  position: relative;
}

.carve-select-dd {
  position: absolute;
  list-style: none;
  width: 100%;
  box-shadow: var(--dd-shadow);
  background-color: #fff;
  border: 1px solid #caced1;
  margin-top: 1rem;
  max-height: 20rem;
  overflow-y: auto;
  transition: 0.3s ease;
  transform: translateY(-1.5rem);
  opacity: 0;
  visibility: hidden;
  top: 100%;
  right: 0;
}

.carve-select-dd.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 2000;
  right: 0;
  left: auto;
  align-items: start;
  display: block;
  gap: 1rem;
  height: auto;
}

#profileSection li {
  width: 100%;
  padding: 0.5rem;
}

#profileSection li:hover .icon {
  fill: var(--light);
}

#profileSection {
  width: 200px;
  height: auto;
}

.carve-select-dd:focus-within {
  box-shadow: 0 10px 25px rgba(94, 108, 233, 0.6);
}

.carve-select-dd li {
  position: relative;
  cursor: pointer;
  display: flex;
  gap: 1rem;
  align-items: center;
  text-transform: capitalize;
}

.carve-select-dd li label {
  width: 100%;
  padding: 8px 10px;
  cursor: pointer;
  display: flex;
  gap: 1rem;
  align-items: center;
  text-align: left;
  font-size: 85%;
}


.carve-select-dd li:hover,
.carve-select-dd input:checked~label {
  background-color: var(--main);
  color: var(--light);
}

.carve-select-dd input:focus~label {
  background-color: #dfdfdf;
}

.carve-select-dd input[type="radio"] {
  position: absolute;
  left: 0;
  opacity: 0;
}

.carve-select.active .arrow {
  transform: rotate(180deg);
}

.carve-select.active .carve-select-dd {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 2000;
}

.carve-select-dd li label::before {
  display: none !important;
}

.option-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* .option-group .carve-select.carve-buttonblock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
} */
.status-green {
  background: var(--proceed);
  color: var(--light);
}

.option-group .title-medium {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 90%;
  margin-bottom: 1.5rem;
}

.ongoing-feature {
  position: absolute;
  right: 0;
  text-transform: capitalize;
}

.project-card sub {
  display: flex;
  min-height: 4.7rem;
  font-size: 75%;
  justify-content: center;
  align-items: center;
  color: var(--text2);
}

.project-card .carve-card-body p {
  margin-bottom: 4rem;
  font-size: 92%;
  text-align: left;
  line-height: 1.5;
}

.release-group {
  text-transform: capitalize;
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  border-top: 0.1rem dashed var(--border);
  margin: 1.5rem -1.5rem -1.5rem -1.5rem;
  color: var(--text2);
}

.release-group sup {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.release-group .input-field {
  margin-bottom: 0;
}

.carve-select-btn.proceed {
  background: var(--light-green);
  border-color: var(--light-green-500);
}

.d-0 {
  display: none;
}

.vice-bg .carve-rect-chip {
  background: var(--light-green);
  border-bottom: 0 !important;
  color: var(--light-green-500);
}

.vice-bg.warning .carve-rect-chip {
  background: var(--abort-500);
  border-bottom: 0 !important;
  color: var(--abort);
}

.vice-bg.dark .carve-rect-chip {
  background: var(--purple-500);
  border-bottom: 0 !important;
  color: var(--main);
}

.menu-wrapper .icon {
  fill: var(--text);
}

.border-0 {
  border: none !important;
}

#outputDiv {
  line-height: 2rem;
}

.form .icon-close.rounded {
  display: none !important;
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+**+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* TEXT COLORS *+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+**+*+*+*+*+ */
.carve-main-text {
  color: var(--main);
}

.carve-text-vice {
  color: var(--vice);
}

.carve-text-dull {
  opacity: 0.3;
  color: var(--dark);
}

.carve-text-body {
  color: var(--text);
}

.carve-text-body2 {
  color: var(--text2);
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* TEXT ALIGNMENTS *+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+ */
.carve-text-start {
  text-align: start;
}

.carve-text-end {
  text-align: end;
}

.carve-text-middle {
  text-align: center;
}

.carve-text-justify {
  text-align: justify;
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* BACKGROUND COLORS *+*+*+*+*+*+**+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
.carve-wall-light {
  background: var(--light);
}

.carve-wall-dark {
  background: var(--dark);
}

.carve-wall-main {
  background: var(--main);
}

.carve-wall-vice {
  background: var(--vice);
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* TEXT THICKNESS *+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */

.carve-text-density-tiny {
  font-weight: 400;
}

.carve-text-density-norm {
  font-weight: 600;
}

.carve-text-density-hefty {
  font-weight: 900;
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* MARGINS +*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+ */
.carve-outside-tiny {
  margin: 1.5rem;
}

.carve-outside-norm {
  margin: 2rem;
}

.carve-outside-hefty {
  margin: 2.5rem;
}

/* top */
.carve-outside-top-tiny {
  margin-top: 1.5rem;
}

.carve-outside-top-norm {
  margin-top: 2rem;
}

.carve-outside-top-hefty {
  margin-top: 2.5rem;
}

/* bottom */
.carve-outside-bottom-tiny {
  margin-bottom: 1.5rem;
}

.carve-outside-bottom-norm {
  margin-bottom: 2rem;
}

.carve-outside-bottom-hefty {
  margin-bottom: 2.5rem;
}

/* left */
.carve-outside-left-tiny {
  margin-left: 1.5rem;
}

.carve-outside-left-norm {
  margin-left: 2rem;
}

.carve-outside-left-hefty {
  margin-left: 2.5rem;
}

/* right */
.carve-outside-right-tiny {
  margin-right: 1.5rem;
}

.carve-outside-right-norm {
  margin-right: 2rem;
}

.carve-outside-right-hefty {
  margin-right: 2.5rem;
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+* PADDING +*+*+*+*+*+*+*+*+**+*+* */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+ */
.carve-inside-tiny {
  padding: 1.5rem;
}

.carve-inside-norm {
  padding: 2rem;
}

.carve-inside-hefty {
  padding: 2.5rem;
}

/* top */
.carve-inside-top-tiny {
  padding-top: 1.5rem;
}

.carve-inside-top-norm {
  padding-top: 2rem;
}

.carve-inside-top-hefty {
  padding-top: 2.5rem;
}

/* bottom */
.carve-inside-bottom-tiny {
  padding-bottom: 1.5rem;
}

.carve-inside-bottom-norm {
  padding-bottom: 2rem;
}

.carve-inside-bottom-hefty {
  padding-bottom: 2.5rem;
}

/* left */
.carve-inside-left-tiny {
  padding-left: 1.5rem;
}

.carve-inside-left-norm {
  padding-left: 2rem;
}

.carve-inside-left-hefty {
  padding-left: 2.5rem;
}

/* right */
.carve-inside-right-tiny {
  padding-right: 1.5rem;
}

.carve-inside-right-norm {
  padding-right: 2rem;
}

.carve-inside-right-hefty {
  padding-right: 2.5rem;
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* WIDTH *+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
.carve-width-quarter {
  width: 25%;
}

.carve-width-half {
  width: 50%;
}

.carve-width-full {
  width: 100%;
}

.carve-width-auto {
  width: auto;
}

.carve-height-quarter {
  height: 25%;
}

.carve-height-half {
  height: 50%;
}

.carve-height-full {
  height: 100%;
}

.carve-height-auto {
  height: auto;
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* POSITION *+*+*+*+*+*++*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
.carve-spot-absolute {
  position: absolute;
}

.carve-spot-relative {
  position: relative;
}

.carve-spot-freeze {
  position: fixed;  
}

.carve-spot-hang {
  position: sticky;
}

/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* DISPLAY *+*+*+*+*+*++*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+ */


/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+* CONTAINER +*+*+*+*+*+*+*+*+*+*+*+*+ */
/* +*+*+*+*+*+*+*+*+*+*+*+*+*+*+**+*+*+*+*+*+*+*+*+*+*+*+*+ */
.carve-lean-body,
.carve-fat-body {
  width: 100%;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.carve-lean-body {
  max-width: 128rem;
}

.carve-fat-body {
  max-width: 100%;
}

.carve-line {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  box-sizing: border-box
}

[class*='box-'] {
  padding: 1.5rem;
  box-sizing: border-box;
}

.box-1 {
  max-width: 8.33%;
  flex: 0 0 8.33%;
}

.box-2 {
  max-width: 16.66%;
  flex: 0 0 16.66%;
}

.box-3 {
  max-width: 25%;
  flex: 0 0 25%;
}

.box-4 {
  max-width: 33.33%;
  flex: 0 0 33.33%;
}

.box-5 {
  max-width: 41.66%;
  flex: 0 0 41.66%;
}

.box-6 {
  max-width: 50%;
  flex: 0 0 50%;
}

.box-7 {
  max-width: 58.33%;
  flex: 0 0 58.33%;
}

.box-8 {
  max-width: 66.66%;
  flex: 0 0 66.66%;
}

.box-9 {
  max-width: 75%;
  flex: 0 0 75%;
}

.box-10 {
  max-width: 83.33%;
  flex: 0 0 83.33%;
}

.box-11 {
  max-width: 91.66%;
  flex: 0 0 91.66%;
}

.box-12 {
  max-width: 100%;
  flex: 0 0 100%;
}

@media only screen and (max-width: 575.98px) {
  [class*='box-'] {
    max-width: 100%;
    flex: 0 0 100%;
  }

}

/* Small Devices (Tablets) */
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .box-sm-1 {
    max-width: 8.33%;
    flex: 0 0 8.33%;
  }

  .box-sm-2 {
    max-width: 16.66%;
    flex: 0 0 16.66%;
  }

  .box-sm-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }

  .box-sm-4 {
    max-width: 33.33%;
    flex: 0 0 33.33%;
  }

  .box-sm-5 {
    max-width: 41.66%;
    flex: 0 0 41.66%;
  }

  .box-sm-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }

  .box-sm-7 {
    max-width: 58.33%;
    flex: 0 0 58.33%;
  }

  .box-sm-8 {
    max-width: 66.66%;
    flex: 0 0 66.66%;
  }

  .box-sm-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }

  .box-sm-10 {
    max-width: 83.33%;
    flex: 0 0 83.33%;
  }

  .box-sm-11 {
    max-width: 91.66%;
    flex: 0 0 91.66%;
  }

  .box-sm-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

/* Medium Devices (Laptops, Small Desktops) */
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .box-md-1 {
    max-width: 8.33%;
    flex: 0 0 8.33%;
  }

  .box-md-2 {
    max-width: 16.66%;
    flex: 0 0 16.66%;
  }

  .box-md-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }

  .box-md-4 {
    max-width: 33.33%;
    flex: 0 0 33.33%;
  }

  .box-md-5 {
    max-width: 41.66%;
    flex: 0 0 41.66%;
  }

  .box-md-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }

  .box-md-7 {
    max-width: 58.33%;
    flex: 0 0 58.33%;
  }

  .box-md-8 {
    max-width: 66.66%;
    flex: 0 0 66.66%;
  }

  .box-md-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }

  .box-md-10 {
    max-width: 83.33%;
    flex: 0 0 83.33%;
  }

  .box-md-11 {
    max-width: 91.66%;
    flex: 0 0 91.66%;
  }

  .box-md-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

/* Large Devices (Desktops) */
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .box-lg-1 {
    max-width: 8.33%;
    flex: 0 0 8.33%;
  }

  .box-lg-2 {
    max-width: 16.66%;
    flex: 0 0 16.66%;
  }

  .box-lg-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }

  .box-lg-4 {
    max-width: 33.33%;
    flex: 0 0 33.33%;
  }

  .box-lg-5 {
    max-width: 41.66%;
    flex: 0 0 41.66%;
  }

  .box-lg-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }

  .box-lg-7 {
    max-width: 58.33%;
    flex: 0 0 58.33%;
  }

  .box-lg-8 {
    max-width: 66.66%;
    flex: 0 0 66.66%;
  }

  .box-lg-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }

  .box-lg-10 {
    max-width: 83.33%;
    flex: 0 0 83.33%;
  }

  .box-lg-11 {
    max-width: 91.66%;
    flex: 0 0 91.66%;
  }

  .box-lg-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

/* Extra Large Devices (Large Desktops) */
@media only screen and (min-width: 1200px) {
  .box-xl-1 {
    max-width: 8.33%;
    flex: 0 0 8.33%;
  }

  .box-xl-2 {
    max-width: 16.66%;
    flex: 0 0 16.66%;
  }

  .box-xl-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }

  .box-xl-4 {
    max-width: 33.33%;
    flex: 0 0 33.33%;
  }

  .box-xl-5 {
    max-width: 41.66%;
    flex: 0 0 41.66%;
  }

  .box-xl-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }

  .box-xl-7 {
    max-width: 58.33%;
    flex: 0 0 58.33%;
  }

  .box-xl-8 {
    max-width: 66.66%;
    flex: 0 0 66.66%;
  }

  .box-xl-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }

  .box-xl-10 {
    max-width: 83.33%;
    flex: 0 0 83.33%;
  }

  .box-xl-11 {
    max-width: 91.66%;
    flex: 0 0 91.66%;
  }

  .box-xl-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}