@import url('variables.css');
*{
	margin: 0; 
	padding:0;
}
body{
	background-color: var(--bg-color-primary);
}
main{
  min-height: 85vh;
}
footer{
	color: var(--font-color-primary);
}
a{
  color: var(--font-color-primary);
  cursor: pointer;
  text-decoration: none;
}
a:hover{
  color: var(--font-color-default);
  text-decoration: none;
}
hr {
  margin: 0;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1021;
  top: 8%;
  left: 0;
  background-color: var(--bg-color-primary);
  overflow-x: hidden;
  transition: 0.5s;
  padding: 10px;
}
.overlay-content {
  position: relative;
  top: 1%;
  width: 100%;
}
.overlay-body{
  height: 80%;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.neu_flat_primary{
	background: var(--bg-color-primary);
	box-shadow: var(--neu-flat-primary);
}
.neu_flat_secondary{
  background: var(--bg-color-secondary);
  box-shadow: var(--neu-flat-secondary);
}
.neu_pressed_primary{
	background: var(--bg-color-primary);
	box-shadow: var(--neu-pressed-primary);
}
.neu_pressed_secondary{
  background: var(--bg-color-secondary);
  box-shadow: var(--neu-pressed-secondary);
}

.rounded_50{
	border-radius: 50px;
}
.helper-text{
	/*border: 1px solid yellow;*/
	height: 25px;
	color: var(--font-color-danger) !important;
  padding-left: 10px;
  font-size: 10px;
  font-weight: bolder;
}
.height_60_px{
  height: 60px;
}
.show_pending{
  display: none;
}
.pointer{
  cursor: pointer;
}
.bg-primary{
    background-color: var(--bg-color-primary) !important;
  }
.toggle-on.btn {
    padding-right: 1.5rem;
    color: var(--font-color-success) !important;
}
.toggle-off.btn {
    padding-right: 1.5rem;
    color: var(--font-color-danger) !important;
}
.swal2-popup {
    background: var(--bg-color-primary);
}
.list_wrapper {
  height: 60vh; 
  overflow-y: auto;
}
.pagination_wrapper {
  height: 10vh; 
}
/*scroll bar css start*/
::-webkit-scrollbar-track{
  background-color: var(--bg-color-primary);
}
::-webkit-scrollbar{
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb{
  background-color: var(--bg-color-secondary);
}
/*end scroll bar*/

/**
 * ==============================================
 * Dot Floating
 * ==============================================
 */
 .stage {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0.3rem 0;
    overflow: hidden;
  }
.dot-floating {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--bg-color-default);
  color: var(--bg-color-default);
  animation: dotFloating 3s infinite cubic-bezier(0.15, 0.6, 0.9, 0.1);
}

.dot-floating::before, .dot-floating::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
}

.dot-floating::before {
  left: 0px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--bg-color-default);
  color: var(--bg-color-default);
  animation: dotFloatingBefore 3s infinite ease-in-out;
}

.dot-floating::after {
  left: 0px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--bg-color-default);
  color: var(--bg-color-default);
  animation: dotFloatingAfter 3s infinite cubic-bezier(0.4, 0, 1, 1);
}

@keyframes dotFloating {
  0% {
    left: calc(-50% - 5px);
  }
  75% {
    left: calc(50% + 105px);
  }
  100% {
    left: calc(50% + 105px);
  }
}

@keyframes dotFloatingBefore {
  0% {
    left: -50px;
  }
  50% {
    left: -12px;
  }
  75% {
    left: -50px;
  }
  100% {
    left: -50px;
  }
}

@keyframes dotFloatingAfter {
  0% {
    left: -100px;
  }
  50% {
    left: -24px;
  }
  75% {
    left: -100px;
  }
  100% {
    left: -100px;
  }
}

/**
 * ==============================================
 * Dot Flashing
 * ==============================================
 */
.dot-flashing {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--bg-color-default);
  color: var(--bg-color-default);
  animation: dotFlashing 1s infinite linear alternate;
  animation-delay: .5s;
}

.dot-flashing::before, .dot-flashing::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
}

.dot-flashing::before {
  left: -15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--bg-color-default);
  color: var(--bg-color-default);
  animation: dotFlashing 1s infinite alternate;
  animation-delay: 0s;
}

.dot-flashing::after {
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--bg-color-default);
  color: var(--bg-color-default);
  animation: dotFlashing 1s infinite alternate;
  animation-delay: 1s;
}

@keyframes dotFlashing {
  0% {
    background-color: var(--bg-color-default);
  }
  50%,
  100% {
    background-color: var(--bg-color-primary);
  }
}

/* navigation */
.navigationn_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.navigationn {
  position: relative;
  display: flex;
  justify-content: center;
  /* align-items: center; */
}

.menuToggle {
  position: relative;
  width: 35px;
  height: 35px;
  background: var(--bg-color-primary);
	box-shadow: var(--neu-flat-primary);
  border-radius: 70px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menuToggle::before {
  content: '+';
  position: absolute;
  font-size: 1em;
  font-weight: bold;
  color: var(--font-color-primary);
  transition: 1.5s;
}
.menuToggle.active {
  transition: 1.5s;
  box-shadow: var(--neu-pressed-primary);
}
.menuToggle.active::before {
  transform: rotate(225deg);
}

.menuu {
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--bg-color-primary);
	box-shadow: var(--neu-flat-primary);
  border-radius: 70px;
  z-index: -1;
  transition: transform 0.5s, width 0.5s, height 0.5s;
  transition-delay: 1s, 0.5s, 0.5s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.menuToggle.active ~ .menuu {
  width: 350px;
  height: 40px;
  z-index: 1;
  transform: translate(-210px);
  transition-delay: 0s, 0.5s, 0.5s;
}

.menuu::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--bg-color-primary);
  /* background: red; */
  left: calc(50% - 10px);
  top: 8px;
  transform: rotate(45deg);
  border-radius: 2px;
  transition: 0.5s;
}

.menuToggle.active ~ .menuu::before {
  transition-delay: 0.5s;
  top: 12px; 
  left: 340px;
}

.menuu ul {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-wrap: wrap; */
  height: 20px;
  margin: 10px 10px 0px 10px;
  overflow: hidden;
}

.menuu ul li {
  list-style: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-30px);
  transition: 0.25s;
  transition-delay: calc(0s + 0.1s);
}

.menuToggle.active ~ .menuu ul li {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
  transition-delay: calc(0.75s + 0.1s);
}

.menuu ul li a {
  display: block;
  font-size: 1.2em;
  text-decoration: none;
  color: var(--font-color-primary);
}

.menuu ul li:hover a{
  color: var(--font-color-secondary);

}



.custom-btn {
  width: 35px;
  height: 35px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
}

/* 4 */
.btn-4 {
  background-color: #4dccc6;
background-image: linear-gradient(315deg, #4dccc6 0%, #0c8f86 74%);
  line-height: 37px;
  padding: 0;
  border: none;
  margin: 8px;
}
.btn-4:hover{
  background-color: #89d8d3;
background-image: linear-gradient(315deg, #89d8d3 0%, #03c8a8 74%);
}
.btn-4 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-4:before,
.btn-4:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
   box-shadow:  4px 4px 6px 0 rgba(255,255,255,.9),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.9),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
  transition: all 0.3s ease;
}
.btn-4:before {
  height: 0%;
  width: .1px;
}
.btn-4:after {
  width: 0%;
  height: .1px;
}
.btn-4:hover:before {
  height: 100%;
}
.btn-4:hover:after {
  width: 100%;
}
.btn-4 span:before,
.btn-4 span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.9),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.9),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
  transition: all 0.3s ease;
}
.btn-4 span:before {
  width: .1px;
  height: 0%;
}
.btn-4 span:after {
  width: 0%;
  height: .1px;
}
.btn-4 span:hover:before {
  height: 100%;
}
.btn-4 span:hover:after {
  width: 100%;
}

.checkboxes {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.checkboxes__row {
  display: flex;
}
.checkboxes__row:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.checkboxes__item {
  padding: 15px;
  width: 100%;
}
/* STYLE H */

.checkbox.style-h {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-h input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-h input:checked ~ .checkbox__checkmark {
  background-color: #5cb85c;
}
.checkbox.style-h input:checked ~ .checkbox__checkmark:after {
  opacity: 1;
  top: -3px;
}
.checkbox.style-h input:checked ~ .checkbox__body {
  background-position: 0 0;
  color: #fff;
  background-color: #5cb85c;
}
.checkbox.style-h:hover input ~ .checkbox__checkmark {
  background-color: white;
}
.checkbox.style-h:hover input:checked ~ .checkbox__checkmark {
  background-color: #5cb85c;
}
.checkbox.style-h:hover .checkbox__body {
  box-shadow: 5px 5px 10px rgba(0,0,0,0.2);
}
.checkbox.style-h .checkbox__checkmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  height: 22px;
  width: 22px;
  background-color: white;
  transition: background-color 0.25s ease;
  border-radius: 4px;
  box-shadow: inset 2px 2px 4px rgba(0,0,0,0.1), inset -2px -2px 4px rgba(255,255,255,0.4);
}
.checkbox.style-h .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 10px;
  top: -15px;
  width: 10px;
  height: 20px;
  border: solid #fff;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.25s ease, top 0.25s ease;
}
.checkbox.style-h .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
  transition: font-weight 0.25s ease;
  font-weight: bold;
  color: #333;
  /* background: linear-gradient(45deg, #ff0070 0%, #f7cb15 50%, #f7cb15 50%, #f7cb15 100%); */
  background-color: white;
  background-size: 200% 100%;
  background-position: 100% 0;
  padding: 9px;
  padding-left: 52px;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  transition: box-shadow 0.25s ease, background 1s ease, color 0.25s ease;
}
