@charset "UTF-8";
/*
  ----------------------------
  [Table of contents CSS] 
  ----------------------------

  1. Base CSS
*/

/* 1. Base CSS */
:root {
  --primary-color: #f25b3e;
  --secondary-color: #003966;
  /* --accent-color: #7ED957; */
  --text-color: #000000;
  --white-color: #ffffff;
  /* --light-color: #a5a5a5; */
  --dark-color: #202020; 
  --gray-color: #939393;
  /* --border-color: #e4e4e4; */
  --poppins: "Poppins", sans-serif;
  /* --work-sans: "Work Sans", sans-serif; */
  /* --body-font-size: 1.7rem; */
  /* --body-font-weight: 500; */
  /* --body-line-height: 2.6rem; */
  /* --headings-weight: 700; */
  --transition: all 0.3s ease 0s;

  /* --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); */
}

body{
  font-family: var(--poppins);
  color: var(--text-color);
  transition: var(--transition);
  font-size: 14px;
  line-height: 1.5;
}
.container-inner{
  max-width: 1000px;
}
.w-350px{
  @media only screen and (min-width: 768px) {
    width: 350px;
  }
}
.h-30px{
  @media only screen and (min-width: 768px) {
    height: 30px;
  }
  @media only screen and (max-width: 768px) {
    height: 15px;
  }
}

.h-100px-m{
  /* @media only screen and (min-width: 768px) {
    height: 100px;
  } */
  @media only screen and (max-width: 768px) {
    height: 100px;
  }
}

.desktop{
  @media only screen and (max-width: 768px) {
    display: none;
  }
}
.mobile{
  @media only screen and (min-width: 768px) {
    display: none;
  }
}

/* Color */
.color-primary-app{
  color: var(--primary-color);
}
.color-text-app{
  color: var(--text-color);
}
.color-gray-app{
  color: var(--gray-color);
}

/* Background Color */
.bg-primary-app{
  background-color: var(--primary-color);
}
.bg-secondary-app{
  background-color: var(--secondary-color);
}

/* Button */
.btn{
  &.btn-primary-app{
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
    border-radius: 10px !important;
    padding: 10px 18px !important;
    border: 2px solid var(--primary-color) !important;
    &:hover{
      /* background-color: transparent !important; */
      /* color: var(--primary-color) !important; */
      /* border-color: var(--white-color) !important; */
    }
    &.dark{
      &:hover{
        /* background-color: var(--white-color) !important; */
        /* color: var(--primary-color) !important; */
        /* border-color: var(--white-color) !important; */
      }
    }
    &.btn-outline{
      background-color: transparent !important;
      color: var(--primary-color) !important;
      &:hover{
        /* background-color: var(--primary-color) !important;
        color: var(--white-color) !important; */
        /* background-color: var(--primary-color) !important; */
        /* color: var(--white-color) !important; */
      }
      &.dark{
        &:hover{
          /* background-color: transparent !important; */
        }
      }
    }
  }
  &.disabled{
    background-color: #E2E2E2 !important;
    border-color: #E2E2E2 !important;
    color: #1C1C1C !important;
    opacity: 1;
    font-weight: 500;
  }
  &.btn-350{
    min-width: 350px;
  }
}

/* Navbar */
.navbar-toggler{
  border-color: var(--primary-color) !important;
}
.navbar{
  padding: 0 !important;
  .navbar-nav{
    .nav-item{
      .nav-link{
        color: var(--white-color);
        font-weight: 500;
        &.active, &:hover{
          color: var(--primary-color);
        }
        @media (min-width: 768px){

        }
      }
    }
    .dropdown-menu{
        top: calc(100% + 13px);
        background-color: var(--text-color);
        .dropdown-item{
            color: var(--white-color);
            &:hover, .active{
                color: var(--primary-color);
                background-color: inherit;
            }
        }
    }
  }
}

/* Banner */
.banner{
  background-color: #E7E7E7;
}

/* Pricing */
.pricing-tier{
    &.selected{
        transform: scale(1.03);
        transform-origin: center;
        border-color: var(--primary-color) !important;
        .card-header{
            background-color: var(--primary-color) !important;
            color: var(--white-color) !important;
        }
    }
}
.pricing-buttons{
  width: 216px;
  border: 1px solid #D1D1D1;
  border-radius: 5px;
  background-color: #F4F4F4;
  .button{
    padding: 6px;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    &.active{
      background-color: #E2E2E2;
      border-color: #D1D1D1;
    }
    }
  /* &::before{
    content: '';
  } */
}

/* Steps */
.steps{
  width: 184px;
  .step{
    font-size: 0.75rem;
    line-height: 1.5;
    .number{
      height: 24px;
      width: 24px;
    }
    &:not(:last-child){
      &::after{
        content: '';
        height: 1px;
        width: calc(100% - 12px + 1px);
        position: absolute;
        top: 12px;
        left: calc(50% + 12px);
        background-color: #000000;
      }
    }
  }
}


/* Toggle Pills */
.toggle-pills{
  /* width: max-content; */
  border: 1px solid #D1D1D1;
  border-radius: 5px;
  background-color: #F4F4F4;
  .nav-item{
    /* padding: 6px; */
    /* border-radius: 4px; */
    /* border: 1px solid transparent; */
    /* cursor: pointer; */
    .nav-link{
      /* padding: 6px; */
      padding: 10px;
      border-radius: 4px;
      border: 1px solid transparent;
      /* cursor: pointer; */
      &.active{
        background-color: #E2E2E2;
        border-color: #D1D1D1;
      }
    }
    }
  /* &::before{
    content: '';
  } */
}


/* Form */
form{
  /* .form-group{
    margin-bottom: 35px;
    .form-control{
      padding: 10px;
      border-radius: 5px;
      box-shadow: none;
    }
    .form-check{
      .form-check-input{
        width: 16px !important;
        height: 16px !important;
        border-color: #000000 !important;
        box-shadow: none;
        &:checked{
          background-color: #000000 !important;
        }
      }
    }
  } */
  .btn-submit{
    /* margin-top: 20px; */
    /* font-size: inherit; */
  }
}
.form-group{
  /* margin-bottom: 35px; */
  margin-bottom: 25px;
  &.pb-25{
    margin-bottom: 25px;
  }
  &.pb-10{
    margin-bottom: 10px;
  }
  .form-control{
    padding: 10px;
    border-radius: 5px;
    box-shadow: none !important;
  }
  .form-check{
    .form-check-input{
      width: 16px !important;
      height: 16px !important;
      border-color: #000000 !important;
      box-shadow: none;
      &:checked{
        background-color: #000000 !important;
      }
    }
  }
  .form-control-file{
    border-radius: 5px;
    border: 1px dashed #C0C0C0;
    height: 138px;
    position: relative;
    input{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 5;
      opacity: 0;
    }
    .file-preview{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 10;
      object-fit: contain;
      padding: 30px;
      border-radius: 5px;
      background-color: #FFFFFF;
    }
  }
}
.form-control.is-invalid,
.was-validated .form-control:invalid{
  background-image: none;
}


/* Checkout */
/* .payment_gateways{
  .payment_gateway{
    gap: 12px;
    .images{
      gap: 6px;
    }
  }
} */

.g-12{
  gap: 12px;
}
.g-6{
  gap: 6px;
}

/* Toastr Js */
#toast-container > .toast {
    opacity: 1 !important;
    box-shadow: none !important;
    background-image: none !important;
    padding: 15px;
}

.toast-success {
    background-color: var(--primary-color) !important; 
    color: var(--white-color) !important;
}

/* Error */
.toast-error {
    background-color: var(--bs-red) !important; 
    color: var(--white-color) !important;
}

/* Warning */
.toast-warning {
    background-color: var(--bs-yellow) !important; 
    color: var(--white-color) !important;
}

/*Preloader*/
#preloader{
  background: rgba(255, 255, 255, 0.75);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s all;
  &.show{
      z-index: 99999;
      opacity: 1;
  }
}



/* .main__content_wrapper{
  transition: transform 0.4s ease;
}

.slide-out {
  transform: translateX(-100%);
}

.slide-in {
  transform: translateX(100%);
}

.slide-in.active {
  transform: translateX(0);
} */

.logo{
  @media only screen and (min-width: 768px) {
    /* display: none; */
  }
}

.offcanvas{
  .navbar-nav{
    --bs-nav-link-padding-y: 1rem;
    .nav-item{
      .nav-link{
        display: flex;
        align-items: center;
        gap: 15px;
        font-weight: 500;
        border-bottom: 1px solid #eee;
      }
    }
  }
}

/* Menubar */
.menubar-area{
	padding: 0;
	position: unset;
	background-color: var(--white-color) !important;
	/* border-radius: 18px; */
    &.footer-fixed{
		position: fixed !important;
		bottom: 0;
		left: 0;
		z-index: 9;
		width: 100%;
	}
	.toolbar-inner {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
    align-items: center;
		.circle{
			position: relative;
			display: flex;
			align-items: center;
			&:after{
				content: "";
				position: absolute;
				top: 0;
				right: -5px;
				width: 12px;
				height: 12px;
				background-color: var(--primary-color);
				border: 2px solid var(--primary-color);
				border-radius: 50%;
			}
		}
    .nav-link,
		.menu-toggler{
			position: relative;
      color: var(--dark-color);
			text-align: center;
			width: 20%;
			padding: 0 0;
			font-size: 18px;
			svg{
				width: 20px;
				height: 20px;
				path{
					fill: var(--dark-color);
				}
			}
			&.active{
				svg{
					path{
						fill: var(--primary-color);
					}
				}
			}
			&.item-active{
				width: 55px;
				min-width: 55px;
				height: 55px;
				font-size: 24px;
				color: #fff;
				font-weight: 900;
				background: var(--primary-color);
				line-height: 45px;
				text-align: center;
				display: flex;
				align-items: center;
				justify-content: center;
				border-radius: 50px;
				svg{
					path{
						fill: #fff;
					}
				}
			}
      .title{
          display: block;
          margin-top: 5px;
          font-weight: 500;
          font-size: 12px;
      }
    }
  }
	.menubar-nav{
		.nav-link{
			padding: 10px 8px 8px;
			color: rgba(0, 0, 0, 0.7);
			&:after{
				content: "";
				position: absolute;
				top: -1px;
				left: 50%;
				width: 60%;
				height: 5px;
				background: var(--primary-color);
				border-radius: 0px 0px 5px 5px;
				transform: translateX(-50%);
				display: none;
			}
			span{
				font-size: 10px;
				display: block;
			}
			i{
				margin-bottom: 4px;
				font-size: 22px;
			}
			&.cart-handle{
				margin-top: -40px;
				i{
					font-size: 24px;
					color: #fff;
					position: absolute;
					top: 50%;
					left: 50%;
					transform: translate(50%, -50%);
				}
				.hexad-menu{
					position: absolute;
					width: 55px;
					max-width: 55px;
					min-width: 55px;
					left: 50%;
					top: -25px;
					transform: translateX(50%);
					z-index: -1;
					.shape-dark{
						display: block;
					}
					.shape-light{
						display: none;
					}
				}
			}
			&.active{
				color: var(--primary-color);
				&:after{
					display: block;
				}
			}
		}
	}
}



.header.mobile{
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}
.main__content_wrapper{
  @media only screen and (max-width: 768px) {
    padding-bottom: 60px;
    padding-top: 50px;
  }
}


/* Swipe to */
.slideToUnlock {   
    position:relative;
    text-align: center;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;  
}

.progressBar {
    position: absolute;
    left:0;
    top:0;
    width: 0;
    height: 100%; 
    border-radius: 25px;
   } 
   .text {
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%; 
    border-radius: 25px;
    background-color:transparent;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
   } 

.drag {
    position: absolute;
    width:50px;
    height: 50px;
    left:0%;
    display: inline-block;
    line-height: 50px;
    border-radius: 25px;
    cursor: pointer;
    border: 1px solid #cccccc;
    background: #fff;
    color: #692003;  
    text-align: center;
}
.locked {
    color: var(--white-color);
    font-size: 18px;
    /* font-family: 'Roboto', serif; */
    background-color: var(--primary-color);
}
.unlocked {
    background-color: var(--secondary-color);
}