/* Importing Poppins Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import "assets/fonts/font.css";

/* Color theme declare */
* {
  text-decoration: none;
  -moz-user-select: none; -webkit-user-select: none; -ms-user-select:none; user-select:none;-o-user-select:none;" 
 unselectable="on"
 onselectstart="return false;
}

:root {
  /* --primary: #13a699; */
  /* --primary: #a2d0c1; */
  --primary: #fdc81a;
  --primary-old: #e9d24e;
  --primary2: #f8dc81;
  --light-primary: #FFF1D8;
  --dark-primary: #FFB200;
  --purple-black: #454a70;
  --flat-black: #0c0c0c;
  --white: #fefefe;
  --purple: #6F3F87;
  --blue: #1987BA;
  --dark-red: #c0392b;
}

body {
  margin: 0;
  font-family: "Roboto",sans-serif;
  font-weight: 300;
}

input,
textarea,
button,
select,
a,
div {
  -webkit-tap-highlight-color: transparent;
}
input:focus, button:focus {
  outline: 0
}

/*
 *
 * FONT PROPERTIES
 * 
 */

/* Font Declared*/
.poppins {
  font-family: 'Poppins' !important;
}
/* Font Weight */
.fw-100 {
  font-weight: 100;
}
.fw-200 {
  font-weight: 200;
}
.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}
.fw-900 {
  font-weight: 900;
}
/* Font Size */
.title-large {
  font-size: 2rem;
}
.title {
  font-size: 1.6rem;
}
.caption-large {
  font-size: 1.4rem;
}
.caption {
  font-size: 1.2rem;
}
.caption-sm {
  font-size: 1rem;
}
.caption-tn {
  font-size: 0.9rem;
}
.subtitle {
  font-size: 0.8rem;
}
.subtitle-sm {
  font-size: 0.7rem;
}
.semi-small {
  font-size: 0.6rem;
}
.small {
  font-size: 0.4rem;
}

/* 
 *
 * MARGIN & PADDING PROPERTIES
 *
 */

/* Margin Properties */
/* Global Margin */
.m-0 {
  margin: 0 !important
}
.m-sm {
  margin: 0.3rem !important;
}
.m-1 {
  margin: 0.5rem !important;
}
.m-2 {
  margin: 1rem !important;
}
.m-3 {
  margin: 1.5rem !important;
}
.m-4 {
  margin: 2rem !important;
}
.m-5 {
  margin: 2.5rem !important;
}
.m-6 {
  margin: 3rem !important;
}
.m-7 {
  margin: 3.5rem !important;
}
.m-8 {
  margin: 4rem !important;
}
.m-9 {
  margin: 4.5rem !important;
}
.m-10 {
  margin: 5rem !important;
}
.m-11 {
  margin: 5.5rem !important;
}
.m-12 {
  margin: 6rem !important;
}

/* Margin Top */
.mt-0 {
  margin-top: 0 !important;
}
.mt-nn {
  margin-top: 0.1rem !important;
}
.mt-tn {
  margin-top: 0.2rem !important;
}
.mt-sm {
  margin-top: 0.3rem !important;
}
.mt-1 {
  margin-top: 0.5rem !important;
}
.mt-2 {
  margin-top: 1rem !important;
}
.mt-3 {
  margin-top: 1.5rem !important;
}
.mt-4 {
  margin-top: 2rem !important;
}
.mt-5 {
  margin-top: 2.5rem !important;
}
.mt-6 {
  margin-top: 3rem !important;
}
.mt-7 {
  margin-top: 3.5rem !important;
}
.mt-8 {
  margin-top: 4rem !important;
}
.mt-9 {
  margin-top: 4.5rem !important;
}
.mt-10 {
  margin-top: 5rem !important;
}
/* Margin Top Negative */
.mt-n1 {
  margin-top: -0.5rem !important;
}
.mt-n2 {
  margin-top: -1rem !important;
}
.mt-n3 {
  margin-top: -1.6rem !important;
}

/* Margin Left */
.ml-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.ml-sm {
  margin-left: 0.3rem !important;
}
.ml-tn {
  margin-left: 0.2rem !important;
}
.ml-1 {
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}
.ml-2 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}
.ml-3 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

/* Margin Right */
.mr-sm {
  margin-right: 0.3rem !important;
}
.mr-tn {
  margin-right: 0.2rem !important;
}
.mr-nn {
  margin-right: 0.1rem !important;
}
.mr-1 {
  margin-right: 0.5rem !important;
}
.mr-2 {
  margin-right: 1rem !important;
}
.mr-3 {
  margin-right: 1.5rem !important;
}
.mr-4 {
  margin-right: 2rem !important;
}
.mr-5 {
  margin-right: 2.5rem !important;
}
.mr-6 {
  margin-right: 3rem !important;
}
/* Margin Bottom */
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-nn {
  margin-bottom: 0.1rem !important;
}
.mb-tn {
  margin-bottom: 0.2rem !important;
}
.mb-sm {
  margin-bottom: 0.3rem !important;
}
.mb-1 {
  margin-bottom: 0.5rem !important;
}
.mb-2 {
  margin-bottom: 1rem !important;
}
.mb-3 {
  margin-bottom: 1.5rem !important;
}
.mb-4 {
  margin-bottom: 2rem !important;
}
.mb-5 {
  margin-bottom: 2.5rem !important;
}
.mb-6 {
  margin-bottom: 3rem !important;
}
.mb-7 {
  margin-bottom: 3.5rem !important;
}
.mb-8 {
  margin-bottom: 4rem !important;
}
/* Margin X */
.mx-sm {
  margin-left: 0.3rem !important;
  margin-right: 0.3rem !important
}
.mx-1 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}
.mx-2 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}
.mx-3 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}
.mx-4 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}
/* Margin Y */
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-1 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.my-2 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-3 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.my-4 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
/* Padding */

.p-0 {
  padding: 0 !important;
}
.p-sm {
  padding: .3rem !important;
}
.p-1 {
  padding: 0.5rem !important;
}
.p-2 {
  padding: 1rem !important;
}
.p-3 {
  padding: 1.5rem !important;
}
.p-4 {
  padding: 2rem !important;
}

/* Padding X */
.px-sm {
  padding-left: 0.3rem !important;
  padding-right: 0.3rem !important;
}
.px-1 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.px-2 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.px-3 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.px-4 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}
.px-5 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}
/* padding y */
.py-sm {
  padding-top: 0.3rem !important;
  padding-bottom: 0.3rem !important;
}
.py-tn {
  padding-top: 0.2rem !important;
  padding-bottom: 0.2rem !important;
}
.py-1 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-2 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.py-3 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.py-4 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
/* padding l */
.pl-1 {
  padding-left: 0.5rem !important;
}
.pl-2 {
  padding-left: 1rem !important;
}
.pl-3 {
  padding-left: 1.5rem !important;
}
/* Padding Bottom */
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 0.5rem !important;
}
.pb-2 {
  padding-bottom: 1rem !important;
}
.pb-8 {
  padding-bottom: 4rem !important;
}
/* Padding Right */
.pr-tn {
  padding-right: 0.2rem !important;
}
.pr-sm {
  padding-right: 0.5rem !important;
}
.pr-1 {
  padding-right: 0.5rem !important;
}
.pr-2 {
  padding-right: 1rem !important;
}

/* padding top */
.pt-1 {
  padding-top: 0.5rem !important;
}
.pt-2 {
  padding-top: 1rem !important;
}
.pt-3 {
  padding-top: 1.5rem !important;
}
.pt-6 {
  padding-top: 3rem !important;
}
/* 
 *
 * LAYOUT PROPERTIES
 *
 */
.display-inline-block {
  display: inline-block !important;
}
.display-flex {
  display: flex;
}
.flex-direction-row {
  flex-direction: row;
}
.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
.input-group {
  position: relative;
  width: 100%;
}
.input-icon {
  width: 1.6rem;
  margin-left: 0.3rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%)
}
.input-icon-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.8rem;
}
.icon-left {
  text-indent: 1rem;
}
/* Row Properties */
.row {
  display: flex; 
  width: 100%;
  flex-direction: row;
  box-sizing: border-box;
}

/* Col Properties */
.col {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
}
.col-1 {
  width: 8.3%; 
}
.col-2 {
  width: 16.7%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.33%;
}
.col-5 {
  width: 41.7%;
}
.col-6 {
  width: 50% !important;
}
.col-7 {
  width: 58.33% !important;
}
.col-8 {
  width: 66.67%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.33%;
}
.col-11 {
  width: 91.17%;
}
.col-12 {
  width: 100%;
}
.clear {
  clear: both;
}
.text-input {
  width: 100%;
  padding: 0.6rem !important;
  box-sizing: border-box;
  padding: 0;
  border-width: 0;
}
/* Aligning */
.justify-content-center {
  justify-content: center;
}
.justify-content-end {
  justify-content: flex-end;
}
.justify-content-space-between {
  justify-content: space-between;
}
.justify-content-space-around {
  justify-content: space-around;
}
.align-items-center {
  align-items: center;
}
.align-items-flex-end {
  align-items: flex-end
}
.overflow-hidden {
  overflow: hidden
}
.overflow-x-hidden {
  overflow-x: hidden
}
.overflow-x-scroll {
  overflow-x: scroll
}
.align-self-end {
  align-self: flex-end;
}
.align-self-center {
  aligh-self: center;
}
.stick-bottom {
  bottom: 0
}
/*
 *
 * COMPONENTS
 * 
 */

.card {
  position: relative;
  width: cover;
  height: auto;
  background: #FFF;
  border-radius: 1rem;
}
.snackbar {
  position: fixed;
  bottom: 0.5rem;
  width: 90%;
  left: 50%;
  font-family: 'roboto';
  font-size: 0.8rem;
  z-index: 1000000;
  border-radius: 0.3rem;
  color: #fefefe;
  transform: translateX(-50%);
  background: rgb(21, 21, 21);
  padding: 0.8rem 0.5rem;
  box-sizing: border-box;
  animation-fill-mode: forwards;
  animation: hide 3s linear;
  opacity: 0;
}
@keyframes hide {

  8%, 79% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
  }
}
.modal{
  /* transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275); */
  /* visibility: hidden; */
  width: 100%;
  height: 93.4vh;
  position: fixed;
  top: 100rem;
  background:rgba(0, 0, 0, 0.4);
  z-index: 9999999;
  flex-direction:row;
  justify-content: center;
  align-items: center;
  overflow: auto;
  overscroll-behavior: contain;
  animation: gototop .6s cubic-bezier(0.77, 0, 0.175, 1);
  animation-fill-mode: forwards;
}
@keyframes gototop {
  0% {
    top: 100rem;
  }
  100% {
    top: 3rem;
  }
}
.modal-wrapper {
  /* overflow-y: auto; */
  background: #fefefe;
  width: 100%;
  /* border-radius: 0.5rem; */
  /* box-sizing: border-box; */
  margin: 0 !important;
}
.modal-header {
  display: flex;
  flex-direction: row;
  /* justify-content: space-between; */
  padding: 0.6rem 0.8rem;
  /* background:rgb(21, 21, 21);
  color: var(--dark-primary) */
}
.modal-content {
  position: relative;
  /* min-height: 100%; */
  background: #fefefe;
  box-sizing: border-box;
  padding: 0.8rem;
  /* overflow-y: auto; */
  /* overflow-x: hidden; */
  overscroll-behavior: contain 
}
.dialog-wrapper {
  animation: show-bottom 300ms ease-in-out;
  position: fixed;
  width: 100vh;
  height: 100vh;
  z-index: 99998;
  background: rgba(0, 0, 0, 0.3);
  bottom: 0;
  /* filter: blur(4px) */
}
@keyframes show-bottom {
  0% {
    opacity: 0;
    bottom: -20rem;
  }
  100% {
    opacity: 1;
    bottom: 0rem;
  }
}
.dialog-box {
  background: #fefefe;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 1rem;
  border: 1px solid #ddd;
  z-index: 99999;
  width: 60%;
  overflow-x: hidden
}
.dialog-title {
  padding: 0.8rem 1.5rem 0 1.5rem;
  display: flex;
  font-family: poppins;
  font-weight: 600;
  font-size: 1rem;
}
.dialog-content {
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  font-family: roboto;
  font-size: 0.9rem;
  font-weight: 400;  
  color: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid #ddd
}
.dialog-footer {
  display: flex;
  flex-direction: row;
}
.dialog-footer .col {
  padding: 0.5rem;
  font-family: poppins;
  font-weight: 500;
}
.dialog-footer .col:first-child {
  border-right: 1px solid #ddd;
}
/*
 *
 * TEXT PROPERTIES
 * 
 */

/* Text Coloring */
.text-grey {
  color: #b0b0b0;
}
.text-muted {
  color: rgba(0, 0, 0, 0.4)
}
.text-muted-thick {
  color: rgba(0, 0, 0, 0.6)
}
.text-light-muted {
  color: #ddd;
}
.text-dark-muted {
  color: rgba(22, 22, 22, 0.5)
}
.text-white {
  color: #fff !important;
}
.text-semi-black {
  color: #0c0c0c !important;
}
.text-blue-black {
  color: #454a70
}
.text-dark-primary {
  color: var(--dark-primary)
}
.text-blue {
  color: var(--blue)
}

/* Text Transform */
.text-uppercase {
  text-transform: uppercase;
}
.lt-space-sm {
  letter-spacing: 2px;
}
.text-ellipsis-1 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.text-trans-rotate-270 {
  transform: rotate(270deg)
}

/* Text aligning */
.text-align-center {
  text-align: center;
}
.text-align-right {
  text-align: right;
}
/* 
 *
 * COLORING
 *
 */

/* Background Theme */
.bg-primary {
  background-color: var(--primary)
}
.bg-light-primary {
  background-color: var(--light-primary)
}
.bg-dark-primary {
  background-color: var(--dark-primary)
}
.bg-blue {
  background-color: var(--blue)
}
.bg-purple {
  background-color: var(--purple)
}
.bg-dark-red {
  background-color: var(--dark-red)
}
.bg-white {
  background-color: var(--white) !important;
}
.bg-aliceblue {
  background-color: aliceblue;
}
/* Fill Properties */
.fill-purple-black {
  fill: var(--purple-black)
}
.fill-semi-black {
  fill: rgba(21, 21, 21, 0.8)
}
.fill-muted {
  fill: #ccc
}
.fill-white {
  fill: white
}

/* Border Color */
.border-primary {
  border-color: var(--primary)
}
.border-dark-primary {
  border-color: var(--dark-primary)
}
.border-blue {
  border-color: var(--blue)
}
.no-border {
  border-width: 0
}

/* Shadow Properties */ 
.low-shadow {
  box-shadow: 3px 5px 12px -2px rgba(126, 126, 126, 0.2)
}
.low-shadow-bottom {
  box-shadow: 0px 5px 12px -5px rgba(126, 126, 126, 0.2)
}
.shadow-around {
  box-shadow: 0px 0px 16px -5px rgba(126, 126, 126, 0.4)
}
/* Bottom Bar Propertiers */
.bottom-bar {
  /* top: 5%; */
  display: flex;
  justify-content: center;
  position: fixed;
  width: 100%;
  z-index: 99999;
}
.bottom-bar .bottom-wrapper {
  background: white;
  /* box-shadow: 0px 7px 18px -2px rgba(0, 0, 0, 0.2); */
  height: 3rem;
  /* border-radius: 3.5rem; */
  width: 100%;
}

.bottom-bar-svg {
  transition: all 300ms;
  
}

.col-row-grid>.bottom-bar-icon {
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.col-row-grid>.bottom-bar-icon>svg {
  width: 45%;
  height: 45%;
}

.active-bottom-bar {

  fill: var(--dark-primary);
  transform: scale(1.3);
  margin-bottom: 0.7rem;
}
.col-row-grid {
  display: flex;
  margin-bottom: 0.5rem;
}
.row-grid-5 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 0px;
}
.row-grid-2 {
  display: grid;
  grid-template-columns: 47.5% 47.5%;
  grid-gap: 18px;
}

/* Transition-page Loader */
/* Transition Loader Class */
.transition-page-show {
  display: block !important
}
.show {
  display: block;
}
.show-modal {
  transition: all 1s linear;
  visibility: visible;
  bottom: 0;
}
.transition-page {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99998;
  background:rgba(255, 255, 255, 0.796)
}
.transition-loader{
width:80px;
height:auto;
position: absolute;
left:50%;
top:50%;
transform: translate(-50%, -50%);
}
.circle-transition{
width:8px;
height:8px;
position: absolute;
border-radius: 50%;
background-color: #050505;
left:16%;
transform-origin: 50%;
animation: circle .5s alternate infinite ease;
}
.circle-transition:nth-child(2){
    left:45%;
    animation-delay: .2s;
}
.circle-transition:nth-child(3){
    left:auto;
    right:15%;
    animation-delay: .3s;
}
@keyframes circle {
  0% {
    transform: scale(1)
  }
  40% {
    transform: scale(1.3)
  }
  100% {
    transform: scale(1)
  }
}

/* Radius */

/* KeyFrams */
.anim-click {
  animation: click 300ms ease-in-out;
}
@keyframes click {
  0% {
    transform: scale(1)
  }
  50% {transform: scale(.95)}
  100% {
    tranform: scale(1)
  }
}