inital commit

This commit is contained in:
2026-01-01 15:25:19 +05:30
commit f0ae49465a
36361 changed files with 4894111 additions and 0 deletions

View File

@@ -0,0 +1,87 @@
/*! -----------------------------------------------------------------------------------
Template Name: Fastkart Admin
Template URI: http://admin.pixelstrap.com/Fastkart/theme
Description: This is Admin theme
Author: Pixelstrap
Author URI: https://themeforest.net/user/pixelstrap
----------------------------------------------------------------------------------- !*/
@import '~bootstrap/dist/css/bootstrap.min.css';
@import 'react-toastify/dist/ReactToastify.css';
@import 'slick-carousel/slick/slick.css';
@import 'slick-carousel/slick/slick-theme.css';
@import '~react-date-range/dist/styles.css'; // main style file
@import '~react-date-range/dist/theme/default.css'; // theme css file
@import './style.scss';
.App-header {
background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}
.App-link {
color: #09d3ac;
}
.otpContainer {
margin: 5% auto;
}
.otpInput {
width: 3rem !important;
height: 3rem;
margin: 0 1rem;
font-size: 2rem;
text-align: center;
border-radius: 4px;
border: 1px solid rgba(0, 0, 0, 0.3);
}
/* Add breakpoint for iPhone */
@media only screen and (max-width: 375px) {
.otpInput {
width: 1.5rem !important;
height: 1.5rem;
font-size: 1rem;
padding: 8px;
}
}
.is-active {
color: teal;
}
.disabled {
cursor: not-allowed;
opacity: 0.5;
}
.highlight-text {
background-color: #c3f7f0;
}
.datatable-wrapper {
position: relative;
}
.datatable-wrapper .table-loader {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: rgba(255, 255, 255, 0.8);
z-index: 1;
}

View File

@@ -0,0 +1,993 @@
/**=====================
Reset css start
==========================**/
.font-roboto {
font-family: $public-sans;
}
/*====== Padding css starts ======*/
$i: 0;
@while $i<=50 {
.p-#{$i} {
padding: #{$i}px;
}
$i: $i + 5;
}
/*====== Padding css ends ======*/
/*====== Padding-left css starts ======*/
$i: 0;
@while $i<=50 {
.p-l-#{$i} {
padding-left: #{$i}px;
}
$i: $i + 5;
}
/*====== Padding-left css ends ======*/
/*====== Padding-top css starts ======*/
$i: 0;
@while $i<=50 {
.p-t-#{$i} {
padding-top: #{$i}px !important;
}
$i: $i + 5;
}
/*====== Padding-top css ends ======*/
/*====== Padding-bottom css starts ======*/
$i: 0;
@while $i<=50 {
.p-b-#{$i} {
padding-bottom: #{$i}px !important;
}
$i: $i + 5;
}
/*====== Padding-bottom css ends ======*/
/*====== Padding-right css starts ======*/
$i: 0;
@while $i<=50 {
.p-r-#{$i} {
padding-right: #{$i}px;
}
$i: $i + 5;
}
/*====== Padding-right css ends ======*/
/*====== Margin css starts ======*/
$i: 0;
@while $i<=50 {
.m-#{$i} {
margin: #{$i}px !important;
}
$i: $i + 5;
}
/*====== Margin css ends ======*/
/*====== Margin-top css starts ======*/
$i: 0;
@while $i<=50 {
.m-t-#{$i} {
margin-top: #{$i}px !important;
}
$i: $i + 5;
}
/*====== Margin-top css ends ======*/
/*====== Margin-Bottom css starts ======*/
$i: 0;
@while $i<=50 {
.m-b-#{$i} {
margin-bottom: #{$i}px !important;
}
$i: $i + 5;
}
/*====== Margin-Bottom css ends ======*/
/*====== Margin-left css starts ======*/
$i: 0;
@while $i<=50 {
.m-l-#{$i} {
margin-left: #{$i}px !important;
}
$i: $i + 5;
}
/*====== Margin-left css ends ======*/
/*====== Margin-right css starts ======*/
$i: 0;
@while $i<=50 {
.m-r-#{$i} {
margin-right: #{$i}px;
}
$i: $i + 5;
}
/*====== Margin-right css ends ======*/
/*====== Border-radius css starts ======*/
$i: 0;
@while $i<=10 {
.b-r-#{$i} {
border-radius: #{$i}px !important;
}
$i: $i + 1;
}
/*====== Border-radius css ends ======*/
/*====== Font-size css starts ======*/
$i: 12;
@while $i<=100 {
.f-#{$i} {
font-size: #{$i}px !important;
}
$i: $i + 2;
}
/*====== Font-size css ends ======*/
/*====== Font-weight css starts ======*/
$i: 100, 300, 500, 400, 600, 700, 900;
@each $val in $i {
.f-w-#{$val} {
font-weight: $val;
}
}
/*====== Font-weight css ends ======*/
/*====== Font-style css starts ======*/
$i: normal, italic, oblique, initial, inherit;
@each $val in $i {
.f-s-#{$val} {
font-style: $val;
}
}
/*====== Font-style css ends ======*/
/*====== Text-Decoration css starts ======*/
$i: overline, line-through, underline, dashed, blink, dotted, initial, none, solid, wavy, inherit, double;
@each $val in $i {
.text-#{$val} {
text-decoration: $val;
}
}
/*====== Text-Decoration css ends ======*/
/*====== Vertical-Align css starts ======*/
$i: baseline, sub, super, top, text-top, middle, bottom, text-bottom, initial, inherit;
@each $val in $i {
.#{$val} {
vertical-align: $val;
}
}
/*====== Vertical-Align css ends ======*/
/*====== Position css starts ======*/
$i: static, absolute, fixed, relative, initial, inherit;
@each $val in $i {
.p-#{$val} {
position: $val;
}
}
/*====== Position css ends ======*/
/*====== Float css starts ======*/
$i: left, right, none;
@each $val in $i {
.f-#{$val} {
float: $val;
}
}
/*====== Float css ends ======*/
/*====== Overflow css starts ======*/
$i: hidden, visible, auto;
@each $val in $i {
.o-#{$val} {
overflow: $val;
}
}
/*====== Overflow css ends ======*/
/*====== Image-sizes css starts ======*/
$i: 10;
@while $i<=100 {
.img-#{$i} {
width: #{$i}px !important;
}
$i: $i + 10;
}
/*====== Image-sizes css ends ======*/
/*======= Text css starts ===========*/
$text-name: primary, secondary, success, danger, info, light, dark, warning;
$text-color: $primary-color, $secondary-color, $success-color, $danger-color, $info-color, $light-color, $dark-color, $warning-color;
@each $var in $text-name {
$i: index($text-name, $var);
.font-#{$var} {
color: nth($text-color, $i) !important;
}
}
.font-primary {
color: var(--theme-color) !important;
}
.font-secondary {
color: var(--theme-secondary) !important;
}
/*======= Text css ends ===========*/
/*======= Label-color css starts ======= */
.label {
border-radius: 2px;
color: $white;
font-size: 12px;
line-height: 1;
margin-bottom: 0;
text-transform: capitalize;
}
$label-name: theme, primary, secondary, success, danger, info, light, dark, warning;
$label-color: $primary-color, $primary-color, $secondary-color, $success-color, $danger-color, $info-color, $light-color, $dark-color, $warning-color;
@each $var in $label-name {
$i: index($label-name, $var);
.label-#{$var} {
background-color: nth($label-color, $i);
}
}
/*======= Label-color css ends ======= */
/*======= Badge-color css starts ======= */
$badge-name: primary, secondary, success, danger, info, light, dark, warning;
$badge-color: $primary-color, $secondary-color, $success-color, $danger-color, $info-color, $light-color, $dark-color, $warning-color;
@each $var in $badge-name {
$i: index($badge-name, $var);
.badge-#{$var} {
background-color: nth($badge-color, $i);
@if ($badge-name== 'light') {
color: $theme-body-font-color !important;
}
}
}
.badge-primary {
background-color: var(--theme-color) !important;
}
.badge-secondary {
background-color: var(--theme-secondary) !important;
}
/*======= Badge-color css end ======= */
/*======= Background-color css starts ======= */
$background-name: primary, secondary, success, danger, info, light, dark, warning;
$background-color: $primary-color, $secondary-color, $success-color, $danger-color, $info-color, $light-color, $dark-color, $warning-color;
@each $var in $background-name {
$i: index($background-name, $var);
.bg-#{$var} {
background-color: nth($background-color, $i) !important;
color: $white;
}
.bg-light-#{$var} {
background-color: rgba(nth($background-color, $i), 0.2) !important;
color: $white;
}
}
.bg-primary {
background-color: var(--theme-color) !important;
}
.bg-secondary {
background-color: var(--theme-secondary) !important;
}
/*======= Background-color css end ======= */
/*======= Font-color css starts ======= */
$text-name: primary, secondary, success, danger, info, light, dark, warning, google-plus, twitter, linkedin, fb;
$label-color: $primary-color, $secondary-color, $success-color, $danger-color, $info-color, $light-color, $dark-color, $warning-color, $google-plus, $twitter, $linkedin, $fb;
@each $var in $text-name {
$i: index($text-name, $var);
.txt-#{$var} {
color: nth($label-color, $i) !important;
margin-right: 5px;
}
}
.txt-primary {
color: var(--theme-color) !important;
}
.txt-secondary {
color: var(--theme-secondary) !important;
}
/*======= Font-color css end ======= */
/*======= Button-color css starts ======= */
@each $btn-name, $btn-color in (primary, $primary-color), (secondary, $secondary-color), (success, $success-color), (danger, $danger-color), (info, $info-color), (light, $light-color),
(dark, $dark-color), (warning, $warning-color)
{
.btn-#{$btn-name} {
background-color: $btn-color !important;
border-color: $btn-color !important;
@if ($btn-name== 'info') {
color: $white;
&:hover,
&:focus,
&:active,
&.active {
color: $white;
}
}
&:focus {
box-shadow: 0 0 0 0.2rem lighten($btn-color, 30%);
}
}
}
.btn-light {
background-color: $inner-bg !important;
border-color: $light-semi-gray !important;
}
/*======= Button-color css ends ======= */
@each $btn-name, $btn-color in (primary, $primary-color), (secondary, $secondary-color), (success, $success-color), (danger, $danger-color), (info, $info-color), (light, $light-color),
(dark, $dark-color), (warning, $warning-color)
{
.btn-outline-#{$btn-name}-2x {
border-width: 2px;
border-color: $btn-color;
color: $btn-color;
background-color: transparent;
&:hover,
&:focus,
&:active,
&.active {
color: white;
background-color: darken($btn-color, 10%) !important;
border-color: darken($btn-color, 10%) !important;
box-shadow: none;
}
}
}
/* outline buttons */
@each $btn-name, $btn-color in (primary, $primary-color), (secondary, $secondary-color), (success, $success-color), (danger, $danger-color), (info, $info-color), (light, $light-color),
(dark, $dark-color), (warning, $warning-color)
{
.btn-outline-#{$btn-name} {
border-color: $btn-color;
color: $btn-color;
background-color: transparent;
&.disabled {
color: $btn-color;
}
@if ($btn-name== 'light') {
color: $theme-body-font-color;
}
&:hover,
&:focus,
&:active,
&.active {
color: white;
background-color: darken($btn-color, 10%) !important;
border-color: darken($btn-color, 10%) !important;
}
}
}
/* active button css */
@each $btn-name, $btn-color in (primary, $primary-color), (secondary, $secondary-color), (success, $success-color), (danger, $danger-color), (info, $info-color), (light, $light-color),
(dark, $dark-color), (warning, $warning-color)
{
.btn-#{$btn-name}:not([disabled]):not(.disabled).active {
background-color: darken($btn-color, 10%);
border-color: darken($btn-color, 10%);
box-shadow: none !important;
&:hover,
&:focus,
&:active,
&.active {
color: white;
background-color: darken($btn-color, 10%);
border-color: darken($btn-color, 10%);
}
}
}
/* active button css end */
@each $btn-name, $btn-color in (primary, $primary-color), (secondary, $secondary-color), (success, $success-color), (danger, $danger-color), (info, $info-color), (light, $light-color),
(dark, $dark-color), (warning, $warning-color)
{
.btn-outline-#{$btn-name}-2x:not([disabled]):not(.disabled).active {
background-color: $btn-color;
border-color: $btn-color;
box-shadow: none !important;
color: white;
&:hover,
&:focus,
&:active,
&.active {
color: white;
box-shadow: none !important;
background-color: darken($btn-color, 10%) !important;
border-color: darken($btn-color, 10%) !important;
}
}
}
/*======= Table-Border-Bottom-color css starts ======= */
$border-name: primary, secondary, success, danger, info, light, dark, warning;
$border-color: $primary-color, $secondary-color, $success-color, $danger-color, $info-color, $light-color, $dark-color, $warning-color;
@each $var in $border-name {
$i: index($border-name, $var);
table thead .border-bottom-#{$var} th,
table tbody .border-bottom-#{$var} th,
table tbody .border-bottom-#{$var} td {
border-bottom: 1px solid nth($border-color, $i) !important;
}
}
/*======= Table-Border-Bottom-color css ends ======= */
/*======= Table styling css starts ======= */
$table-name: primary, secondary, success, danger, info, light, dark, warning;
$table-color: $primary-color, $secondary-color, $success-color, $danger-color, $info-color, $light-color, $dark-color, $warning-color;
@each $var in $table-name {
$i: index($table-name, $var);
.table-styling .table-#{$var},
.table-styling.table-#{$var} {
background-color: nth($border-color, $i);
color: $white;
border: 3px solid nth($border-color, $i);
thead {
background-color: darken(nth($border-color, $i), 10%);
border: 3px solid darken(nth($border-color, $i), 10%);
}
th,
td {
background-color: transparent;
}
}
}
/*======= Table styling css ends ======= */
/*======= All-Borders-color css starts ======= */
$b-name: primary, secondary, success, danger, info, light, dark, warning;
$b-color: $primary-color, $secondary-color, $success-color, $danger-color, $info-color, $light-color, $dark-color, $warning-color;
@each $var in $b-name {
$i: index($b-name, $var);
.b-#{$var} {
border: 1px solid nth($b-color, $i) !important;
}
.b-t-#{$var} {
border-top: 1px solid nth($b-color, $i) !important;
}
.b-b-#{$var} {
border-bottom: 1px solid nth($b-color, $i) !important;
}
.b-l-#{$var} {
border-left: 1px solid nth($b-color, $i) !important;
}
.b-r-#{$var} {
border-right: 1px solid nth($b-color, $i) !important;
}
}
/*======= All-Borders-color css ends ======= */
/*====== Border width css starts ======*/
$i: 1;
@while $i<=10 {
.border-#{$i} {
border-width: #{$i}px !important;
}
$i: $i + 1;
}
/*====== Border width css ends ======*/
.opacity-0 {
opacity: 0;
}
.map-block {
height: 350px;
width: 100%;
}
.map-js-height {
height: 500px;
.btn-group {
input {
background-color: $primary-color;
& + input {
background-color: $secondary-color;
}
}
}
}
/**====== custom scrollbar css start ======**/
.custom-scrollbar {
&::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px $light-gray;
box-shadow: inset 0 0 6px $light-gray;
}
&::-webkit-scrollbar {
width: 6px;
}
&::-webkit-scrollbar-thumb {
background-color: rgba(68, 102, 242, 0.15);
}
}
/**====== Custom scrollbar css end ======**/
/**====== Animation css Start ======**/
.comment {
color: #9f9ba5;
font-style: italic;
}
.line {
color: $dark-color;
pre {
font-size: 100%;
}
}
/**====== Animation css end ======**/
/**====== list style css Start ======**/
.list-circle {
list-style: circle;
}
/**====== list style css end ======**/
/**====== Modal style css Start ======**/
.theme-close {
opacity: 1;
height: 40px;
width: 40px;
position: absolute;
font-weight: 400;
z-index: 1;
right: 0;
background-color: $white !important;
border-radius: 5px;
}
/**====== Modal style css end ======**/
/**====== Animation css start ======**/
.options {
> div {
color: $gray-60;
display: inline-block;
padding: 2px 10px;
border: 1px solid;
margin: 0 8px 8px 0;
transition: all 0.3s ease;
&:hover {
background-color: $primary-color;
color: $white;
transition: all 0.3s ease;
}
}
}
/**====== Animation css Ends ======**/
.modal-footer {
flex-wrap: wrap;
}
.img-cropper {
#putData {
margin-bottom: 0;
}
.img-container {
min-height: auto;
margin-bottom: 0;
}
.docs-data {
> .input-group {
&:last-child {
margin-bottom: 0;
}
}
}
.docs-preview {
margin-top: 20px;
margin-bottom: 10px;
}
}
.dropzone {
.dz-preview {
.dz-error-message {
background: $white !important;
color: $primary-color !important;
border: 1px solid $primary-color;
&:after {
border-bottom: 6px solid $primary-color !important;
}
}
}
}
.typeahead {
.theme-form {
.form-group {
margin-bottom: 0;
}
}
}
.editor-statusbar {
border-bottom: 1px solid rgba($black, 0.125);
}
.page-builder {
.ge-canvas {
&.ge-editing {
.row {
padding: 30px;
margin-bottom: 0;
background-color: rgba($primary-color, 0.02);
}
}
}
.btn-screen {
padding: 0 18px 0 0;
}
}
.bg-overlay {
&.active {
height: 100vh;
width: 100vw;
background-color: rgba($black, 0.2);
position: fixed;
z-index: 6;
top: 0;
}
}
button {
&:focus {
outline: none !important;
}
}
.dotted {
border-style: dotted;
}
.dashed {
border-style: dashed;
}
.double {
border-style: double;
}
.groove {
border-style: groove;
}
.ridge {
border-style: ridge;
}
.inset {
border-style: inset;
}
.outset {
border-style: outset;
}
@keyframes fadeIncustom {
0% {
opacity: 0;
top: 50px;
}
75% {
opacity: 0.6;
top: 0;
}
100% {
opacity: 1;
}
}
.daterangepicker {
select {
&.monthselect,
&.yearselect {
border-color: $light-semi-gray;
background-color: $white;
font-size: 14px;
color: $dark-gray;
padding: 5px 10px;
border-radius: 5px;
width: 46%;
}
}
}
@media (min-width: 991px) {
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba($primary-color, 0.1);
box-shadow: inset 0 0 6px rgba($primary-color, 0.1);
background-color: #f5f5f5;
border-radius: 5px;
}
::-webkit-scrollbar {
width: 6px;
height: 6px;
background-color: #fdf9f9;
}
::-webkit-scrollbar-thumb {
background-color: rgba($primary-color, 0.5);
border-radius: 5px;
}
}
a,
.cursor {
cursor: pointer;
caret-color: transparent;
}
.entries-form {
display: flex;
align-items: center;
gap: 7px;
input {
width: 85px;
text-align: center;
}
}
.tree-main-ul {
div {
cursor: pointer;
caret-color: transparent;
}
}
.rule-dropdown {
background-color: #fafaf6;
}
.rule-edit-form {
background-color: #fcfcf7;
padding: 20px;
margin: 20px 0 0;
.form-control {
background-color: $white;
}
}
.shipping-creation {
padding: 20px;
}
.active > .page-link,
.page-link.active {
z-index: unset;
}
.card {
position: unset;
}
.custom-ul {
display: flex;
align-items: center;
gap: 6px;
justify-content: center;
}
.custom-row {
.row {
> div {
&:first-child {
width: 20%;
@media (max-width: 576px) {
width: 100%;
}
}
&:nth-child(2) {
width: 80%;
@media (max-width: 576px) {
width: 100%;
}
}
}
}
}
.attribute-row {
align-items: unset !important;
.custom-row {
.input-error {
> div {
margin-bottom: 0 !important;
}
}
}
.attribute-remove {
a {
margin-top: 36px;
display: block;
}
}
}
.mt-custom {
margin-top: 12px !important;
}
.close-icon {
svg {
width: 18px;
height: 18px;
fill: #dc3545;
}
}
input {
&::-webkit-outer-spin-button,
&::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
}
.theme-form {
.row > * {
// padding-left: 4px;
// padding-right: 4px;
}
}
.custom-padding {
padding-left: 20px !important;
}
// .row > * {
// padding-left: 4px;
// padding-right: 4px;
// }

View File

@@ -0,0 +1,450 @@
/**=====================
Typography css start
==========================**/
body {
font-size: $body-font-size;
overflow-x: hidden;
font-family: $public-sans;
color: $theme-body-font-color;
}
ul {
padding-left: $ul-padding-left;
list-style-type: none;
margin-bottom: 0;
}
* a {
color: var(--theme-color);
text-decoration: none;
letter-spacing: 1px;
}
a {
&:hover {
text-decoration: none;
color: var(--theme-color);
}
&[class*="badge-"] {
&:hover {
color: $white;
}
}
}
.btn {
font-size: 14px;
}
*.btn:focus {
box-shadow: $btn-focus-box-shadow !important;
}
p {
font-size: $paragraph-font-size;
line-height: $paragraph-line-height;
letter-spacing: $paragraph-letter-spacing;
}
.form-control {
padding: 8px 20px;
}
.form-select {
&:focus {
box-shadow: none;
border-color: #ced4da;
}
}
code {
color: $code-tag-color !important;
background-color: $code-tag-bg-color;
padding: $code-tag-padding;
margin: $code-tag-margin;
border-radius: $code-tag-border-radious;
}
.media {
display: flex;
align-items: flex-start;
.media-body {
flex: 1;
}
}
blockquote {
border-left: $blockquote-border;
padding: $blockquote-padding;
}
.figure {
&.text-center {
blockquote {
border: none !important;
}
}
&.text-end {
blockquote {
border-left: none !important;
border-right: $blockquote-border;
}
}
}
.row {
> div {
position: relative;
}
}
:focus {
outline-color: $all-focus-outline-color;
}
.disabled {
cursor: not-allowed;
opacity: 0.5;
}
svg {
vertical-align: baseline;
}
input {
&:focus {
outline-color: $transparent-color;
}
}
label {
margin-bottom: 0.5rem;
}
.media-widgets {
.media-body {
margin-bottom: 30px;
}
}
.typography {
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
margin: 20px 0;
margin-top: 0;
&:last-child {
margin-bottom: 0;
}
}
small {
padding-left: $small-tag-padding;
color: $small-tag-color;
}
}
pre {
background-color: $pre-tag-bg-color;
padding: $pre-tag-padding;
}
.owl-theme {
.owl-dots {
.owl-dot {
span {
background: lighten($primary-color, 20%);
}
&.active,
&:hover {
span {
background: var(--theme-color);
}
}
}
}
.owl-nav {
&.disabled {
& + .owl-dots {
margin-bottom: -10px;
margin-top: 25px;
}
}
}
}
.click2edit {
& ~ .note-editor {
&.note-frame {
margin-bottom: 30px;
}
}
}
.note-editor {
&.note-frame {
border-color: $light-color;
}
}
.note-editor {
&.note-frame {
border-color: $light-color;
}
}
.btn-close {
&:focus {
box-shadow: none;
}
}
.modal {
.modal-body {
.card {
box-shadow: none !important;
}
}
}
.modal-dialog {
.modal-content {
.modal-body {
p {
a {
margin-right: 0;
}
}
}
}
}
.alert-theme {
button {
top: 25px !important;
right: 20px !important;
color: var(--theme-color);
}
[data-notify="title"] {
display: none;
}
span {
+ span {
+ span {
background-color: $white;
color: var(--theme-color);
border-radius: 4px;
box-shadow: 0 2px 14px -3px rgba($black, 0.2);
}
}
}
i {
padding: 20px;
}
.progress {
margin-top: -2px !important;
height: 2px;
width: 100%;
.progress-bar {
background-color: var(--theme-color);
}
}
}
.alert-copy {
border: 1px solid var(--theme-color);
line-height: 1;
display: inline-block;
width: 300px;
color: $white;
background-color: var(--theme-color);
.close {
box-shadow: none;
color: $white;
line-height: 1.4;
font-weight: 100;
&:focus {
outline: none;
}
}
}
.ace-editor {
height: 400px;
width: 100%;
}
.editor-toolbar {
width: 100% !important;
&.fullscreen {
z-index: 100;
}
}
.CodeMirror {
top: 0 !important;
}
.CodeMirror-fullscreen {
top: 50px !important;
}
.irs-from,
.irs-to,
.irs-single {
background: var(--theme-color);
&:after {
border-top-color: var(--theme-color);
}
}
.irs-line-mid,
.irs-line-left,
.irs-line-right,
.irs-bar,
.irs-bar-edge {
background-color: var(--theme-color);
}
.swal-button {
background-color: var(--theme-color);
&:active {
background-color: darken($primary-color, 5%);
}
}
.swal-button--cancel {
background-color: $silver-light !important;
}
.clipboaard-container {
h6 {
line-height: 1.6;
font-size: $paragraph-font-size;
}
}
fieldset {
.bootstrap-touchspin-postfix,
.bootstrap-touchspin-prefix {
border-radius: 0;
padding: 0.4rem 0.75rem;
}
.input-group-lg {
.touchspin {
height: 50px;
}
}
}
.f1 {
.f1-steps {
.f1-step {
.f1-step-icon {
padding: 12px;
}
}
}
}
.form-inline {
.form-group {
display: flex;
}
}
.input-group-text {
i {
line-height: 1.5;
}
}
.animated-modal {
.form-select {
display: inline-block;
width: auto;
vertical-align: middle;
}
}
h1 {
font-size: calc(40px + (70 - 40) * ((100vw - 320px) / (1920 - 320)));
font-weight: 600;
line-height: 1.1;
text-transform: capitalize;
margin: 0;
}
h2 {
font-size: calc(22px + (28 - 22) * ((100vw - 320px) / (1920 - 320)));
font-weight: 600;
line-height: 1;
text-transform: capitalize;
margin: 0;
}
h3 {
font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
font-weight: 500;
line-height: 1.2;
margin: 0;
}
h4 {
font-size: calc(17px + (18 - 17) * ((100vw - 320px) / (1920 - 320)));
line-height: 1.2;
margin: 0;
font-weight: 400;
}
h5 {
font-size: calc(15px + (16 - 15) * ((100vw - 320px) / (1920 - 320)));
line-height: 1.2;
margin: 0;
font-weight: 400;
}
h6 {
font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
line-height: 1.2;
margin: 0;
font-weight: 400;
}
span {
display: inline-block;
}
.theme-color {
color: var(--theme-color) !important;
}
.theme-bg-color {
background-color: var(--theme-color);
}

View File

@@ -0,0 +1,79 @@
/**=====================
According CSS start
==========================**/
.default-according {
.card {
margin-bottom: 0;
box-shadow: none;
& + .card {
margin-top: $according-card-top-margin;
}
.btn-link {
font-weight: $according-btn-weight;
color: $theme-body-font-color;
text-decoration: none;
}
.btn-link {
&:focus,
&:hover {
text-decoration: none;
}
}
.card-header {
padding: $according-card-header-padding;
border: $card-border-color;
i {
position: absolute;
left: 18px;
font-size: 20px;
top: 20px;
}
h5 {
margin-top: 2px;
}
}
.card-body {
border: $card-border-color;
border-top: none;
}
}
}
.default-according.style-1 {
button {
width: 100%;
text-align: left;
&:before {
right: 20px;
position: absolute;
-webkit-transition: 0.4s;
transition: 0.4s;
font-size: 20px;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
&[aria-expanded="true"] {
&:before {
content: $according-open-icon;
font-family: $according-card-header-icon;
}
}
&[aria-expanded="false"] {
&:before {
content: $according-close-icon;
font-family: $according-card-header-icon;
}
}
}
}

View File

@@ -0,0 +1,249 @@
/**=====================
Alert CSS start
==========================**/
.notify-alert {
.close {
background: unset;
border: none;
font-size: 25px;
}
}
.alert {
border-radius: $alert-border-radious;
padding: 15px;
svg {
vertical-align: middle;
}
.progress {
margin-top: $alert-padding;
}
[data-notify="icon"] {
margin-right: 10px;
line-height: 20px;
position: absolute;
}
[data-notify="message"] {
display: inline-block;
width: 100%;
}
i {
margin-right: 5px;
font-size: $alert-msg-icon-size;
}
p {
margin-bottom: 0;
}
.close {
opacity: 1;
span {
font-size: 24px;
font-weight: 400;
display: inline-block;
border-radius: 3px;
text-shadow: none;
padding: 0 5px;
padding-right: 0;
}
}
}
.alert-dismissible {
.close {
padding: 10px 1.25rem;
top: 4px;
padding-right: 13px;
opacity: 0.5;
transition: all 0.3s ease;
&:hover {
transition: all 0.3s ease;
opacity: 1;
color: inherit;
}
}
}
.card-body {
button {
&:focus {
outline: none;
}
}
.alert {
&:last-child {
margin-bottom: 0;
}
svg {
width: 14px;
height: 14px;
margin-right: 4px;
position: absolute;
top: 18px;
& ~ p {
padding-left: 20px;
}
}
}
}
strong {
display: inline-block;
& ~ p {
display: inline-block;
}
}
$alert-name: primary, secondary, success, danger, warning, info, light, dark;
$alert-color: $primary-color, $secondary-color, $success-color, $danger-color, $warning-color, $info-color, $light-color,
$dark-color;
@each $var in $alert-name {
$i: index($alert-name, $var);
.alert-#{$var} {
background-color: rgba(nth($alert-color, $i), 0.8);
border-color: rgba(nth($alert-color, $i), 0.9);
color: $white;
.progress {
height: 5px;
background-color: darken(nth($alert-color, $i), 1%);
border-radius: 0;
}
.progress-bar {
background-color: lighten(nth($alert-color, $i), 50%);
}
.btn-close {
filter: brightness(1) invert(1);
}
.alert-link {
color: nth($alert-color, $i);
@if ($var== "light") {
color: $dark-color;
}
}
@if ($var== "light") {
color: $dark-color;
background-color: $light-color;
.btn-close {
filter: unset;
}
}
hr {
border-top-color: nth($alert-color, $i);
}
}
.alert-#{$var}.dark {
.alert-link {
color: $white;
@if ($var== "light") {
color: $dark-color;
}
}
background-color: nth($alert-color, $i);
border-color: nth($alert-color, $i);
color: $auth-bg-color;
@if ($var== "light") {
color: $dark-color;
}
}
.alert-#{$var}.outline,
.alert-#{$var}.outline-2x {
background-color: $transparent-color;
border-color: nth($alert-color, $i);
color: nth($alert-color, $i);
.btn-close {
filter: unset;
}
@if ($var== "light") {
color: $dark-color;
}
}
.alert-#{$var}.inverse {
&:before {
top: 16px;
content: "";
position: absolute;
left: 54px;
width: 0;
height: 0;
border-left: 7px solid nth($alert-color, $i);
border-top: 7px solid transparent;
border-bottom: 7px solid transparent;
}
background-color: transparent;
padding: 13px 20px 13px 65px;
border-color: nth($alert-color, $i);
color: $theme-body-font-color;
i {
padding: 17px 20px;
display: inline-block;
background-color: nth($alert-color, $i);
color: $white;
border-radius: 3px 0 0 3px;
position: absolute;
left: 0;
top: 0;
height: 100%;
}
.btn-close {
filter: unset;
top: -3px;
}
}
}
.dismiss-text {
.alert {
.btn-close {
background: unset;
opacity: 1;
top: -6px;
right: 40px;
span {
display: inline-block;
border-radius: 3px;
text-shadow: none;
padding: 0 5px;
}
}
}
}
.outline-2x {
border-width: 2px;
padding: 11px 1.25rem;
}

View File

@@ -0,0 +1,205 @@
/**=====================
Badge CSS start
==========================**/
.badge {
padding: $badge-padding;
&+.badge {
margin-left: 5px;
}
svg {
width: $badge-svg-size;
height: $badge-svg-size;
padding-top: 3px;
}
}
.status-danger,
.status-out_of_stock,
.status-failed {
span {
background-color: rgba($color: #e22454, $alpha: 0.15);
color: #e22454;
padding: 5px 10px;
text-transform: capitalize;
display: inline-block;
border-radius: 5px;
font-size: 12px;
font-weight: 400;
}
}
.status-success,
.status-in_stock,
.status-completed,
.status-delivered {
span {
background-color: rgba($color: #2f8733, $alpha: 0.15);
color: #2f8733;
padding: 5px 10px;
text-transform: capitalize;
display: inline-block;
border-radius: 5px;
font-size: 12px;
font-weight: 400;
}
}
.status-pending {
span {
background-color: rgba(#e6c007, 0.15);
color: #000000a3;
padding: 5px 10px;
text-transform: capitalize;
display: inline-block;
border-radius: 5px;
font-size: 12px;
font-weight: 400;
}
}
.status-processing {
span {
background-color: rgba(#0077b3, 0.15);
color: #0077b3;
padding: 5px 10px;
text-transform: capitalize;
display: inline-block;
border-radius: 5px;
font-size: 12px;
font-weight: 400;
}
}
.status-refund {
span {
background-color: rgba(#d9534f, 0.15);
color: #d9534f;
padding: 5px 10px;
text-transform: capitalize;
display: inline-block;
border-radius: 5px;
font-size: 12px;
font-weight: 400;
}
}
.status-rejected {
span {
background-color: #d9534f26;
color: #d9534f;
padding: 5px 10px;
text-transform: capitalize;
display: inline-block;
border-radius: 5px;
font-size: 12px;
font-weight: 400;
}
}
.status-approved {
span {
background-color: #2f873326;
color: #2f8733;
padding: 5px 10px;
text-transform: capitalize;
display: inline-block;
border-radius: 5px;
font-size: 12px;
font-weight: 400;
}
}
.status-canceled {
span {
background-color: rgba(#000000, 0.15);
color: #000000;
padding: 5px 10px;
text-transform: capitalize;
display: inline-block;
border-radius: 5px;
font-size: 12px;
font-weight: 400;
}
}
.status-awaiting_for_approval {
span {
background-color: rgba(#7e7e7e, 0.15);
color: #7e7e7e;
padding: 5px 10px;
text-transform: capitalize;
display: inline-block;
border-radius: 5px;
font-size: 12px;
font-weight: 400;
}
}
.status-order-status {
span {
padding: 5px 10px;
text-transform: capitalize;
display: inline-block;
border-radius: 5px;
font-size: 12px;
font-weight: 400;
}
}
.badge-theme {
background-color: var(--theme-color);
}
/* flat badge loop css */
@each $pill-badge-name,
$pill-badge-color in (primary, var(--theme-color)),
(secondary, $secondary-color),
(success, $success-color),
(danger, $danger-color),
(info, $info-color),
(light, $light-color),
(dark, $dark-color),
(warning, $warning-color) {
.pill-badge-#{$pill-badge-name} {
background-color: $pill-badge-color;
box-shadow: -0.5px 4.33px 16px 0px rgba($pill-badge-color, 0.25);
color: $white;
border-radius: 0;
}
}
.pill-badge-primary {
background-color: var(--theme-color);
}
.pill-badge-secondary {
background-color: var(--theme-secondary);
}
/* round badge loop css */
@each $round-badge-name,
$round-badge-color in (primary, var(--theme-color)),
(secondary, $secondary-color),
(success, $success-color),
(danger, $danger-color),
(info, $info-color),
(light, $light-color),
(dark, $dark-color),
(warning, $warning-color) {
.round-badge-#{$round-badge-name} {
border-radius: 6px;
background-color: $round-badge-color;
box-shadow: -0.5px -6.67px 14px 0px rgba($round-badge-color, 0.18);
color: $white !important;
}
}
.round-badge-primary {
background-color: var(--theme-color);
}
.round-badge-secondary {
background-color: var(--theme-secondary);
}

View File

@@ -0,0 +1,50 @@
/**=====================
breadcrumb CSS Start
==========================**/
.breadcrumb-colored {
padding: 12px 16px;
border-radius: 4px;
li {
a {
color: $breadcrumb-ancher-color;
}
&.active {
color: $breadcrumb-ancher-color;
opacity: 0.7;
}
}
.breadcrumb-item {
&:before {
color: $breadcrumb-ancher-color;
}
}
.breadcrumb-item {
&.txt-dark {
&:before {
color: $breadcrumb-ancher-dark-color;
}
}
}
}
.breadcrumb-icon {
--bs-breadcrumb-divider: ">";
li {
display: inline-block;
}
}
.breadcrumb-no-divider {
--bs-breadcrumb-divider: "";
}
.breadcrumb-item {
&.active {
text-transform: capitalize;
}
}

View File

@@ -0,0 +1,662 @@
/**=====================
Button CSS start
==========================**/
.btn {
@include flex_common;
padding: calc(7px + (12 - 7) * ((100vw - 320px) / (1920 - 320))) calc(14px + (32 - 14) * ((100vw - 320px) / (1920 - 320))) !important;
font-weight: 500;
transition: all 0.3s ease;
position: relative;
border: none;
font-size: 14px;
z-index: 0;
gap: 8px;
white-space: nowrap;
&:focus {
box-shadow: none;
}
&.dark-button {
background: linear-gradient(93.33deg, #222221 12.35%, #2f2f2d 99.38%) !important;
}
.icon {
margin-left: calc(6px + (12 - 6) * ((100vw - 320px) / (1920 - 320)));
transition: 0.3s ease;
[dir="rtl"] & {
margin-left: unset;
margin-right: calc(6px + (12 - 6) * ((100vw - 320px) / (1920 - 320)));
}
&-2 {
margin-left: 6px;
transition: 0.3s ease;
[dir="rtl"] & {
margin-left: unset;
margin-right: 6px;
}
}
}
&-animation {
@include flex_common;
overflow: hidden;
color: $white;
border-radius: 5px;
font-weight: 600;
background: transparent;
transition: all 0.3s ease;
position: relative;
background: var(--theme-color);
border: none;
z-index: 0;
padding: calc(7px + (12 - 7) * ((100vw - 320px) / (1920 - 320))) calc(14px + (32 - 14) * ((100vw - 320px) / (1920 - 320))) !important;
border: 1px solid var(--theme-color);
i {
transition: 0.3s ease;
}
&:hover {
color: var(--theme-color) !important;
border-color: var(--theme-color);
i {
transform: translateX(3px);
}
&::after {
top: 0;
height: 100%;
}
}
}
&-md {
padding: calc(8px + (11 - 8) * ((100vw - 320px) / (1920 - 320))) calc(16px + (24 - 16) * ((100vw - 320px) / (1920 - 320)));
font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
font-weight: 500;
}
&-sm {
padding: 8px 16px !important;
font-size: 14px;
font-weight: 500;
}
&-2 {
padding: 9px 25px;
font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
font-weight: 400;
&:hover {
&::after {
top: 0;
height: 100%;
}
}
&-animation {
@include flex_common;
overflow: hidden;
transition: all 0.3s ease;
position: relative;
background: #0da487;
background: linear-gradient(90deg, #0da487 0%, #0e947a 100%);
border: none;
z-index: 0;
&::after {
@include pos;
@include pseudowh($width: 100%, $height: 0);
bottom: 0;
left: 0;
z-index: -1;
border-radius: 5px;
background: #0da487;
background: linear-gradient(90deg, #0e947a 0%, #0da487 100%);
transition: all 0.3s ease;
}
}
}
&-category {
padding: calc(6px + (8 - 6) * ((100vw - 320px) / (1920 - 320))) calc(16px + (27 - 16) * ((100vw - 320px) / (1920 - 320)));
letter-spacing: 0.8px;
font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
font-weight: 700;
border-radius: 50px;
}
}
.btn-outline {
border: 1px solid var(--theme-color);
color: var(--theme-color);
background-color: white !important;
}
@mixin btn-gradien($deg, $leftcolor, $leftcolor-per, $rightcolor, $rightcolor-per, $font-color) {
background-image: linear-gradient(to right, $leftcolor 0%, $rightcolor 51%, $leftcolor 100%);
border: none;
color: $font-color;
background-size: auto 200%;
transition: all 0.3s ease;
}
.btn-primary-gradien {
@include btn-gradien(60, lighten($primary-color, 8%), 0%, darken($primary-color, 8%), 100%, $white);
color: $white;
&:focus,
&:active,
&.active {
transition: 1.5s;
background-position: right center;
background-image: linear-gradient(to right,
lighten($primary-color, 8%),
0%,
darken($primary-color, 8%),
100%,
$white) !important;
}
}
.btn-secondary-gradien {
@include btn-gradien(60, lighten($secondary-color, 8%), 0%, darken($secondary-color, 8%), 100%, $white);
&:hover,
&:focus,
&:active,
&.active,
&.hover {
transition: 1.5s;
background-position: right center;
background-image: linear-gradient(to right,
lighten($secondary-color, 8%),
0%,
darken($secondary-color, 8%),
100%,
$white) !important;
}
}
.btn-success-gradien {
@include btn-gradien(60, lighten($success-color, 8%), 0%, darken($success-color, 8%), 100%, $white);
&:hover,
&:focus,
&:active,
&.active,
&.hover {
transition: 1.5s;
background-position: right center;
background-image: linear-gradient(to right,
lighten($success-color, 8%),
0%,
darken($success-color, 8%),
100%,
$white) !important;
}
}
.btn-danger-gradien {
@include btn-gradien(60, lighten($danger-color, 8%), 0%, darken($danger-color, 8%), 100%, $white);
&:hover,
&:focus,
&:active,
&.active,
&.hover {
transition: 1.5s;
background-position: right center;
background-image: linear-gradient(to right,
lighten($danger-color, 8%),
0%,
darken($danger-color, 8%),
100%,
$white) !important;
}
}
.btn-warning-gradien {
@include btn-gradien(60, lighten($warning-color, 8%), 0%, darken($warning-color, 8%), 100%, $white);
&:hover,
&:focus,
&:active,
&.active,
&.hover {
transition: 1.5s;
background-position: right center;
background-image: linear-gradient(to right,
lighten($warning-color, 8%),
0%,
darken($warning-color, 8%),
100%,
$white) !important;
}
}
.btn-info-gradien {
@include btn-gradien(60, lighten($info-color, 8%), 0%, darken($info-color, 8%), 100%, $white);
&:hover,
&:focus,
&:active,
&.active,
&.hover {
transition: 1.5s;
background-position: right center;
background-image: linear-gradient(to right,
lighten($info-color, 8%),
0%,
darken($info-color, 8%),
100%,
$white) !important;
}
}
.btn-light-gradien {
@include btn-gradien(60, lighten($light-color, 8%), 0%, darken($light-color, 8%), 100%, $white);
&:hover,
&:focus,
&:active,
&.active,
&.hover {
transition: 1.5s;
background-position: right center;
background-image: linear-gradient(to right,
lighten($light-color, 8%),
0%,
darken($light-color, 8%),
100%,
$white) !important;
}
}
.btn-dark-gradien {
@include btn-gradien(60, lighten($dark-color, 8%), 0%, darken($dark-color, 8%), 100%, $white);
&:hover,
&:focus,
&:active,
&.active,
&.hover {
transition: 1.5s;
background-position: right center;
background-image: linear-gradient(to right,
lighten($dark-color, 8%),
0%,
darken($dark-color, 8%),
100%,
$white) !important;
}
}
@mixin btn-squre($border-radius) {
border-radius: $border-radius + px;
}
@mixin btn-pill($border-radius) {
border-radius: $border-radius + px;
}
@mixin btn-pill-first($radius) {
border-radius: $radius + px 0 0 $radius + px;
}
@mixin btn-pill-last($radius) {
border-radius: 0 $radius + px $radius + px 0;
}
.btn-lg {
font-size: 14px;
}
.btn-sm {
font-size: $btn-sm-font-size;
}
.btn-xs {
padding: $btn-xs-padding;
font-size: $btn-xs-font-size;
}
.large-btn {
.btn {
margin-right: 5px;
margin-bottom: 15px;
}
margin-bottom: -20px;
}
/* outline buttons */
@each $btn-name,
$btn-color in (primary, $primary-color),
(secondary, $secondary-color),
(success, $success-color),
(danger, $danger-color),
(info, $info-color),
(light, $light-color),
(dark, $dark-color),
(warning, $warning-color) {
.btn-air-#{$btn-name} {
box-shadow: 0 5px 10px 2px rgba(88, 103, 221, 0.19) !important;
&:hover,
&:active,
&:not([disabled]):not(.disabled):active {
background-color: darken($btn-color, 10%);
border-color: darken($btn-color, 10%);
}
}
.input-air-#{$btn-name} {
box-shadow: 0 3px 5px 1px rgba($btn-color, 0.1) !important;
&:focus {
border-color: $btn-color;
}
}
}
.btn-outline {
border: 1px solid $primary-color !important;
color: $primary-color !important;
align-items: baseline !important;
&:hover {
background-color: $primary-color !important;
color: $white !important;
}
}
.btn-solid {
border: 1px solid $primary-color !important;
background-color: $primary-color !important;
color: $white;
}
.btn-gradient {
color: $white !important;
font-weight: 500;
padding: 10px 30px;
border-radius: 5px;
background-color: $primary-color;
letter-spacing: 0.06rem;
&:hover {
background-size: 100% !important;
}
}
.btn-warning {
color: $white;
&:hover,
&.disabled {
color: $white;
}
}
[class*="-gradien"] {
&:hover {
background-size: 50% 100%;
transition: all 0.3s ease;
color: $white;
}
}
.btn-square {
@include btn-squre(0);
}
.btn-pill {
@include btn-squre(60);
}
.btn-group-pill {
.btn {
&:first-child {
@include btn-pill-first(60);
}
&:last-child {
@include btn-pill-last(60);
}
}
}
.btn-group-square {
.btn {
&:first-child {
@include btn-pill-first(0);
}
&:last-child {
@include btn-pill-last(0);
}
}
}
.btn-showcase {
margin-bottom: -10px;
display: flex;
align-items: center;
justify-content: space-around;
.btn {
margin-bottom: 10px;
margin-right: 18px;
}
}
.btn-dropdown-showcase {
.dropdown {
margin-bottom: 10px;
margin-right: 18px;
}
.btn-group {
margin-bottom: 10px;
margin-right: 18px;
}
margin-bottom: -10px;
}
.btn-group {
.radio {
label {
&::before {
top: 2px;
}
&::after {
top: 7px;
}
}
}
.checkbox {
label {
margin-top: 3px;
}
}
}
.btn-group-showcase {
>div {
margin-bottom: -20px;
label {
margin-bottom: 0;
}
}
.btn-group {
margin-right: 20px;
margin-bottom: 20px;
}
.checkbox {
input[type="checkbox"] {
display: none;
}
}
}
.tooltiptext {
visibility: visible;
width: 120px;
background-color: $gray-dark;
color: $white;
text-align: center;
border-radius: 6px;
padding: 5px 0;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -60px;
opacity: 1;
transition: opacity 0.3s;
&::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: $gray-dark transparent transparent transparent;
}
}
.btn-theme {
background-color: $primary-color !important;
color: $white;
display: flex;
border: 1px solid var(--theme-color) !important;
.position-relative {
display: flex;
align-items: center;
}
svg {
margin-right: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320)));
width: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
height: auto;
}
&:hover {
color: var(--theme-color) !important;
background-color: $white !important;
border: 1px solid var(--theme-color) !important;
}
}
.bootstrap-datetimepicker-widget {
padding: 30px;
text-align: center;
.btn {
margin: 0 10px;
font-size: 14px;
padding: 5px 8px;
}
}
.rtl-ltr-btn {
font-size: 16px;
font-weight: 700;
display: none;
}
.remove-button {
height: 100%;
display: flex;
align-items: flex-end;
.danger-animation {
@include flex_common;
overflow: hidden;
color: $white;
border-radius: 5px;
font-weight: 600;
background: transparent;
transition: all 0.3s ease;
position: relative;
background: #ff6b6b;
background: linear-gradient(90deg, #ff6b6b 0%, #ff4f4f 100%);
border: none;
z-index: 0;
i {
transition: 0.3s ease;
}
&::after {
@include pos;
@include pseudowh($width: 100%, $height: 0);
bottom: 0;
left: 0;
z-index: -1;
border-radius: 5px;
background: #ff4f4f;
background: linear-gradient(90deg, #ff4f4f 0%, #ff6b6b 100%);
transition: all 0.3s ease;
}
&:hover {
color: $white;
i {
transform: translateX(3px);
}
&::after {
top: 0;
height: 100%;
}
}
}
}
.save-back-button {
.btn-primary {
background-color: var(--theme-color) !important;
border: 1px solid var(--theme-color) !important;
transition: all 0.5s ease;
&:hover {
background-color: $white !important;
color: $primary-color;
}
}
.btn-outline {
border: 1px solid var(--theme-color) !important;
color: var(--theme-color) !important;
background-color: $white !important;
transition: all 0.5s ease;
&:hover {
background-color: $primary-color !important;
color: $white !important;
}
}
.btn-lg {
font-size: 16px;
padding: 10px 48px;
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,116 @@
/**=====================
Dropdown CSS Start
==========================**/
.dropdown-basic {
margin-bottom: -10px;
.btn-group {
margin-right: 18px;
.btn-round {
border-radius: 50px;
}
}
.separated-btn {
margin-left: -6px;
.btn {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
padding: 10px;
}
}
button {
max-height: 43px;
}
.dropdown {
position: relative;
display: inline-block;
margin-bottom: 10px;
.dropbtn {
color: $white;
padding: 12px 35px;
border: none;
cursor: pointer;
}
.dropdown-content {
display: none;
position: absolute;
right: 0;
background-color: $light-shade-silver;
min-width: 175px;
box-shadow: 0px 8px 16px 0px rgba($black, 0.2);
z-index: 1;
left: 0;
top: 45px;
a {
color: $black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-header {
padding: 12px 16px;
}
}
}
.dropdown-content a:hover {
background-color: $light-silver;
}
.dropdown:hover .dropdown-content {
display: block;
}
}
.dropup-basic {
.dropup {
position: relative;
display: inline-block;
.dropbtn {
color: $white;
padding: 12px;
border: none;
}
.dropup-content {
display: none;
position: absolute;
background-color: $light-shade-silver;
min-width: 170px;
bottom: 45px;
z-index: 999;
left: 0;
a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
}
}
.dropup .dropup-content a:hover {
background-color: $light-silver;
}
.dropup:hover .dropup-content {
display: block;
a {
&.active {
background-color: $light-silver;
}
}
}
}

View File

@@ -0,0 +1,40 @@
/**=====================
Error CSS start
==========================**/
.box-wrapper {
position: relative;
}
.error-box {
border: 1px solid $secondary-color;
padding: calc(15px + (40 - 15) * ((100vw - 320px) / (1920 - 320)));
background-color: $white;
border-radius: calc(8px + (12 - 8) * ((100vw - 320px) / (1920 - 320)));
display: flex;
align-items: center;
gap: 15px;
box-shadow: $card-box-shadow;
position: absolute;
width: 100%;
transform: translateY(-100%);
top: -138px;
svg {
width: 40px;
height: 40px;
fill: $secondary-color;
}
h4 {
font-size: 18px;
color: $secondary-color;
}
p {
font-size: 14px;
margin-bottom: 0;
color: $title-color;
line-height: 1;
margin-top: 5px;
}
}

View File

@@ -0,0 +1,373 @@
/**=====================
Form Wizard CSS Start
==========================**/
.form-wizard {
.tab {
display: none;
}
.btn-mb {
margin-bottom: 30px;
}
.step {
height: 10px;
width: 10px;
margin: 0 2px;
background-color: var(--theme-color);
border: none;
border-radius: 50%;
display: inline-block;
opacity: 0.5;
&.active {
opacity: 1;
}
&.finish {
background-color: var(--theme-secondary);
}
}
}
/*Form Wizard One ends*/
/*Form Wizard Two Start*/
.stepwizard {
display: table;
width: 100%;
position: relative;
margin-bottom: 30px;
.stepwizard-row {
display: table-row;
&:before {
top: 16px;
bottom: 0;
position: absolute;
content: " ";
width: 100%;
height: 1px;
background-color: $light-gray;
}
.stepwizard-step {
display: table-cell;
text-align: center;
position: relative;
p {
margin-top: 10px;
}
button[disabled] {
opacity: 1 !important;
filter: alpha(opacity=100) !important;
}
}
}
}
/*Form Wizard Two Ends*/
/*Form Wizard Three Start*/
.f1 {
fieldset {
display: none;
}
.input-error {
border-color: $danger-color;
}
.f1-steps {
overflow: hidden;
position: relative;
margin-top: 30px;
margin-bottom: 30px;
.f1-progress {
position: absolute;
top: 24px;
width: 100%;
height: 1px;
background: $dark-gray;
.f1-progress-line {
height: 1px;
background: var(--theme-color);
width: 16%;
}
}
.f1-step {
position: relative;
float: left;
width: 33.333333%;
text-align: center;
&.activated {
.f1-step-icon {
background: $white;
border: 1px solid var(--theme-color);
color: var(--theme-color);
}
p {
color: var(--theme-color);
}
}
&.active {
.f1-step-icon {
width: 48px;
height: 48px;
background: var(--theme-color);
font-size: 22px;
line-height: 20px;
}
p {
color: var(--theme-color);
}
}
p {
color: $dark-gray;
}
.f1-step-icon {
display: inline-block;
width: 40px;
height: 40px;
background: $dark-gray;
font-size: 16px;
color: $white;
line-height: 20px;
border-radius: 50%;
}
}
}
.f1-buttons {
text-align: right;
}
}
/*Form Wizard Three ends*/
/*Form Wizard Four Start*/
.wizard-4 {
.action-bar {
position: absolute;
bottom: 50px;
right: 50px;
}
.action-bar {
.btn {
float: right;
margin: 0 5px;
background-color: $light-purple !important;
border-color: $light-purple !important;
color: var(--theme-color);
}
.buttonDisabled {
color: $semi-dark;
background-color: rgba($semi-dark, 0.05) !important;
border: 1px solid rgba($semi-dark, 0.05) !important;
cursor: text;
}
}
.step-container {
background-color: $mainly-blue;
position: relative;
margin: 0;
padding: 0;
overflow: hidden;
clear: right;
width: 70%;
div {
&.content {
display: block;
position: absolute;
float: left;
height: 445px;
text-align: left;
overflow: auto;
z-index: 1;
width: 100%;
-webkit-box-sizing: border-box;
box-sizing: border-box;
clear: both;
.wizard-title {
width: 450px;
margin: 0 auto;
}
}
}
}
.loader {
display: none;
}
.msg-box {
position: fixed;
display: none;
padding: 5px 10px;
background-color: lighten($primary-color, 10%);
top: 30px;
border-radius: 5px;
right: 60px;
padding: 10px 20px;
.content {
padding: 0;
float: left;
padding-top: 3px;
color: $white;
}
.close {
color: $white;
margin-left: 10px;
opacity: 1;
font-size: 18px;
line-height: 1.4;
}
}
ul.anchor {
float: left;
width: 30%;
height: 100vh;
padding: 80px;
.disabled {
opacity: 0.7;
color: $semi-dark;
h4 {
background-color: rgba($semi-dark, 0.15);
}
}
.logo {
padding-bottom: 20px;
}
li {
position: relative;
display: block;
margin: 0;
padding: 0;
padding-bottom: 19px;
float: left;
clear: both;
width: 100%;
box-sizing: border-box;
z-index: 0;
&+li {
a {
padding-left: 80px;
}
}
&:last-child {
position: absolute;
bottom: 0;
img {
height: 300px;
}
}
h4 {
display: inline-block;
background-color: rgba($primary-color, 0.2);
padding: 16px 23px;
border-radius: 100%;
position: absolute;
left: 0;
top: 6px;
}
a {
display: block;
position: relative;
float: left;
margin: 0;
padding: 10px 20px;
width: 100%;
box-sizing: border-box;
text-decoration: none;
outline-style: none;
z-index: 1;
font-size: 18px;
small {
display: block;
font-size: 14px;
}
.stepNumber {
position: relative;
float: left;
width: 30px;
text-align: center;
padding: 5px;
padding-top: 0;
}
&.done {
h4 {
color: $white;
background: var(--theme-color);
&:before {
font-size: 12px;
position: absolute;
left: 5px;
top: -3px;
content: "\e64c";
font-family: 'themify';
background-color: $white;
color: var(--theme-color);
border-radius: 15px;
padding: 2px;
border: 1px solid;
}
}
}
&.error {
color: $dark-gray;
background: $pitch-color;
border: 1px solid $danger-color;
&:hover {
color: $black;
}
}
}
}
}
}
/*Form Wizard Four Ends*/
/**=====================
Form Wizard CSS Ends
==========================**/

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,345 @@
/**=====================
Loader scss
==========================**/
.spinning {
padding-right: 40px;
&::before {
content: "";
width: 18px;
height: 18px;
border-radius: 50%;
right: 10px;
top: 0;
position: absolute;
border: 2px solid white;
border-right: 3px solid #27ae60;
animation: rotate360 0.5s infinite linear;
}
}
@keyframes rotate360 {
100% {
transform: rotate(360deg);
}
}
.loader-wrapper {
position: fixed !important;
left: 0;
width: 100%;
height: calc(100vh - 144px);
background-color: #f9f9f6;
z-index: 3;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
gap: 15px;
top: 92px;
padding-left: 280px;
[dir="rtl"] & {
padding-left: 0;
padding-right: 280px;
left: unset;
right: 0;
}
@media (max-width: 991px) {
padding-left: 0;
[dir="rtl"] & {
padding-right: 0;
}
}
.loader {
width: 48px;
height: 48px;
border: 5px solid $white;
border-bottom-color: var(--theme-color);
border-radius: 50%;
display: inline-block;
animation: rotation 1s linear infinite;
}
h3 {
margin-top: 6px;
color: #777;
font-weight: 400;
}
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.skeleton-loader {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100vh;
background: linear-gradient(-45deg, #0da487, #009289, #ffa53b);
background-size: 400% 400%;
animation: gradient 15s ease infinite;
z-index: 1;
.sidebar-list {
a {
align-items: center;
margin-top: 4px !important;
i {
width: 25px;
height: 25px;
background: linear-gradient(90deg, rgba(212, 212, 212, 0.3) 8%, rgba(212, 212, 212, 0.3) 33%);
border-radius: 6px;
}
.loader-cls {
width: 62%;
height: 13px;
background: linear-gradient(90deg,
rgba(212, 212, 212, 0.3) 8%,
rgb(255 255 255 / 32%) 18%,
rgba(212, 212, 212, 0.3) 33%);
background-size: 800px 104px;
animation: skeleton-loader 2s infinite linear;
border-radius: 5px;
}
}
&:first-child {
a {
.loader-cls {
width: 28%;
}
}
}
&:nth-child(3) {
a {
.loader-cls {
width: 40%;
}
}
}
&:nth-child(5) {
a {
.loader-cls {
width: 25%;
}
}
}
&:nth-child(7),
&:nth-child(13) {
a {
.loader-cls {
width: 48%;
}
}
}
&:nth-child(9) {
a {
.loader-cls {
width: 30%;
}
}
}
&:nth-child(12) {
a {
.loader-cls {
width: 46%;
}
}
}
}
}
.page-wrapper {
&.compact-wrapper {
.page-body-wrapper {
div.sidebar-wrapper {
.skeleton-loader {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100vh;
background: linear-gradient(-45deg, #0da487, #009289, #ffa53b);
background-size: 400% 400%;
animation: gradient 15s ease infinite;
z-index: 1;
pointer-events: none;
.sidebar-main {
.sidebar-links {
overflow: hidden;
li {
&.sidebar-list {
a {
align-items: center;
margin-top: 4px !important;
justify-content: unset;
&::before {
display: none !important;
}
.svg-icon {
width: 20px;
height: 20px;
background: linear-gradient(90deg,
rgba(212, 212, 212, 0.3) 8%,
rgba(212, 212, 212, 0.3) 33%);
border-radius: 6px;
margin-right: 10px;
svg {
display: none;
}
[dir="rtl"] & {
margin-right: unset;
margin-left: 10px;
}
}
.icon-arrow {
display: none;
}
span {
font-size: 0;
width: 62%;
height: 13px;
background: linear-gradient(90deg,
rgba(212, 212, 212, 0.3) 8%,
rgb(255 255 255 / 32%) 18%,
rgba(212, 212, 212, 0.3) 33%);
background-size: 800px 104px;
animation: skeleton-loader 2s infinite linear;
border-radius: 5px;
}
}
&:first-child {
a {
span {
width: 28%;
}
}
}
&:nth-child(3) {
a {
span {
width: 40%;
}
}
}
&:nth-child(5) {
a {
span {
width: 25%;
}
}
}
&:nth-child(7),
&:nth-child(13) {
a {
span {
width: 48%;
}
}
}
&:nth-child(9) {
a {
span {
width: 30%;
}
}
}
&:nth-child(12) {
a {
span {
width: 46%;
}
}
}
}
}
}
}
}
}
}
}
}
.pos-loader {
position: relative;
.loader-wrapper {
position: absolute !important;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(249, 249, 246, 0.86);
padding: 0;
gap: 0;
z-index: 3;
}
}
.custom-box-loader {
position: relative;
min-height: 350px;
.box-loader {
.loader-wrapper,
.custom-loader-wrapper {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #fff;
padding: 0;
gap: 0;
}
}
}
@keyframes skeleton-loader {
0% {
transform: translateZ(0);
background-position: -468px 0;
}
100% {
transform: translateZ(0);
background-position: 468px 0;
}
}

View File

@@ -0,0 +1,457 @@
/**=====================
Modal CSS Start
==========================**/
@keyframes stroke {
100% {
stroke-dashoffset: 0;
}
}
@keyframes scale {
0%,
100% {
transform: none;
}
50% {
transform: scale3d(1.1, 1.1, 1);
}
}
@keyframes fill {
100% {
box-shadow: inset 0px 0px 0px 30px var(--theme-color);
}
}
.modal {
.modal-body {
h5 {
font-weight: 700;
font-size: calc(17px + (25 - 17) * ((100vw - 320px) / (1920 - 320)));
margin-bottom: calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)));
}
p {
margin-bottom: 20px;
font-size: 14px;
}
.button-box {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
.btn {
font-size: 16px;
padding: 11px 50px;
}
}
.icon-box {
width: 70px;
height: 70px;
padding: 18px;
border-radius: 100%;
background-color: rgba(26, 164, 136, 0.1);
color: var(--theme-color);
margin-bottom: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
margin-left: auto;
margin-right: auto;
}
.modal-title {
font-weight: 700;
font-size: calc(17px + (25 - 17) * ((100vw - 320px) / (1920 - 320)));
margin-bottom: 7px;
}
.btn--no {
margin-left: auto;
margin-right: 15px;
color: #fff !important;
background-color: #6c757d !important;
}
}
.btn-close {
position: absolute;
right: 15px;
top: 15px;
}
}
.modal-header {
position: relative;
h5 {
position: relative;
color: $content-color;
font-weight: 700;
font-size: calc(17px + (18 - 17) * ((100vw - 320px) / (1920 - 320)));
&:after {
content: '';
position: absolute;
bottom: 0;
left: -16px;
width: 3px;
height: 26px;
background-color: var(--theme-color);
[dir='rtl'] & {
left: unset;
right: -16px;
}
}
}
}
.theme-modal {
.modal-content {
border: none;
.modal-header {
padding: calc(12px + (16 - 12) * ((100vw - 320px) / (1920 - 320))) calc(17px + (16 - 17) * ((100vw - 320px) / (1920 - 320)));
position: relative;
border-bottom: 1px solid #eee !important;
.modal-title {
font-weight: 600;
font-size: 20px;
width: 95%;
margin-top: 0;
color: #222222;
@include mq-max(sm) {
margin-top: 0;
}
}
.btn-close {
position: absolute;
top: 50%;
right: 20px;
background-color: transparent;
opacity: 1;
background-size: 12px;
border-radius: 4px;
font-size: calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
color: var(--theme-color);
margin: 0;
padding: 0;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
transform: translateY(-50%);
[dir='rtl'] & {
right: unset;
left: 20px;
}
&:focus {
box-shadow: none;
}
@include mq-max(sm) {
i {
@include mq-max(sm) {
margin-top: -1px;
display: block;
}
}
}
}
}
.country-input {
.custom-select-box {
left: calc(16.66% + 12px);
[dir='rtl'] & {
right: calc(16.66% + 12px);
left: unset;
}
}
}
.modal-body {
padding: calc(15px + (25 - 15) * ((100vw - 320px) / (1920 - 320))) calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)));
}
.modal-footer {
border: none;
padding: calc(12px + (16 - 12) * ((100vw - 320px) / (1920 - 320))) calc(17px + (16 - 17) * ((100vw - 320px) / (1920 - 320)));
gap: 8px;
.btn--no {
color: #fff !important;
background-color: #6c757d !important;
}
.btn-animation {
background-color: var(--theme-color) !important;
border-color: var(--theme-color) !important;
}
}
}
}
.button-box {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
width: 100%;
.btn {
font-size: 16px;
padding: 11px 50px;
transition: none !important;
}
}
.remove-box {
text-align: center;
p {
margin-bottom: calc(-20px + (-30 - -20) * ((100vw - 320px) / (1920 - 320))) !important;
margin-top: 7px;
}
}
.remove-coupon {
.modal-content {
.modal-header {
justify-content: center;
padding-bottom: 0;
}
.modal-body {
.remove-box {
text-align: center;
h2 {
margin-bottom: 10px;
}
.checkmark {
width: 56px;
height: 56px;
border-radius: 50%;
display: block;
stroke-width: 2;
stroke: $white;
stroke-miterlimit: 10;
margin: 0 auto 10px;
box-shadow: inset 0px 0px 0px var(--theme-color);
animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
.checkmark__circle {
stroke-dasharray: 166;
stroke-dashoffset: 166;
stroke-width: 2;
stroke-miterlimit: 10;
stroke: var(--theme-color);
fill: none;
animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark__check {
transform-origin: 50% 50%;
stroke-dasharray: 48;
stroke-dashoffset: 48;
animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
}
p {
text-align: center;
line-height: 1.6;
margin: 0;
color: $content-color;
}
}
}
}
.modal-footer {
justify-content: center;
.btn {
font-size: 16px !important;
padding: 11px 50px !important;
}
}
}
.icon-box {
width: 70px;
height: 70px;
padding: 18px;
border-radius: 100%;
background-color: rgba(26, 164, 136, 0.1);
color: var(--theme-color);
margin-bottom: 10px;
}
.order-offcanvas {
.offcanvas-header {
padding: 18px;
.offcanvas-title {
color: $title-color;
font-weight: 600;
}
.btn-close {
background-color: var(--theme-color);
opacity: 1;
background-image: none;
width: 33px;
height: 33px;
padding: 0;
margin: 0;
i {
color: $white;
}
}
}
.offcanvas-body {
.order-date {
h6 {
color: $title-color;
}
}
.custome-accordion {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 21px;
margin-top: 22px;
.accordion-item {
width: 100%;
border: none;
.accordion-header {
.accordion-button {
background-color: #f3f3f3;
padding: 10px 17px;
border-radius: 3px;
font-weight: 600;
&::after {
content: none;
}
&::before {
content: '\f078';
font-family: 'Font Awesome 5 Free';
font-weight: 900;
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 17px;
}
&:not(.collapsed) {
color: $title-color;
box-shadow: none;
&::before {
transform: rotate(-180deg);
top: 25%;
}
}
&:focus {
border-color: transparent;
box-shadow: none;
}
}
}
}
}
}
}
.right-sidebar-modal {
.title-name {
font-weight: 600;
line-height: 1.4;
}
.price {
margin-top: 8px;
color: #777;
}
.qty-box {
margin-top: 0;
display: flex;
.input-group {
padding: 0;
border: none;
height: 47px;
background-color: #f9f9f6;
border-radius: 7px;
padding: 4px;
text-align: center;
z-index: 0;
border: 1px solid #eee;
align-items: center;
button {
background-color: transparent;
}
}
}
.modal-bottom-cart {
display: flex;
align-items: center;
gap: 14px;
margin-top: 24px;
.addcart-button {
background-color: var(--theme-color) !important;
padding: 13px 10px !important;
}
}
}
.slider-image {
width: 80%;
padding: 20px;
margin: 0 auto;
}
.qa-modal {
textarea.form-control {
min-height: 170px;
padding: 6px;
}
.all-package {
tbody {
tr {
td:first-child {
width: 140px !important;
}
}
}
}
}

View File

@@ -0,0 +1,73 @@
/**=====================
Pagination CSS Start
==========================**/
.custom-pagination {
margin-top: calc(22px + (35 - 22) * ((100vw - 320px) / (1920 - 320)));
padding-bottom: 1px;
.pagination {
justify-content: center;
flex-wrap: wrap;
gap: calc(6px + (13 - 6) * ((100vw - 320px) / (1920 - 320)));
.page-item {
border-radius: 5px;
overflow: hidden;
&:not(:first-child) {
.page-link {
margin: 0;
}
}
&.active {
.page-link {
background-color: var(--theme-color);
border-color: var(--theme-color);
color: $white;
&:hover {
background-color: var(--theme-color);
border-color: var(--theme-color);
color: $white;
}
}
}
&.disabled {
.page-link {
background-color: transparent
}
}
.page-link {
@include flex_common;
color: $content-color;
border: 1px solid transparent;
z-index: unset;
border-radius: 5px;
width: 40px;
height: 40px;
padding: 0;
&:hover {
border: 1px solid var(--theme-color);
background-color: unset;
color: var(--theme-color) !important;
}
&:focus {
color: var(--theme-color);
background-color: $white;
box-shadow: none;
}
svg {
[dir="rtl"] & {
transform: scale(-1);
}
}
}
}
}
}

View File

@@ -0,0 +1,600 @@
/**=====================
Radio CSS Start
==========================**/
.animate-chk {
label {
line-height: 1.6;
cursor: pointer;
&:last-child {
margin-bottom: 0;
}
}
}
.radio_animated {
position: relative;
margin: 0 1rem 0 0;
cursor: pointer;
&:before {
transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
transform: scale(0, 0);
content: "";
position: absolute;
top: 0;
left: 0.125rem;
z-index: 1;
width: 0.75rem;
height: 0.75rem;
background: var(--theme-color);
border-radius: 50%;
}
&:after {
content: "";
position: absolute;
top: -0.25rem;
left: -0.125rem;
width: 1.25rem;
height: 1.25rem;
background: $white;
border: 2px solid $light-gray;
border-radius: 50%;
}
&:checked:before {
transform: scale(1, 1);
}
}
.checkbox {
label {
display: inline-block;
position: relative;
padding-left: 16px;
cursor: pointer;
margin-top: 10px;
margin-bottom: 10px;
&::before {
content: "";
display: inline-block;
position: absolute;
width: 19px;
height: 19px;
left: 0;
margin-left: -16px;
border: 1px solid $light-semi-gray;
border-radius: 3px;
background-color: $white;
-webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
-o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
&::after {
display: inline-block;
position: absolute;
width: 16px;
height: 16px;
left: 0;
top: 0;
margin-left: -20px;
padding-left: 3px;
padding-top: 1px;
font-size: 11px;
color: $theme-font-color;
}
}
input[type="checkbox"] {
opacity: 0;
&:focus {
outline-offset: -2px;
&+label {
&::before {
outline-offset: -2px;
}
}
}
}
input[type="checkbox"] {
&:checked {
&+label {
&::before {
font-family: $font-themify;
content: "\e64c";
text-align: center;
line-height: 1.2;
}
}
}
&:disabled {
&+label {
opacity: 0.65;
&::before {
background-color: $light-color;
cursor: not-allowed;
}
}
}
}
.checkbox-circle {
label {
&::before {
border-radius: 50%;
}
}
}
.checkbox-inline {
margin-top: 0;
}
}
.m-squar {
label {
&::before {
border-radius: 0;
}
}
.checkbox-circle {
label {
&::before {
border-radius: 50%;
}
}
}
.checkbox-inline {
margin-top: 0;
}
}
@each $btn-name,
$btn-color in (primary, var(--theme-color)),
(secondary, $secondary-color),
(success, $success-color),
(danger, $danger-color),
(info, $info-color),
(light, $light-color),
(dark, $dark-color),
(warning, $warning-color) {
.checkbox-#{$btn-name} {
label {
&::before {
border-color: $btn-color;
}
}
input[type="checkbox"] {
&:checked {
&+label {
&::before {
border-color: $btn-color;
color: $btn-color;
}
&::after {
color: $white;
}
}
}
}
}
.checkbox-solid-#{$btn-name} {
label {
&:before {
background-color: $btn-color;
border-color: $btn-color;
color: $white;
}
}
input[type="checkbox"] {
&:checked {
&+label {
&::before {
background-color: $btn-color;
border-color: $btn-color;
color: $white;
}
&::after {
color: $white;
}
}
}
}
}
.radio-#{$btn-name} {
input[type="radio"] {
&+label {
&::before {
border-color: $btn-color;
}
&::after {
background-color: $btn-color;
}
}
&:checked {
&+label {
&::before {
border-color: $btn-color;
}
&::after {
background-color: $btn-color;
}
}
}
}
}
}
.m-checkbox-inline {
.checkbox {
display: inline-block;
}
.radio {
display: inline-block;
}
label {
margin-right: 20px;
}
}
.radio {
label {
display: inline-block;
position: relative;
padding-left: 5px;
cursor: pointer;
&::before {
content: "";
display: inline-block;
position: absolute;
width: 19px;
height: 19px;
left: 0;
margin-left: -20px;
border: 1px solid $light-semi-gray;
border-radius: 50%;
background-color: $white;
-webkit-transition: border 0.15s ease-in-out;
-o-transition: border 0.15s ease-in-out;
transition: border 0.15s ease-in-out;
}
&::after {
display: inline-block;
position: absolute;
content: " ";
width: 9px;
height: 9px;
left: 5px;
top: 5px;
margin-left: -20px;
border-radius: 50%;
background-color: $dark-gray;
-webkit-transform: scale(0, 0);
-ms-transform: scale(0, 0);
-o-transform: scale(0, 0);
transform: scale(0, 0);
-webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
-moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
-o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}
}
input[type="radio"] {
opacity: 0;
&:focus {
&+label {
&::before {
outline-offset: -2px;
}
}
}
&:checked {
&+label {
&::after {
-webkit-transform: scale(1, 1);
-ms-transform: scale(1, 1);
-o-transform: scale(1, 1);
transform: scale(1, 1);
}
}
}
&:disabled {
&+label {
opacity: 0.65;
&::before {
cursor: not-allowed;
}
}
}
}
.radio-inline {
margin-top: 0;
}
}
#app-cover {
display: table;
counter-reset: button-counter;
width: 100%;
.toggle-button-cover {
display: table-cell;
position: relative;
width: 100%;
height: auto;
box-sizing: border-box;
}
.button-cover {
height: auto;
background-color: $white;
box-shadow: 0 10px 20px -8px $light-body-bg-color;
border-radius: 4px;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.knobs {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 2;
}
.layer {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
background-color: $white-ice;
transition: 0.3s ease all;
z-index: 1;
}
.button {
position: relative;
top: 50%;
width: 100px;
height: 35px;
margin: 0;
overflow: hidden;
}
.button {
&.r {
border-radius: 100px;
.layer {
border-radius: 100px;
}
}
}
.button.b2 {
border-radius: 2px;
}
.checkbox {
position: relative;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
opacity: 0;
cursor: pointer;
z-index: 3;
}
#button-9 {
.knobs {
&:before {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 30px;
height: auto;
font-size: 10px;
font-weight: bold;
text-align: center;
line-height: 1;
padding-top: 4px;
border-radius: 50%;
transition: 0.4s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
content: "YES";
left: 4px;
color: $white;
opacity: 0;
z-index: 2;
}
&:after {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 30px;
height: auto;
font-size: 10px;
font-weight: bold;
text-align: center;
line-height: 1;
padding-top: 4px;
border-radius: 50%;
transition: 0.4s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
content: "NO";
right: -24px;
color: $white;
z-index: 2;
opacity: 0;
}
span {
position: absolute;
top: 4px;
width: 30px;
height: 30px;
font-size: 10px;
font-weight: bold;
text-align: center;
line-height: 1;
padding: 9px 4px;
border-radius: 50%;
transition: 0.4s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
left: 4px;
background-color: $dark-card-background;
z-index: 1;
}
}
.checkbox {
&:checked {
&+.knobs {
&:before {
left: -24px;
}
&:after {
right: 0;
opacity: 1;
}
span {
right: 0;
background-color: var(--theme-color);
left: unset;
}
}
~.layer {
background-color: $skin-tutu;
}
}
}
}
}
.radio-section {
label {
margin-right: 20px;
margin-bottom: 0;
>input {
display: none;
}
>i {
display: inline-block;
width: 15px;
height: 15px;
border-radius: 50%;
margin-right: 5px;
vertical-align: middle;
border: 2px solid var(--theme-color);
box-shadow: none;
transition: 0.25s;
}
>input:checked {
+i {
background: var(--theme-color);
}
}
&:hover {
cursor: pointer;
}
}
}
.checkbox_animated {
cursor: pointer;
position: relative;
margin-right: 16px;
height: 100%;
border: none;
[dir="rtl"] & {
margin-right: unset;
margin-left: 16px;
}
&:before {
@include pos;
@include pseudowh($width: 12px, $height: 6px);
transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
transform: rotate(-45deg) scale(0, 0);
left: 5px;
top: 5px;
z-index: 1;
border: 2px solid var(--theme-color);
border-top-style: none;
border-right-style: none;
[dir="rtl"] & {
left: unset;
right: 5px;
}
}
&:after {
@include pos;
width: 24px;
height: 24px;
top: -2px;
left: -1px;
background-color: #fff;
border: 2px solid #eee;
cursor: pointer;
border-radius: 6px;
[dir="rtl"] & {
left: unset;
right: -1px;
}
}
&:checked {
&:before {
transform: rotate(-45deg) scale(1, 1);
}
}
&:focus {
box-shadow: none;
}
}

View File

@@ -0,0 +1,58 @@
/**=====================
Success box CSS Start
==========================**/
.box-wrapper {
position: relative;
}
.success-box {
border: 1px solid $primary-color;
padding: calc(15px + 25 * (100vw - 320px) / 1600);
background-color: $white;
border-radius: calc(8px + 4 * (100vw - 320px) / 1600);
display: flex;
align-items: center;
gap: 15px;
box-shadow: $card-box-shadow;
position: absolute;
width: 100%;
transform: translateY(-100%);
top: -120px;
svg {
width: 40px;
height: 40px;
fill: $primary-color;
}
h4 {
font-size: 18px;
color: $primary-color;
}
p {
font-size: 14px;
margin-bottom: 0;
color: $title-color;
line-height: 1;
margin-top: 5px;
}
}
.user-round {
@include flex_common;
width: 40px;
height: 40px;
border-radius: 100%;
background-color: #f0f0f0;
margin: 0 auto;
h4 {
font-weight: 600;
}
img {
width: 50px;
height: auto;
object-fit: cover;
}
}

View File

@@ -0,0 +1,71 @@
/**=====================
Switch CSS Start
==========================**/
.switch {
position: relative;
display: inline-block;
width: 50px;
height: 24px;
margin-bottom: 0;
input {
display: none;
&:checked + .switch-state {
background-color: var(--theme-color);
&:before {
transform: translateX(26px);
}
}
&:focus + .switch-state {
box-shadow: 0 0 1px var(--theme-color);
}
}
.switch-state {
border-radius: 20px;
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #f3f3f3;
transition: 0.4s;
&:before {
@include pos;
height: 16px;
width: 16px;
left: 4px;
bottom: 4px;
background-color: $white;
transition: 0.4s;
border-radius: 20px;
}
}
&.switch-sm {
width: 42px;
height: 20px;
.switch-state {
&:before {
height: 14px;
width: 14px;
left: 3px;
bottom: 3px;
}
}
input {
&:checked {
+ .switch-state {
&:before {
transform: translateX(23px);
}
}
}
}
}
}

View File

@@ -0,0 +1,398 @@
/**=====================
Tabs CSS Start
==========================**/
.nav-pills {
.nav-link.active,
.show > .nav-link {
background-color: var(--theme-color);
}
}
.nav {
i {
margin-right: 10px;
}
}
.nav-right {
justify-content: flex-end;
}
$nav-name: theme, primary, secondary, success, danger, info, light, dark, warning;
$nav-color: var(--theme-color), var(--theme-color), $secondary-color, $success-color, $danger-color, $info-color,
$light-color, $dark-color, $warning-color;
@each $var in $nav-name {
$i: index($label-name, $var);
.nav-#{$var},
.nav-pills.nav-#{$var} {
.nav-link {
color: nth($nav-color, $i);
}
.nav-link.active,
.show > .nav-link {
background-color: nth($nav-color, $i);
color: $white;
}
}
}
.nav-tabs.nav-bottom {
.nav-item {
.nav-link.active,
.nav-link.focus,
.nav-link.hover {
border-color: $white $pattens-blue $pattens-blue;
}
}
}
.tab-content {
~ .nav-tabs {
&.border-tab {
margin-bottom: 0;
margin-top: 30px;
}
}
}
.border-tab.nav-tabs {
display: flex;
align-items: center;
flex-wrap: nowrap;
margin-bottom: 30px;
.nav-item {
.nav-link {
font-size: 16px;
color: $dark-color;
text-align: center;
padding: 10px 25px;
border: none;
border-bottom: none;
transition: 0.3s;
&.active,
&.show,
&:focus,
&:hover {
color: var(--theme-color);
}
&.active,
&.show,
&:focus {
border-bottom: none;
}
}
}
}
.border-tab.nav-left {
.nav-link {
border-left: 2px solid transparent;
transition: all 0.3s ease;
color: $dark-color;
}
.nav-link.active,
.show > .nav-link {
background-color: transparent;
border-left-color: var(--theme-color);
color: var(--theme-color);
border-radius: 0;
transition: all 0.3s ease;
}
}
.border-tab.nav-right {
.nav-link {
border-right: 2px solid transparent;
transition: all 0.3s ease;
color: $dark-color;
text-align: right;
}
.nav-link.active,
.show > .nav-link {
background-color: transparent;
border-right-color: var(--theme-color);
color: var(--theme-color);
border-radius: 0;
transition: all 0.3s ease;
}
}
$m-nav-name: theme, primary, secondary, success, danger, info, light, dark, warning;
$nav-color: var(--theme-color), var(--theme-color), $secondary-color, $success-color, $danger-color, $info-color,
$light-color, $dark-color, $warning-color;
@each $var in $m-nav-name {
$i: index($label-name, $var);
.border-tab.nav-#{$var} {
.nav-link.active,
.nav-item.show,
.nav-link:focus,
.nav-link:hover {
color: nth($nav-color, $i);
background-color: transparent;
}
.nav-item {
.nav-link {
transition: 0.3s;
&.active,
&.show,
&:focus {
border-bottom: 2px solid nth($nav-color, $i);
}
&.active,
&.show,
&:focus,
&:hover {
color: nth($nav-color, $i);
}
}
}
}
.border-tab.nav-left.nav-#{$var} {
.nav-link.active,
.show > .nav-link {
border-left-color: nth($nav-color, $i);
color: nth($nav-color, $i);
}
}
.border-tab.nav-right.nav-#{$var} {
.nav-link.active,
.show > .nav-link {
border-right-color: nth($nav-color, $i);
color: nth($nav-color, $i);
}
}
}
.tabbed-card {
ul {
position: absolute;
right: 22px;
top: 33px;
border-bottom: none;
&.border-tab {
&.nav-tabs {
top: 12px;
.nav-item {
float: right;
.nav-link {
padding: 32px 15px;
}
}
}
}
}
}
.nav-pills {
border-bottom: 1px solid $gray-light;
.nav-item {
margin-right: 20px;
.nav-link {
border: none;
padding: 10px 25px;
background-color: transparent;
position: relative;
color: $black1;
font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
font-weight: 700;
&:after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 1px;
background-color: var(--theme-color);
opacity: 0;
}
&:hover {
&::after {
opacity: 0.6;
}
}
&.active {
&::after {
opacity: 1;
}
}
}
}
}
.variant-box {
padding-top: 15px;
border-top: 1px solid #efefef;
}
.variant-row {
display: flex;
flex-wrap: wrap;
margin-left: -12px;
margin-right: -12px;
.row {
[class*="col-"] {
width: 100% !important;
}
}
.input-error {
flex: 0 0 auto;
width: 41.66666667%;
padding-left: 12px;
padding-right: 12px;
@media (max-width: 576px) {
width: 100%;
}
}
}
.delete-variant {
display: flex;
align-items: center;
justify-content: center;
flex: 0 0 auto;
width: 16.66666667%;
@media (max-width: 576px) {
width: 100%;
justify-content: flex-start;
padding-left: 15px;
padding-right: 15px;
}
a {
color: #dc3545 !important;
text-transform: capitalize;
@media (max-width: 576px) {
margin-top: 0;
margin-bottom: 20px;
}
}
}
.inside-horizontal-tabs {
@media (max-width: 991px) {
margin-top: -32px;
background-color: $white;
}
.nav-tabs {
display: flex;
align-items: center;
flex-wrap: unset;
border-bottom: 1px solid #efefef;
overflow-x: auto;
overflow-y: hidden;
* {
scrollbar-width: auto;
scrollbar-color: #ffffff #ffffff;
}
&::-webkit-scrollbar {
width: 0;
height: 0;
}
&::-webkit-scrollbar-track {
background: #ffffff;
}
&::-webkit-scrollbar-thumb {
background-color: #ffffff;
border-radius: 10px;
border: 3px solid #ffffff;
}
.nav-item {
display: inline-block;
width: auto;
border-radius: 6px;
background-color: transparent;
margin-bottom: 0;
.nav-link {
background-color: transparent;
border-radius: 0;
padding: 12px 20px;
color: #212529;
font-size: 16px;
border: none;
text-transform: capitalize;
display: flex;
gap: 10px;
white-space: nowrap;
font-weight: 500;
&.active {
background: transparent;
color: var(--theme-color);
border-radius: 0;
font-weight: 600;
border: none;
border-bottom: 2px solid var(--theme-color);
}
}
+ .nav-item {
margin-top: 0;
}
}
}
.nav-pills {
display: flex;
align-items: center;
border-bottom: 1px solid #efefef;
.nav-item {
display: inline-block;
width: auto;
border-radius: 6px;
background-color: transparent !important;
margin-bottom: 0;
.nav-link {
background-color: transparent;
border-radius: 0;
padding: 12px 20px;
display: flex;
align-items: center;
gap: 10px;
&.active {
background: transparent;
color: var(--theme-color);
border-bottom: 2px solid var(--theme-color);
border-radius: 0;
font-weight: 700;
}
}
+ .nav-item {
margin-top: 0;
}
}
}
.tab-content {
padding-left: 0;
border-left: none;
padding-top: 10px;
[dir="rtl"] & {
border-right: none;
}
@media (max-width: 991px) {
border-top: none;
padding-top: 0;
}
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,34 @@
/**=====================
Tree CSS Start
==========================**/
.jstree-default {
.jstree-clicked {
background-color: lighten($primary-color, 42%);
box-shadow: none;
color: $dark-color;
}
}
.vakata-context,
.vakata-context ul {
background-color: $white;
border: none;
box-shadow: 0 0 2px 2px $light-semi-gray;
li {
a {
.vakata-contextmenu-sep {
display: none;
}
&:hover {
background-color: lighten($primary-color, 45%);
box-shadow: None;
}
}
}
.vakata-context-separator {
display: none;
}
}

View File

@@ -0,0 +1,207 @@
/**=====================
typahead-search CSS Start
==========================**/
.Typeahead {
width: 100%;
* {
box-sizing: border-box;
&:before {
box-sizing: border-box;
}
&:after {
box-sizing: border-box;
}
}
.tt-hint {
display: none !important;
}
}
.u-cf {
&:before {
content: " ";
display: table;
}
&:after {
content: " ";
display: table;
clear: both;
}
}
.u-hidden {
display: none !important;
}
.u-posRelative {
position: relative;
}
.Typeahead-spinner {
position: absolute;
top: 14px;
right: 18px;
display: none;
color: #c5c5c5;
}
.ProfileCard-avatar {
svg {
height: 18px;
vertical-align: bottom;
path {
color: #7e7c7c !important;
}
polygon {
color: #7e7c7c !important;
}
}
}
.Typeahead-hint {
width: 100%;
padding: 5px 8px;
font-size: 24px;
line-height: 30px;
border: 1px solid #024e6a;
border-radius: 8px;
position: absolute;
top: 0;
left: 0;
color: #ccd6dd;
opacity: 1;
}
.Typeahead-menu {
position: absolute;
top: 100%;
left: 0;
padding: 15px;
z-index: 100;
display: none;
width: 100%;
overflow: hidden;
background-color: $white;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.Typeahead-menu.is-open {
display: block;
}
.Typeahead-selectable {
cursor: pointer;
+ {
.Typeahead-selectable {
border-top: 1px solid #ccd6dd;
}
}
}
.ProfileCard {
position: relative;
padding: 10px;
border: 1px solid $gray-60 !important;
margin-bottom: 10px;
border-radius: 10px;
&:hover {
color: #414345;
background: #f8f8f8;
.ProfileCard-avatar {
border-color: #f5f8fa;
}
.ProfileCard-screenName {
color: $white;
}
.ProfileCard-stat-label {
color: $white;
}
}
}
.ProfileCard-avatar {
position: absolute;
border-radius: 5px;
}
.ProfileCard-details {
padding-left: 35px;
float: left;
}
.ProfileCard-realName {
display: inline-block;
color: $dark-gray;
}
.ProfileCard-screenName {
display: inline-block;
color: $dark-gray;
}
.ProfileCard-description {
margin-top: 5px;
font-size: 14px;
line-height: 18px;
}
.ProfileCard-stats {
float: right;
text-align: right;
}
.ProfileCard-stat {
display: inline-block;
font-size: 12px;
line-height: 16px;
text-transform: uppercase;
+ {
.ProfileCard-stat {
margin-left: 5px;
}
}
}
.ProfileCard-stat-label {
color: $dark-gray;
font-weight: 500;
}
.ProfileCard.is-active {
color: $white;
background: var(--theme-color);
.ProfileCard-screenName {
color: $white;
}
.ProfileCard-stat-label {
color: $white;
}
}
.EmptyMessage {
position: relative;
padding: 10px;
font-size: 14px;
line-height: 30px;
text-align: center;
}
.Typeahead-spinner {
width: 1rem;
height: 1rem;
}

View File

@@ -0,0 +1,36 @@
/**=====================
Footer CSS Start
==========================**/
.footer {
background-color: $footer_bg_color;
box-shadow: $footer_box_shadow;
padding: 15px;
position: fixed;
bottom: 0;
right: 0;
width: calc(100vw - 280px);
transition: 0.5s;
z-index: 2;
@media (max-width: 1199px) {
width: calc(100vw - 260px);
}
@include mq-max(lg) {
width: 100%;
right: 0;
}
&.footer-dark {
background-color: $footer_dark_color;
p {
color: $white;
}
}
}
.footer-fix {
width: calc(100% - 280px);
position: fixed;
}

View File

@@ -0,0 +1,27 @@
/**=====================
GRID CSS Start
==========================**/
.grid-showcase {
margin-bottom: -10px;
span {
display: block;
border: 1px solid $light-color;
padding: 10px;
margin-bottom: 10px;
text-align: center;
background-color: $white;
}
}
.grid-align {
margin-bottom: -30px;
.row {
padding: 15px 0;
min-height: 10rem;
border: 1px solid rgba($primary-color, 0.02);
margin-bottom: 30px;
background-color: rgba($primary-color, 0.02);
}
}

View File

@@ -0,0 +1,511 @@
/**=====================
Header CSS Start
==========================**/
.offcanvas,
.offcanvas-bookmark {
.page-wrapper {
.page-body-wrapper {
.page-body {
position: relative;
filter: blur(5px) grayscale(100%);
}
}
}
}
.header-title {
font-size: calc(16px + (23 - 16) * ((100vw - 320px) / (1920 - 320)));
}
.logo-wrapper {
position: relative;
.toggle-sidebar {
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
height: 40px;
width: 40px;
svg {
width: $header-wrapper-nav-icon-size;
height: $header-wrapper-nav-icon-size;
font-size: 22px;
color: $white;
}
i {
font-size: 22px;
color: $white;
}
&:before {
content: "";
position: absolute;
height: 40px;
width: 40px;
background-color: rgba($primary-color, 0.1);
border-radius: 100%;
left: -11px;
z-index: -2;
top: -8px;
transform: scale(0);
transition: all 0.3s ease;
}
&:hover {
&:before {
height: 100%;
width: 100%;
transform: scale(1);
transition: all 0.3s ease;
top: 0;
left: 0;
}
}
}
}
.onhover-dropdown {
cursor: pointer;
position: relative;
&:hover {
.onhover-show-div {
@extend %for-animated-hover-box;
}
}
}
.onhover-show-div {
top: 80px;
position: absolute;
z-index: 8;
background-color: $white;
transition: all linear 0.3s;
@extend %for-animated-hover;
li {
a {
svg {
margin-top: 0 !important;
path,
line {
color: $theme-body-font-color !important;
}
}
}
}
}
.left-header {
.level-menu {
.nav-link {
display: inline-block;
border-radius: 5px;
background-color: rgba($secondary-color, 0.15%);
transition: all 0.3s ease;
color: var(--theme-secondary);
margin-left: 10px;
&.active {
background-color: var(--theme-secondary);
color: $white;
transition: all 0.3s ease;
svg {
stroke: $white;
}
}
svg {
height: 18px;
margin-right: 5px;
vertical-align: middle;
stroke: var(--theme-secondary);
}
}
.header-level-menu {
position: absolute;
top: 59px;
background-color: $white;
border-radius: 5px;
width: 180px;
height: 0;
padding: 0.7rem 0.5rem;
box-shadow: 0 0 37px rgba(8, 21, 66, 0.1);
min-width: 180px;
opacity: 0;
visibility: hidden;
display: block !important;
transition: all 0.2s ease-in-out;
&.show {
opacity: 1;
visibility: visible;
height: 225px;
}
li {
padding: 0.5rem 1rem;
width: 100%;
transition: all 0.3s ease;
&:hover {
background-color: rgba($primary-color, 0.1);
border-radius: 5px;
transition: all 0.3s ease;
> a {
> span {
color: var(--theme-color);
transition: all 0.3s ease;
}
> svg {
stroke: var(--theme-color);
transition: all 0.3s ease;
}
}
}
}
> li {
position: relative;
width: 100%;
&:hover {
.header-level-sub-menu {
opacity: 1;
box-shadow: 0 0 37px rgba(8, 21, 66, 0.1);
animation: fadeInLeft 300ms ease-in-out;
}
}
a {
color: $dark-color;
}
svg {
width: 16px;
vertical-align: middle;
margin-right: 5px;
stroke: $dark-color;
}
span {
vertical-align: middle;
}
> .header-level-sub-menu {
position: absolute;
padding: 0.7rem 0.5rem;
left: 173px;
z-index: 9;
background-color: $white;
width: 170px;
border-radius: 5px;
top: 0;
opacity: 0;
animation: fadeInLeft 300ms ease-in-out;
}
}
}
}
.mega-menu {
.nav-link {
display: inline-block;
border-radius: 5px;
background-color: rgba($primary-color, 0.07%);
transition: all 0.3s ease;
&.active {
transition: all 0.3s ease;
color: $white;
background-color: var(--theme-color);
}
.according-menu {
display: none;
}
svg {
height: 18px;
margin-right: 5px;
vertical-align: middle;
}
}
}
.mega-menu-container {
min-width: 1100px;
position: absolute;
width: calc(100vw - 800px);
height: 0;
border-radius: 0px;
background-color: $white;
top: 59px;
left: -30px;
border-top: 1px solid $light-semi-gray;
padding-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
box-shadow: 0 0 20px rgba(89, 102, 122, 0.1);
opacity: 0;
visibility: hidden;
display: block !important;
transition: all 0.2s ease-in-out;
&.show {
opacity: 1;
visibility: visible;
height: 300px;
}
.link-section {
> div {
h6 {
margin-top: 20px;
}
}
li {
width: 100%;
padding: 7px 0 7px 15px;
a {
transition: all 0.3s ease;
}
&:hover {
a {
color: var(--theme-color);
letter-spacing: 1.5px;
transition: all 0.3s ease;
}
}
}
}
.mega-box {
& + .mega-box {
padding-left: 30px;
border-left: 1px solid $light-semi-gray;
}
.doted {
li {
position: relative;
&:hover {
&:before {
background-color: var(--theme-color);
transition: all 0.3s ease;
}
}
&:before {
content: "";
position: absolute;
top: 15px;
height: 5px;
width: 5px;
background-color: $light-text;
left: 0;
border-radius: 100%;
transition: all 0.3s ease;
}
}
}
.dashed-links {
li {
position: relative;
&:hover {
&:before {
background-color: var(--theme-color);
transition: all 0.3s ease;
}
}
&:before {
content: "";
position: absolute;
top: 16px;
height: 2px;
width: 6px;
background-color: $light-text;
left: 0;
}
}
}
.icon {
li {
position: relative;
&:hover {
&:before {
color: var(--theme-color);
transition: all 0.3s ease;
}
}
&:before {
content: "\f101";
font-family: fontawesome;
position: absolute;
top: 7px;
left: 0px;
}
}
}
.svg-icon {
& ~ div {
h6 {
margin-top: 10px;
margin-bottom: 5px;
}
}
li {
padding-left: 0px;
&:hover {
&:before {
color: var(--theme-color);
transition: all 0.3s ease;
}
}
a {
svg {
width: 16px;
margin-right: 5px;
vertical-align: middle;
}
}
}
}
}
.submenu-title {
margin-top: 20px;
margin-left: 20px;
}
.according-menu {
display: none;
}
}
.horizontal-menu {
li {
display: inline-block;
}
}
}
.mega-menu {
.default-according {
.card {
.btn-link {
font-weight: 500;
color: gray;
}
.card-body {
font-size: 12px;
}
}
}
.onhover-show-div {
width: 1500px;
}
.card-body {
padding: 20px;
}
div {
> div {
a {
margin-bottom: 0px;
display: inline-block;
color: $theme-body-sub-title-color;
}
}
}
.list-unstyled {
div {
a {
padding: 8px 35px 8px 0;
transition: $sidebar-transition;
&:hover {
padding: 8px 35px 8px 10px;
transition: $sidebar-transition;
}
}
}
}
}
.header-option {
width: 80px;
background-color: #0da487;
color: white;
text-align: center;
padding: 5px 5px;
margin-left: 5px;
cursor: pointer;
}
.header-btns {
display: flex;
align-items: center;
gap: 15px;
.btn {
padding: calc(7px + (9 - 7) * ((100vw - 320px) / (1920 - 320)))
calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320))) !important;
}
}
.notification-setting li {
padding: 14px;
border-radius: 5px;
position: relative;
background-color: #f9f9f6;
h4 {
margin-bottom: 6px;
color: #333;
font-size: 17px;
font-weight: 500;
}
h5 {
color: #999;
display: flex;
align-items: center;
gap: 6px;
font-size: 15px;
}
}
.notification-setting li + li {
margin-top: 18px;
}

View File

@@ -0,0 +1,88 @@
/**=====================
NAV CSS Start
==========================**/
#accordionoc {
#collapseicon,
#collapseicon1 {
padding-top: 0px;
}
li {
button {
display: flex;
align-items: center;
}
}
}
.navs-icon.default-according.style-1 {
li {
button {
position: relative;
&:hover {
color: var(--theme-color) !important;
}
}
button[aria-expanded="true"] {
&:before {
right: 2px;
top: 6px;
}
}
button[aria-expanded="false"]:before {
right: 2px;
top: 6px;
}
}
}
.navs-icon {
padding: 30px;
li {
padding: 9px 0;
a {
color: $theme-body-font-color;
&:hover {
color: var(--theme-color);
}
}
ul {
padding-top: 9px;
}
}
}
.onhover-dropdown {
&.navs-dropdown {
&:hover {
.onhover-show-div {
&:before,
&:after {
right: 77px;
left: unset;
}
}
}
}
}
.icon-lists {
font-family: $font-rubik, $font-serif;
}
.pl-navs-inline {
padding-left: 30px !important;
}
.inline-nav {
li {
line-height: 1.3;
}
}

View File

@@ -0,0 +1,307 @@
/**=====================
Product CSS Start
==========================**/
.add-to-cart-box {
background-color: #f8f8f8;
border-radius: 50px;
position: relative;
.btn-add-cart {
padding: calc(8px + (10 - 8) * ((100vw - 320px) / (1920 - 320))) 0;
width: 100%;
font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
margin-top: 10px;
color: $content-color;
border-radius: 50px;
font-weight: 500;
i {
@include center(vertical);
@include flex_common;
@include pseudowh(
$width: calc(30px + (37 - 30) * ((100vw - 320px) / (1920 - 320))),
$height: calc(30px + (37 - 30) * ((100vw - 320px) / (1920 - 320)))
);
background-color: #f9f9f6;
border-radius: 100%;
color: var(--theme-color);
position: absolute;
right: 5px;
@include mq-max(xs) {
display: none;
}
}
}
.qty-box {
@include pseudowh;
position: absolute;
top: 0;
left: 0;
margin: 0;
display: none;
&.open {
display: block;
}
.input-group {
background-color: var(--theme-color);
border-radius: 50px;
padding: 4px;
text-align: center;
z-index: 0;
justify-content: space-between;
button {
@include pseudowh(
$width: calc(29px + (35 - 29) * ((100vw - 320px) / (1920 - 320))),
$height: calc(29px + (35 - 29) * ((100vw - 320px) / (1920 - 320)))
);
@include flex_common;
border: none;
padding: 0;
background-color: var(--theme-color);
z-index: 0;
border-radius: 100% !important;
position: relative;
overflow: hidden;
&::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: $white;
opacity: 0.2;
z-index: -1;
}
i {
font-size: 13px;
color: $white;
margin-top: 1px;
}
&:focus {
box-shadow: none;
}
}
input {
height: auto;
background-color: transparent;
border: none;
padding: 0;
text-align: center;
font-size: 14px;
color: $white;
}
}
}
}
.product-box {
padding: 14px;
position: relative;
background-color: #f9f9f6;
border-radius: 5px;
transition: all 0.4s ease-in-out;
&:hover {
box-shadow: 0 0 8px rgba($title-color, 0.08);
.product-header {
.product-image {
.product-option {
bottom: 10px;
opacity: 1;
}
}
}
.product-header {
.product-image {
img {
transform: scale(1.1);
}
}
}
}
.product-header {
position: relative;
.product-image {
text-align: center;
padding: 20px;
display: block;
@include mq-max(xs) {
padding: 8px;
}
img {
@include pseudowh($width: 100%, $height: calc(100px + (140 - 100) * ((100vw - 320px) / (1920 - 320))));
object-fit: contain;
transition: all 0.3s ease-in-out;
}
.product-option {
@include center(horizontal);
@include flex_common($dis: flex, $align: center, $justify: space-between);
position: absolute;
bottom: -5px;
background-color: $white;
width: 100%;
padding: 10px 5px;
border-radius: 7px;
box-shadow: 0 0 8px rgba($title-color, 0.12);
opacity: 0;
transition: all 0.3s ease-in-out;
max-width: 230px;
@include mq-max(xs) {
display: none;
}
li {
position: relative;
width: 33.33%;
a {
color: $title-color;
.feather {
@include pseudowh($width: 17px, $height: auto);
color: $content-color;
}
}
+ li {
&:after {
@include pos;
@include pseudowh($width: 1px, $height: 100%);
top: 0;
left: 0;
background-color: $content-color;
opacity: 0.3;
[dir="rtl"] & {
left: unset;
right: 0;
}
}
}
}
}
}
.product-header-top {
@include flex_common($dis: flex, $align: center, $justify: space-between);
position: absolute;
top: 0;
left: 0;
width: 100%;
[dir="rtl"] & {
left: unset;
right: 0;
}
.label-new {
position: relative;
border-radius: 4px;
padding: 3px 8px;
color: $white;
&.bg-warning {
background: linear-gradient(-90deg, #ffbf65 -14.53%, #ffad39 99.15%) !important;
}
&.bg-theme {
background: var(--theme-color2) !important;
}
label {
font-size: 13px;
margin-top: 1px;
font-weight: 600;
}
}
.wishlist-button {
position: relative;
padding: 6px;
margin-left: auto;
background-color: $white;
box-shadow: 0 3px 3px rgba($title-color, 0.24);
border-radius: 100%;
z-index: 0;
[dir="rtl"] & {
margin-left: unset;
margin-right: auto;
}
.feather {
@include pseudowh($width: 15px, $height: 15px);
color: $content-color;
}
}
.close-button {
position: relative;
padding: 0;
z-index: 0;
.feather {
@include pseudowh($width: 20px, $height: auto);
color: $content-color;
}
}
}
}
.product-footer {
.product-detail {
.span-name {
font-size: 13px;
color: #50607c;
margin-bottom: calc(4px + (8 - 4) * ((100vw - 320px) / (1920 - 320)));
}
a {
color: $title-color;
&:hover {
color: $title-color;
}
}
.name {
font-weight: 500;
line-height: calc(21px + (24 - 21) * ((100vw - 320px) / (1920 - 320)));
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
display: -webkit-box;
overflow: hidden;
}
.unit {
font-size: 13px;
font-weight: 500;
margin-top: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320)));
color: #777;
}
}
.price {
margin-top: 6px;
font-weight: 600;
}
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,163 @@
/**=====================
Search CSS Start
==========================**/
.search-page {
.theme-form {
input {
border: 1px solid var(--theme-color);
padding-left: 20px;
border-radius: 10px 0 0 10px;
flex: 1 1 auto;
&::placeholder {
color: $primary-color;
}
&:focus {
outline: none;
}
}
.input-group {
.btn {
line-height: 32px;
font-size: 16px;
}
.form-control-plaintext {
background: transparent;
}
}
}
h6 {
line-height: 1.4;
}
.nav-link {
font-weight: 500;
text-transform: uppercase;
}
.border-tab {
&.nav-tabs {
.material-border {
border-bottom-width: 1px;
}
.nav-item {
.nav-link {
font-size: 15px;
padding: 10px 18px;
}
}
}
}
.media {
.media-body {
overflow: hidden;
}
}
.info-block {
padding: 30px;
border-radius: 15px;
border: 1px solid $light-color;
a {
color: #656565;
margin-bottom: 3px;
display: block;
}
h6 {
color: $primary-color;
}
+ .info-block {
margin-top: 20px;
}
}
.border-tab.nav-tabs {
align-items: left;
justify-content: end;
.nav-item {
width: auto;
}
}
.search-links {
h6 {
margin-bottom: 10px;
}
}
p {
text-transform: lowercase;
margin-bottom: 0;
color: #a5a2a2;
}
ul.search-info {
li {
display: inline-block;
font-size: 12px;
line-height: 1;
color: #586082;
+ li {
border-left: 1px solid lighten($dark-color, 50%);
padding-left: 8px;
margin-left: 8px;
}
i {
color: $warning-color;
&:not(:last-child) {
margin-right: 4px;
}
}
}
}
#video-links {
.embed-responsive + .embed-responsive {
margin-top: 30px;
}
}
}
.search-list {
margin-bottom: 30px;
width: auto;
display: inline-flex;
border-radius: 10px;
overflow: hidden;
border: 1px solid $primary-color;
border: none;
.nav-item {
background-color: rgba($primary-color, 0.1);
.nav-link {
border: none;
padding: 0.7rem 1.5rem;
opacity: 0.5;
&.active {
background-color: rgba($primary-color, 0.1);
color: var(--theme-color);
opacity: 1;
}
}
&.show,
&.active {
background-color: rgba($primary-color, 0.1);
}
}
}

View File

@@ -0,0 +1,322 @@
/**=====================
21. Select 2 CSS Start
==========================**/
.select2 {
max-width: 100%;
}
.tracker-title {
font-size: 28px;
letter-spacing: 1.2px;
margin: 0;
font-weight: 500;
}
.tracker-number {
p {
margin-bottom: 10px;
letter-spacing: 1.2px;
span {
font-weight: 500;
margin-left: 10px;
color: $black1;
}
}
}
.order-left-image {
margin-top: 0;
display: flex;
align-items: center;
@include mq-max(lg) {
display: block;
}
.tracking-product-image {
margin-right: 40px;
width: 24%;
[dir="rtl"] & {
margin-right: 0;
margin-left: 40px;
}
@include mq-max(lg) {
margin-bottom: 18px;
width: 50%;
margin-left: auto;
margin-right: auto;
[dir="rtl"] & {
margin-right: auto;
margin-left: auto;
}
}
@include mq-max(md) {
margin: 0 auto;
margin-bottom: calc(20px + (40 - 20) * ((100vw - 320px) / (1920 - 320)));
}
}
.order-image-contain {
width: calc(100% - 30px);
@include mq-max(lg) {
width: 100%;
}
p {
margin-bottom: calc(5px + (10 - 5) * ((100vw - 320px) / (1920 - 320)));
letter-spacing: 0.05em;
span {
font-weight: 700;
margin-left: 10px;
color: #4a5568;
[dir="rtl"] & {
margin-left: 0;
margin-right: 10px;
}
}
}
h4 {
font-size: 22px;
letter-spacing: 0.03em;
margin-bottom: calc(12px + (23 - 12) * ((100vw - 320px) / (1920 - 320)));
font-weight: 700;
@include mq-max(md) {
font-size: calc(16px + (24 - 16) * ((100vw - 320px) / (1920 - 320)));
}
}
h5 {
font-size: 18px;
letter-spacing: 0.03em;
margin-top: calc(12px + (23 - 12) * ((100vw - 320px) / (1920 - 320)));
font-weight: 600;
}
}
}
.order-address {
margin-top: 50px;
@include mq-max(2xs) {
margin-top: 20px;
}
li {
display: flex;
align-items: flex-start;
@include mq-max(2xs) {
display: block;
}
.left-box {
text-transform: capitalize;
min-width: 210px;
padding: 10px 0;
h6 {
font-weight: 500;
@include mq-max(2xs) {
color: #7e7e7e !important;
margin-bottom: -13px;
padding-bottom: 8px;
border-bottom: 1px solid #cacaca;
font-weight: 500;
}
}
}
.right-box {
padding: 10px 0;
width: 180px;
p {
margin-bottom: 0;
line-height: 1.6;
}
}
}
}
.select2-container--open {
.select2-dropdown {
z-index: 7;
}
}
.select2-container {
width: 100% !important;
}
.select2-drpdwn {
.select2-selection {
border-radius: 0 !important;
border-color: $light-color !important;
height: 40px !important;
padding: 5px;
}
.form-control {
border-radius: 5px;
}
.form-control-primary {
border-color: var(--theme-color);
color: var(--theme-color);
}
.form-control-secondary {
border-color: var(--theme-secondary);
color: var(--theme-secondary);
}
.form-control-success {
border-color: $success-color;
color: $success-color;
}
.form-control-info {
border-color: $info-color;
color: $info-color;
}
.form-control-warning {
border-color: $warning-color;
color: $warning-color;
}
.form-control-danger {
border-color: $danger-color;
color: $danger-color;
}
.form-control-inverse {
border-color: $dark-color;
color: $dark-color;
}
.form-control-primary-fill {
background-color: var(--theme-color);
color: $white;
}
.form-control-secondary-fill {
background-color: var(--theme-secondary);
color: $white;
}
.form-control-success-fill {
background-color: $success-color;
color: $white;
}
.form-control-info-fill {
background-color: $info-color;
color: $white;
}
.form-control-warning-fill {
background-color: $warning-color;
color: $white;
}
.form-control-danger-fill {
background-color: $danger-color;
color: $white;
}
.form-control-inverse-fill {
background-color: $dark-color;
color: $white;
}
}
$color_bon_jour_approx: #e0e0e0;
$color_cape_cod_approx: #424242;
.selection {
.select2-selection {
border-radius: 5px !important;
.select2-search__field {
margin-top: 0;
padding: 3px;
}
}
}
.select2-container--classic {
.select2-selection--multiple {
.select2-selection__choice {
padding: 2px 6px !important;
margin-top: 0 !important;
background-color: var(--theme-color) !important;
border-color: darken($primary-color, 10%) !important;
color: $white;
margin-right: 8px !important;
}
.select2-selection__choice__remove {
color: $white !important;
float: right;
margin-left: 0.5rem;
}
}
.select2-results__option--highlighted[aria-selected] {
background-color: $color_bon_jour_approx !important;
color: $color_cape_cod_approx !important;
}
.select2-results__options .select2-results__option[aria-selected="true"] {
background-color: var(--theme-color) !important;
color: $white !important;
}
}
.select2-container--default {
.select2-selection--single {
.select2-selection__arrow {
top: 7px !important;
right: 10px !important;
}
}
.select2-selection--multiple {
.select2-selection__choice {
padding: 2px 6px !important;
margin-top: 0 !important;
background-color: var(--theme-color) !important;
border-color: darken($primary-color, 10%) !important;
color: $white;
margin-right: 8px !important;
}
.select2-selection__choice__remove {
color: $white !important;
float: right;
margin-left: 0.5rem;
}
}
.select2-results__option--highlighted[aria-selected] {
background-color: $color_bon_jour_approx !important;
color: $color_cape_cod_approx !important;
}
.select2-results__options .select2-results__option[aria-selected="true"] {
background-color: var(--theme-color) !important;
color: $white !important;
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,931 @@
/**=====================
Checkout CSS start
==========================**/
.checkout {
.checkout-details {
background-color: #f9f9f9;
border: 1px solid #dddddd;
padding: 40px;
.order-place {
margin-top: 15px;
}
}
}
.order-box {
.title-box {
padding-bottom: 20px;
color: #444444;
font-size: 22px;
border-bottom: 1px solid #ededed;
margin-bottom: 20px;
span {
width: 35%;
float: right;
font-weight: 600;
text-align: right;
}
h4 {
font-weight: 600;
}
.checkbox-title {
display: flex;
justify-content: space-between;
}
}
.sub-total {
li {
position: relative;
display: inline-block;
font-size: 16px;
font-weight: 600;
color: #333333;
line-height: 20px;
margin-bottom: 20px;
width: 100%;
.count {
position: relative;
font-size: 18px;
line-height: 20px;
font-weight: 400;
width: 35%;
float: right;
text-align: right;
}
}
.shipping-class {
margin-bottom: 12px;
.shopping-checkout-option {
margin-top: -4px;
position: relative;
font-size: 18px;
line-height: 20px;
color: var(--theme-color);
font-weight: 400;
width: 35%;
float: right;
text-align: right;
}
}
}
.total {
position: relative;
margin-bottom: 30px;
li {
position: relative;
display: block;
font-weight: 400;
color: #333333;
line-height: 20px;
font-size: 18px;
}
}
.qty {
position: relative;
border-bottom: 1px solid #ededed;
margin-bottom: 30px;
li {
position: relative;
display: block;
font-size: 15px;
color: #444444;
line-height: 20px;
margin-bottom: 20px;
span {
float: right;
font-size: 18px;
line-height: 20px;
color: #232323;
font-weight: 400;
width: 35%;
text-align: right;
}
}
}
}
.radio-option {
position: relative;
}
.img-paypal {
width: 30%;
margin-left: 15px;
}
.checkout-section-2 {
.left-sidebar-checkout {
.checkout-detail-box {
>ul {
display: flex;
flex-wrap: wrap;
gap: calc(20px + (40 - 20) * ((100vw - 320px) / (1920 - 320)));
>li {
position: relative;
width: 100%;
&:last-child {
.checkout-box {
&::before {
content: none;
}
}
}
.checkout-icon {
position: absolute;
top: 0;
left: 0;
width: 50px;
height: 50px;
border-radius: 50%;
padding: 6px;
background-color: $white;
display: flex;
align-items: center;
justify-content: center;
color: var(--theme-color);
box-shadow: 0 0 8px #eee;
z-index: 1;
svg {
width: 20px;
height: 20px;
fill: #4a5568;
}
[dir="rtl"] & {
left: unset;
right: 0;
}
@media (max-width: 576px) {
display: none;
}
}
.checkout-box {
padding: calc(14px + (29 - 14) * ((100vw - 320px) / (1920 - 320)));
background-color: $white;
border-radius: 8px;
box-shadow: 0 0 8px #eee;
margin-left: 66px;
position: relative;
.payment-method {
ul {
display: flex;
align-items: center;
gap: 15px;
li {
width: auto;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid transparent;
background-color: #f9f9f6;
padding: 15px 40px;
border-radius: 20px;
text-align: center;
cursor: pointer;
i {
font-size: 28px;
color: #898989;
line-height: 1;
}
h5 {
color: #898989;
}
&.active {
border-color: var(--theme-color);
color: var(--theme-color);
i {
color: var(--theme-color);
}
}
}
}
}
.form-select {
background-color: #f9f9f6;
border-color: #eee;
line-height: 1.8;
}
[dir="rtl"] & {
margin-left: unset;
margin-right: 66px;
}
@media (max-width: 576px) {
margin-left: 0;
[dir="rtl"] & {
margin-left: unset;
margin-right: 0;
}
}
&::before {
content: "";
position: absolute;
top: 25px;
left: -42px;
width: 0;
height: 115%;
border-left: 1px dashed rgba($title-color, 0.18);
[dir="rtl"] & {
left: unset;
right: -42px;
}
@media (max-width: 576px) {
content: none;
}
}
.checkout-title {
margin-bottom: calc(9px + (17 - 9) * ((100vw - 320px) / (1920 - 320)));
display: flex;
align-items: center;
justify-content: space-between;
h4 {
font-weight: 600;
font-size: calc(16px + (19 - 16) * ((100vw - 320px) / (1920 - 320)));
}
}
.checkout-detail {
.delivery-address-box {
border-radius: 8px;
padding: calc(12px + (24 - 12) * ((100vw - 320px) / (1920 - 320)));
background-color: #f9f9f6;
height: 100%;
.form-check {
padding-left: 0;
[dir="rtl"] & {
padding-left: unset;
padding-right: 0;
}
.form-check-input {
float: unset;
margin: 0;
&:active {
filter: unset;
}
}
}
>div {
display: flex;
position: relative;
.label {
position: absolute;
top: 0;
right: 0;
background-color: var(--theme-color);
padding: 2px 8px;
border-radius: 4px;
color: $white;
font-size: 12px;
letter-spacing: 0.8px;
[dir="rtl"] & {
right: unset;
left: 0;
}
label {
margin-bottom: 0;
line-height: 1.7;
}
}
.form-check {
.form-check-input {
width: calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
height: calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
margin-top: 2px;
margin-left: 0;
&:checked {
background-color: var(--theme-color);
border-color: var(--theme-color);
}
&:checked[type="radio"] {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
&:focus {
box-shadow: none;
border-color: var(--theme-color);
}
}
}
.delivery-address-detail {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-left: 0;
width: calc(85% + (75 - 85) * ((100vw - 320px) / (1920 - 320)));
[dir="rtl"] & {
margin-left: unset;
margin-right: 0;
padding-right: 0;
}
li {
display: block;
width: 100%;
}
p,
h6 {
line-height: 1.4;
margin-bottom: 0;
font-weight: 400;
font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
span {
margin-right: 4px;
font-weight: 600;
}
}
}
}
}
.add-address {
display: flex;
align-items: center;
justify-content: center;
padding: 30px;
height: 100%;
text-align: center;
cursor: pointer;
background-color: $white;
box-shadow: 0 0 9px rgba($black, 0.07);
border-radius: 8px;
}
.delivery-option {
padding: calc(17px + (26 - 17) * ((100vw - 320px) / (1920 - 320)));
background-color: #f9f9f6;
border-radius: 5px;
.select-option {
@media (max-width: 1460px) {
margin-top: 6px;
}
}
.date-box {
position: relative;
i {
top: 50%;
transform: translateY(-50%);
position: absolute;
right: 17px;
font-size: 18px;
color: $content-color;
}
}
.delivery-category {
display: flex;
align-items: center;
height: 100%;
@media (max-width: 767px) {
display: block;
}
}
.custom-form-check {
display: flex;
align-items: center;
margin-bottom: 0;
min-height: auto;
[dir="rtl"] & {
padding-left: unset;
padding-right: 1.5rem;
}
.form-check-label {
font-size: calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
padding-left: 12px;
font-weight: 500;
margin-bottom: 0;
width: calc(100% - calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320))));
[dir="rtl"] & {
padding-left: unset;
padding-right: 12px;
}
}
}
.delivery-date {
font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
font-weight: 500;
border: 1px solid $border-color;
background-color: $white;
display: flex;
align-items: center;
color: $content-color;
width: 100%;
padding: calc(8px + (10 - 8) * ((100vw - 320px) / (1920 - 320))) calc(15px + (25 - 15) * ((100vw - 320px) / (1920 - 320)));
input {
font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
font-weight: 500;
border: none;
background-color: $white;
display: flex;
align-items: center;
color: $content-color;
width: 100%;
}
}
.delivery-time {
display: flex;
align-items: center;
height: 100%;
.dropdown-toggle {
font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
font-weight: 500;
border: 1px solid $border-color;
background-color: $white;
display: flex;
align-items: center;
color: $content-color;
i {
-webkit-text-stroke: 1px $content-color;
color: transparent;
font-size: 18px;
margin-right: 10px;
}
&::after {
content: none;
}
&::before {
position: absolute;
content: "\f107";
top: 50%;
transform: translateY(-50%);
right: 20px;
font-family: "Font Awesome 6 Free";
font-weight: 900;
}
}
.dropdown-menu {
border: 1px solid transparent;
box-shadow: 0 6px 5px rgba($black, 0.1);
li {
a {
&:active {
color: $black;
text-decoration: none;
background-color: $border-color;
}
}
+li {
margin-top: 5px;
}
}
}
}
}
.future-box {
display: none;
&.show {
display: block;
}
.future-option {
padding: calc(17px + (26 - 17) * ((100vw - 320px) / (1920 - 320)));
background-color: rgba(26, 164, 136, 0.05);
border-radius: 10px;
.delivery-items {
display: flex;
align-items: center;
height: 100%;
width: 100%;
>div {
width: 100%;
}
h4 {
margin-bottom: 16px;
color: $title-color;
font-weight: 500;
}
ul {
display: flex;
flex-wrap: wrap;
width: 100%;
margin: -8px;
li {
width: 25%;
padding: 8px;
@media (max-width: 1500px) {
width: 33.33%;
}
@media (max-width: 1400px) {
width: 50%;
}
@media (max-width: 460px) {
width: 100%;
}
a {
background-color: $white;
display: block;
text-align: center;
color: $title-color;
padding: 12px 8px;
border: 1px solid var(--theme-color);
border-radius: 8px;
}
&.active {
a {
background-color: var(--theme-color);
color: $white;
}
}
}
}
}
}
}
.payment-button {
padding: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320))) calc(15px + (25 - 15) * ((100vw - 320px) / (1920 - 320)));
font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
font-weight: 500;
}
.payment-method {
.custom-form-check {
label {
font-weight: 500;
font-size: 17px;
}
}
}
.credit-card-box {
.credit-detail {
position: relative;
}
}
.credit-info {
label {
font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
font-weight: 500;
}
}
.payment-option {
padding: 20px;
box-shadow: 0 0 5px rgba($black, 0.17);
border-radius: 8px;
position: relative;
.form-check {
.form-check-input {
margin-top: 4px;
}
label {
font-weight: 500;
font-size: 18px;
padding-left: 10px;
}
}
img {
top: 50%;
transform: translateY(-50%);
position: absolute;
right: 20px;
width: 60px;
}
}
.custom-accordion {
display: flex;
flex-wrap: wrap;
gap: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
align-items: center;
.accordion-item {
border: none;
border-radius: 6px;
overflow: hidden;
display: block;
width: 100%;
background-color: #f8f8f8;
border-radius: 5px;
.accordion-header {
.accordion-button {
color: $content-color;
position: relative;
padding: 0;
background-color: #f8f8f8;
&::after {
content: none;
}
&::before {
font-family: "Font Awesome 6 Free";
font-weight: 900;
position: absolute;
content: "\f107";
top: 50%;
transform: translateY(-50%);
right: 30px;
transition: transform 0.2s ease-in-out;
[dir="rtl"] & {
right: unset;
left: 30px;
}
}
&:not(.collapsed) {
background-color: transparent;
box-shadow: none;
&::before {
top: 20%;
transform: rotate(-180deg) translateY(-50%);
}
}
.form-check {
display: flex;
align-items: center;
width: 100%;
.form-check-label {
font-weight: 500;
display: flex;
align-items: center;
width: 100%;
font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
padding: 16px 20px;
margin-bottom: 0;
[dir="rtl"] & {
padding-right: 0;
}
@media (max-width: 480px) {
margin-top: 5px;
}
.form-check-input {
margin-right: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320)));
[dir="rtl"] & {
margin-left: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320)));
margin-right: unset;
}
}
}
}
}
}
.accordion-collapse {
.accordion-body {
padding-top: 0;
.cod-review {
margin: 0;
line-height: 1.5;
color: $content-color;
font-size: 16px;
a {
&:hover {
color: var(--theme-color);
}
}
}
.custom-form-check {
margin-bottom: calc(5px + (8 - 5) * ((100vw - 320px) / (1920 - 320)));
display: flex;
align-items: center;
[dir="rtl"] & {
padding-left: unset;
padding-right: 0;
}
label {
display: flex;
align-items: center;
font-size: calc(14px + (17 - 14) * ((100vw - 320px) / (1920 - 320)));
}
input {
margin-right: 10px;
[dir="rtl"] & {
margin-right: unset;
margin-left: 10px;
}
}
}
}
}
}
}
}
}
}
}
}
}
.pos-detail-card {
.product-details {
.cart-listing {
.text-theme {
color: var(--theme-color);
}
li {
padding-bottom: 15px;
margin-bottom: 15px;
border-bottom: 1px solid #eee;
img {
width: 50px;
height: 50px;
}
.cart-content {
width: calc(100% - 65px);
h4 {
font-weight: 400;
color: $content-color;
width: 80%;
-webkit-line-clamp: 1;
margin-bottom: 4px;
}
.price {
position: absolute;
right: 0;
top: 0;
font-weight: 500;
color: $title-color;
[dir="rtl"] & {
right: unset;
left: 0;
}
}
}
}
}
}
}
}
.empty-box {
text-align: center;
img {
width: 40px;
opacity: 1;
}
h2 {
font-size: 22px;
color: #bfbfbf;
font-weight: 500;
text-align: center;
padding: 14px 0 30px;
}
}
.coupon-sec {
>div {
width: 100%;
}
.apply-sec {
display: flex;
align-items: flex-start;
justify-content: space-between;
background-color: rgba(26, 164, 136, 0.11);
border-radius: 7px;
padding: 12px 12px;
width: 100%;
border: 1px dashed rgba(26, 164, 136, 0.2);
a {
color: var(--theme-color);
}
h4 {
span {
font-size: 15px !important;
}
}
p {
margin-bottom: 0;
}
>div {
display: flex;
align-items: flex-start;
gap: 6px;
img {
width: 22px;
}
}
}
.coupon-box {
input {
padding: 10px 10px;
}
.coupon-error {
animation: shake 0.5s;
}
.btn-apply {
outline: 0;
box-shadow: none;
border: 1px solid #1aa387;
background-color: #1aa387;
color: white;
padding: 5px 16px;
border-radius: 0 5px 5px 0;
height: 100%;
}
}
}

View File

@@ -0,0 +1,363 @@
/**=====================
Dashboard CSS start
==========================**/
.dashboard-tiles {
margin-bottom: 30px;
.card-tiles {
display: flex;
align-items: center;
width: 100%;
justify-content: space-between;
background-color: white;
padding: 22px 13px;
border-radius: 10px;
position: relative;
&:after {
content: "";
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 3px;
height: 35px;
background-color: var(--theme-color);
border-radius: 5px;
}
h6 {
color: rgba($content-color, 0.8);
}
h3 {
color: $title-color;
margin-top: 8px;
font-weight: 700;
font-size: calc(20px + (24 - 20) * ((100vw - 320px) / (1920 - 320)));
}
.icon-box {
width: 52px;
height: 52px;
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
padding: 10px;
svg {
color: $white;
font-size: 22px;
}
}
}
.row {
>div {
&:first-child {
.card-tiles {
background: rgba(#0da487, 0.1);
&:after {
background-color: #0da487;
}
.icon-box {
background: #0da487;
}
}
}
&:nth-child(2) {
.card-tiles {
background: rgba(#ffa53b, 0.1);
&:after {
background-color: #ffa53b;
}
.icon-box {
background: #ffa53b;
}
}
}
&:nth-child(3) {
.card-tiles {
background: rgba(#a04aff, 0.1);
&:after {
background-color: #a04aff;
}
.icon-box {
background: #a04aff;
}
}
}
&:nth-child(4) {
.card-tiles {
background: rgba(#ff6161, 0.1);
&:after {
background-color: #ff6161;
}
.icon-box {
background: #ff6161;
}
}
}
}
}
}
.apexcharts-toolbar {
z-index: 1 !important;
}
.top-selling-table {
border: 1px solid #eee;
padding: 8px;
border-radius: 8px;
body[class="dark-only"] & {
border-color: #1d3436;
}
table {
border: none;
width: 100%;
tr {
+tr {
td {
border-top: 1px solid #eee;
border-color: #eee;
}
}
}
}
td {
padding: 10px;
border: none;
}
.img-info {
display: flex;
align-items: center;
gap: 10px;
.user-round {
width: auto;
height: auto;
margin: unset;
background-color: transparent;
}
img {
width: 60px;
height: 60px;
object-fit: cover;
}
}
h6 {
color: rgba($content-color, 0.7);
text-transform: capitalize;
body[class="dark-only"] & {
color: rgba(255, 255, 255, 0.6);
}
}
h5 {
color: $title-color;
margin-top: 5px;
font-weight: 600;
body[class="dark-only"] & {
color: rgba(255, 255, 255, 0.6);
}
}
}
.blog-box {
.blog-img {
img {
height: 180px;
border-radius: 8px;
margin-bottom: 10px;
object-fit: cover;
width: 100%;
}
}
.blog-content {
a {
color: $title-color;
font-size: 16px;
margin-bottom: 4px;
display: block;
font-weight: 500;
body[class="dark-only"] & {
color: rgba(255, 255, 255, 0.6);
}
}
h6 {
color: rgba($content-color, 0.7);
body[class="dark-only"] & {
color: rgba(255, 255, 255, 0.3)
}
}
}
}
.review-box {
border: 1px solid #eee;
border-radius: 8px;
body[class="dark-only"] & {
border-color: #1d3436;
}
table {
width: 100%;
border: none;
tr {
+tr {
border-top: 1px dashed #eee;
}
}
}
li {
display: flex;
align-items: center;
justify-content: space-between;
span {
font-size: 15px;
}
.rating-sec {
span {
font-size: 16px;
}
}
+li {
margin-top: 7px;
padding-top: 7px;
border-top: 1px dashed #eee;
}
>div {
display: flex;
align-items: center;
gap: 10px;
}
}
.review-content {
display: flex;
align-items: center;
gap: 10px;
span {
width: calc(100% - 5px - 40px);
}
}
td {
padding: 8px;
border: none;
}
tr {
td {
&:nth-child(2) {
width: auto;
min-width: 190px;
text-align: center;
}
&:nth-child(1) {
width: auto;
min-width: 250px;
}
}
}
.img-box {
width: 40px;
height: 40px;
border-radius: 5px;
display: flex;
align-items: center;
justify-content: center;
background: #e9eaea;
padding: 2px;
img {
object-fit: contain;
height: 100%;
}
}
.rating-sec {
font-size: 17px;
gap: 0px;
}
}
@media (min-width: 576px) {
.dashboard-form {
>div {
>.container-fluid {
padding: 0;
>.row {
margin: 0;
>div {
padding: 0;
}
}
}
>form {
>.container-fluid {
padding: 0;
>.row {
margin: 0;
>div {
padding: 0;
}
}
>.container-fluid {
padding: 0;
>.row {
margin: 0;
>div {
padding: 0;
}
}
}
}
}
}
}
}

View File

@@ -0,0 +1,46 @@
/**=====================
Error-page CSS Start
==========================**/
.error-section {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
position: relative;
z-index: 1;
&:after {
content: "";
position: absolute;
background-image: url("../../images/error-bg.png");
background-size: cover;
left: 0;
top: 0;
width: 100%;
height: 100%;
opacity: 0.5;
z-index: -1;
}
img {
width: 42%;
@media (max-width: 480px) {
width: 80%;
}
}
h2 {
text-transform: uppercase;
margin-bottom: 18px;
display: block;
margin-top: 20px;
}
h3 {
width: 80%;
line-height: 1.6;
margin: 10px auto 0;
color: $light-text;
font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
@media (max-width: 480px) {
width: 100%;
}
}
}

View File

@@ -0,0 +1,274 @@
/**=====================
Log In And Sign up CSS Start
==========================**/
.log-in-section {
overflow-x: hidden;
display: flex;
align-items: center;
position: relative;
z-index: 0;
min-height: 100vh;
overflow: auto;
padding: calc(25px + (60 - 25) * ((100vw - 320px) / (1920 - 320))) 0;
&::after {
@include pos;
@include pseudowh;
top: 0;
left: 0;
background-image: url(../../images/bg.png);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
z-index: -1;
}
&.otp-section {
display: flex;
align-items: center;
}
.image-contain {
@include flex_common;
height: 100%;
}
.inputs {
margin: calc(-2px + (-8 - 2) * ((100vw - 320px) / (1920 - 320)));
input {
margin: calc(2px + (8 - 2) * ((100vw - 320px) / (1920 - 320)));
border: none;
}
}
.log-in-box {
background-color: $white;
padding: calc(16px + (50 - 16) * ((100vw - 320px) / (1920 - 320)));
border-radius: calc(8px + (12 - 8) * ((100vw - 320px) / (1920 - 320)));
.form-floating {
> label{
z-index: 0;
}
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type="number"] {
-moz-appearance: textfield;
}
.logo-name {
margin-bottom: calc(20px + (30 - 20) * ((100vw - 320px) / (1920 - 320)));
margin-top: -10px;
a {
font-size: calc(28px + (35 - 28) * ((100vw - 320px) / (1920 - 320)));
font-weight: bold;
color: $title-color;
font-family: $public-sans;
display: block;
img {
width: calc(150px + (225 - 150) * ((100vw - 320px) / (1920 - 320)));
}
}
}
.log-in-title {
margin-bottom: calc(12px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
h3 {
margin-bottom: calc(1px + (6 - 1) * ((100vw - 320px) / (1920 - 320)));
font-size: calc(18px + (21 - 18) * ((100vw - 320px) / (1920 - 320)));
color: var(--theme-color);
font-weight: 600;
}
h4,
h5 {
color: $content-color;
margin-top: 8px;
}
}
.log-in-button {
margin-top: 20px;
padding: 1px 0;
ul {
@include flex_wrap($dis: flex, $wrap: wrap, $gap: 15px);
align-items: center;
[dir="rtl"] & {
padding-right: 0;
}
li {
display: block;
width: 100%;
background-color: $light-color;
a {
@include flex_common;
font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
color: $title-color;
border-radius: 5px;
padding: calc(10px + (16 - 10) * ((100vw - 320px) / (1920 - 320))) calc(18px + (30 - 18) * ((100vw - 320px) / (1920 - 320)));
flex-wrap: wrap;
gap: calc(8px + (10 - 8) * ((100vw - 320px) / (1920 - 320)));
background-color: $light-color;
img {
width: calc(18px + (24 - 18) * ((100vw - 320px) / (1920 - 320)));
}
}
}
}
}
.forgot-box {
@include flex_common($dis: flex, $align: center, $justify: space-between);
@include mq-max(2xs) {
display: block;
}
}
.remember-box {
display: flex;
align-items: center;
.check-box {
display: block;
margin-top: -6px;
}
label {
font-size: 16px;
margin-bottom: 0;
span {
font-weight: 500;
color: var(--theme-color);
}
}
}
.forgot-password {
font-size: 16px;
font-weight: 500;
display: block;
&:hover {
color: var(--theme-color);
}
}
.other-log-in {
margin-top: 15px;
text-align: center;
position: relative;
&::before {
@include pos;
@include center(vertical);
@include pseudowh($width: 100%, $height: 1px);
left: 0;
background-color: #ddd;
z-index: 0;
}
h6 {
color: $content-color;
position: relative;
background-color: $white;
padding: 0 14px;
display: inline-block;
text-transform: uppercase;
}
}
.sign-up-box {
margin-top: 20px;
text-align: center;
h4 {
color: $content-color;
font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
margin-bottom: calc(0px + (3 - 0) * ((100vw - 320px) / (1920 - 320)));
}
a {
font-weight: 500;
font-size: calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
margin-bottom: -4px;
display: block;
&:hover {
color: var(--theme-color);
}
}
}
.contact-title {
margin-bottom: 30px;
h2 {
margin-bottom: 15px;
}
h5 {
width: 53%;
font-size: 18px;
line-height: 1.3;
color: $content-color;
}
}
.input-box {
.form-floating {
>label {
[dir="rtl"] & {
left: unset;
right: 0;
}
}
>.form-control {
&:not(:placeholder-shown) {
~label {
[dir="rtl"] & {
transform: scale(0.85) translateY(-0.5rem) translateX(4.55rem);
}
}
}
}
}
}
.country-input{
.custom-select-box{
height: calc(100% - 2px);
left: 1px;
border-left: unset;
border-block: unset;
.form-select{
border-left: unset;
border-block: unset;
height: 56px;
background-color: $white !important;
}
}
.form-floating{
> .form-control:not(:placeholder-shown){
padding-block: 1rem;
}
}
}
}
}

View File

@@ -0,0 +1,519 @@
/**=====================
Media CSS Start
==========================**/
.media-library-sec {
.dropdown {
transform: translateY(-10px);
transition: all 0.5s ease;
opacity: 0;
visibility: hidden;
.dropdown-menu {
padding: 10px 5px;
li {
margin-bottom: 6px;
&:last-child {
margin-bottom: 0;
}
}
.dropdown-item {
border-top: none;
font-size: 15px;
&:hover {
color: var(--theme-color);
}
}
}
}
.library-box {
overflow: hidden;
position: relative;
.dropdown-toggle {
&:after {
display: none;
}
}
.dropdown {
position: absolute;
right: 10px;
top: 10px;
background-color: rgba(82, 82, 82, 0.72);
line-height: 1;
color: $white;
@include pseudowh($width: 26px, $height: 26px);
@include flex_common;
border-radius: 3px;
cursor: pointer;
z-index: 1;
.btn {
background-color: rgba(82, 82, 82, 0.72) !important;
line-height: 1;
color: #fff;
width: 26px;
height: 26px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 3px;
cursor: pointer;
z-index: 1;
padding: 0 !important;
}
> a {
i,
svg {
color: $white;
}
}
}
&:hover {
label {
&:before {
transform: translateY(0);
transition: all 0.5s ease;
opacity: 1;
visibility: visible;
}
}
.dropdown {
transform: translateY(0);
transition: all 0.5s ease;
opacity: 1;
visibility: visible;
}
}
}
input[type='checkbox'][class^='media-checkbox'],
input[type='radio'][class^='media-checkbox'],
.form-check-input {
position: absolute;
width: 100%;
height: 100%;
z-index: 1;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
opacity: 0;
}
label {
border: 1px solid #fff;
padding: 10px;
display: block;
position: relative;
margin: 0;
cursor: pointer;
background-color: #f9f9f6;
border-radius: 10px;
img {
width: 100%;
object-fit: contain;
}
}
label:before {
background-color: #525252;
color: $white;
@include pos;
display: block;
border-radius: 4px;
border: 1px solid #c1c1c1;
top: 10px;
left: 10px;
@include pseudowh($width: 18px, $height: 18px);
text-align: center;
line-height: 16px;
transition-duration: 0.4s;
transform: translateY(-10px);
transition: all 0.5s ease;
opacity: 0;
visibility: hidden;
z-index: 1;
}
:checked + label {
border-color: var(--theme-color);
}
:checked + label:before {
content: '';
background-color: var(--theme-color);
border-color: var(--theme-color);
transform: translateY(0);
opacity: 1;
visibility: visible;
z-index: 1;
}
}
.media-modal {
h2 {
font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
}
.media-library-sec {
.dropdown {
.dropdown-menu {
right: 0 !important;
left: unset !important;
min-width: max-content;
}
}
}
.modal-header {
border-bottom: 1px solid #eee !important;
}
.nav-tabs {
border-color: $border-color;
.nav-link {
border-color: transparent;
cursor: pointer;
}
.nav-link.active {
background-color: #f2f2f2;
}
}
.select-top-panel {
margin-top: 20px;
padding-bottom: 20px;
display: flex;
flex-wrap: wrap;
gap: calc(9px + (25 - 9) * ((100vw - 320px) / (1920 - 320)));
justify-content: space-between;
> div {
width: 50%;
@include mq-max(md) {
width: 49%;
}
@include mq-max(sm) {
width: 100%;
}
}
select {
width: 25%;
@include mq-max(md) {
width: 48%;
}
@include mq-max(sm) {
width: 100%;
}
}
}
.content-section {
padding: calc(15px + (35 - 15) * ((100vw - 320px) / (1920 - 320))) 0;
min-height: 45vh;
[type='file'] {
height: 0;
overflow: hidden;
width: 0;
}
.loader-wrapper {
position: absolute !important;
left: 0;
top: 0;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
background-color: $white;
}
.card {
padding: 8px;
border: 1px solid $border-color;
border-radius: 3px;
.option-btn {
position: absolute;
right: 10px;
top: 10px;
background-color: #f5f5f5;
padding: 3px 0;
[dir='rtl'] & {
right: unset;
left: 10px;
}
img {
width: 16px;
}
}
.card-img-top {
height: 180px;
}
.card-body {
padding: 5px 0 0 0;
.card-text {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin-bottom: 0;
font-size: 13px;
}
span {
font-size: 12px;
}
}
}
&.drop-files-sec {
text-align: center;
@include flex_common;
flex-wrap: wrap;
padding: 0;
border: 1px dashed var(--theme-color);
border-radius: calc(9px + (25 - 9) * ((100vw - 320px) / (1920 - 320)));
margin: calc(16px + (25 - 16) * ((100vw - 320px) / (1920 - 320))) 5px;
position: relative;
margin-bottom: calc(72px + (102 - 72) * ((100vw - 320px) / (1920 - 320)));
.modal-footer {
position: absolute;
width: calc(100% + 44px);
bottom: calc(-89px + (-118 - -89) * ((100vw - 320px) / (1920 - 320)));
left: -22px;
display: flex;
.btn {
background-color: var(--theme-color) !important;
}
}
> div {
width: 100%;
}
i {
display: block;
width: 100%;
}
svg {
height: 90px;
width: 60px;
margin: 0 auto;
display: block;
}
h2 {
font-size: calc(17px + (25 - 17) * ((100vw - 320px) / (1920 - 320)));
span {
display: block;
margin-top: calc(4px + (14 - 4) * ((100vw - 320px) / (1920 - 320)));
font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
font-weight: 400;
opacity: 0.55;
}
label {
display: block;
margin-top: -15px;
font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
color: var(--theme-color);
}
}
.browse-file {
position: relative;
input {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
opacity: 0;
}
}
i {
font-size: calc(31px + (45 - 31) * ((100vw - 320px) / (1920 - 320)));
}
}
&.select-file-section {
height: 440px;
overflow-y: auto;
overflow-x: hidden;
position: relative;
}
}
.modal-footer {
justify-content: space-between;
display: flex;
border-top: 1px solid #eee !important;
.media-bottom-btn {
display: flex;
justify-content: space-between;
width: 100%;
}
.left-part {
display: flex;
align-items: center;
text-align: left;
.file-detail {
h6 {
margin-bottom: 6px;
}
}
}
}
.modal-body {
.tab-content {
.tab-pane {
.select-top-panel {
> div {
.form-control {
padding: calc(5px + (6 - 5) * ((100vw - 320px) / (1920 - 320))) calc(9px + (12 - 9) * ((100vw - 320px) / (1920 - 320)));
font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}
}
.form-select {
padding-top: calc(5px + (6 - 5) * ((100vw - 320px) / (1920 - 320)));
padding-bottom: calc(5px + (6 - 5) * ((100vw - 320px) / (1920 - 320)));
font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
padding-left: calc(9px + (12 - 9) * ((100vw - 320px) / (1920 - 320)));
}
}
}
}
}
}
.overflow-section {
height: 100%;
position: absolute;
left: 0;
width: 100%;
top: 0;
overflow-y: auto;
overflow-x: hidden;
border-radius: 25px;
background-color: $white;
&::-webkit-scrollbar {
width: 6px;
}
&::-webkit-scrollbar-track {
background-color: #dfdfdf;
}
&::-webkit-scrollbar-thumb {
background-color: #1fa687;
border-radius: 10px;
}
}
.image-selection-list {
background-color: $white;
padding: 15px;
border-radius: 30px;
.img-box {
height: calc(110px + (139 - 110) * ((100vw - 320px) / (1920 - 320)));
position: relative;
display: flex;
align-items: center;
padding: 10px;
border: 1px solid #eee;
border-radius: 7px;
img {
width: 90%;
margin: 0 auto;
height: 90%;
object-fit: contain;
}
.remove-img {
position: absolute;
right: 2px;
top: 2px;
cursor: pointer;
svg {
height: 25px !important;
width: 20px !important;
}
}
}
}
.select-top-panel {
margin-top: 0;
padding-bottom: 20px;
display: flex;
gap: calc(9px + (25 - 9) * ((100vw - 320px) / (1920 - 320)));
justify-content: space-between;
flex-wrap: wrap;
> div {
width: 50%;
@include mq-max(md) {
width: 49%;
}
@include mq-max(sm) {
width: 100%;
}
}
select {
width: 25%;
@include mq-max(md) {
width: 48%;
}
@include mq-max(sm) {
width: 100%;
}
}
}
.select-file-loader {
position: relative;
.loader-wrapper {
position: absolute !important;
left: 0;
top: 0;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
background-color: $white;
}
}

View File

@@ -0,0 +1,441 @@
/**=====================
Order tracking Page scss
==========================**/
.progtrckr {
margin: 15px 0 0;
padding: 0;
display: flex;
align-items: flex-start;
@include mq-max(sm) {
display: inline;
margin: 30px 0;
overflow: hidden;
}
li {
display: inline-block;
text-align: center;
margin: 10px 0;
position: relative;
@include mq-max(sm) {
margin: 0;
width: 50% !important;
}
h5 {
margin-top: 20px;
text-align: center;
width: 100%;
display: flex;
justify-content: center;
font-weight: 500;
@include mq-max(sm) {
display: block;
text-align: left;
margin-top: 0;
[dir="rtl"] & {
text-align: right;
}
}
}
&:before {
position: relative;
top: -2px;
float: left;
left: 50% !important;
line-height: 1;
transform: translate(-50%, -50%) !important;
@include mq-max(sm) {
position: relative;
top: 10px;
float: left;
left: -2px !important;
line-height: 1;
transform: translate(-50%, -50%) !important;
[dir="rtl"] & {
float: right;
right: -32px !important;
left: unset !important;
}
}
}
&.progtrckr-todo {
color: $content-color;
border-top: 4px solid #959595;
width: 100% !important;
@include mq-max(sm) {
position: relative;
text-align: left;
margin-left: 30px;
align-items: flex-start;
padding-bottom: calc(20px + (40 - 20) * ((100vw - 320px) / (1920 - 320)));
padding-left: 30px;
border-top: unset;
border-left: 4px solid #959595;
[dir="rtl"] & {
border-left: none;
border-right: 4px solid $content-color;
margin-left: 0;
margin-right: 30px;
align-items: flex-end;
padding-left: 0;
padding-right: 30px;
text-align: right;
}
}
&:before {
@include flex_common;
@include pseudowh($width: 30px, $height: 30px);
padding-top: 2px;
content: "";
color: $white;
background: #959595;
line-height: 35px;
border: none;
border-radius: 35px;
font-size: 16px;
@include mq-max(sm) {
position: absolute;
top: 10px;
left: -17px;
line-height: 1;
transform: translateY(-50%);
[dir="rtl"] & {
left: unset;
right: -17px;
}
}
}
h6 {
font-size: 13px;
margin-top: 8px;
}
}
}
}
.progtrckr-done {
color: $title-color;
border-top: 4px solid var(--theme-color);
width: 100% !important;
&:first-of-type {
@include mq-max(sm) {
padding-top: 5px;
}
}
@include mq-max(sm) {
position: relative;
text-align: left;
margin-left: 30px;
align-items: self-start;
padding-bottom: calc(20px + (40 - 20) * ((100vw - 320px) / (1920 - 320)));
border-top: unset;
border-left: 4px solid var(--theme-color);
[dir="rtl"] & {
margin-left: 0;
margin-right: 30px;
text-align: right;
border-left: none;
border-right: 4px solid var(--theme-color);
align-items: flex-end;
}
}
&:before {
@include flex_common;
@include pseudowh($width: 30px, $height: 30px);
padding-top: 2px;
content: "\f00c";
color: $white;
background-color: var(--theme-color);
line-height: 35px;
border: none;
border-radius: 35px;
font-size: 16px;
}
h6 {
font-size: 13px;
margin-top: 8px;
color: $content-color;
}
}
.order-detail-title {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
.right-detail {
display: flex;
align-items: center;
gap: 15px;
width: 40%;
justify-content: flex-end;
select {
height: 100%;
padding: 12px 20px;
border: 1px solid #eee;
background-color: $white;
border-radius: 8px;
font-weight: 500;
font-size: 16px;
width: 40%;
}
.custom-select {
min-width: 170px;
.select2-container {
.select2-selection {
background-color: $white !important;
}
}
}
label {
border-radius: 8px;
padding: 10px 20px;
border: 1px solid #eee;
font-weight: 500;
font-size: 16px;
display: flex;
align-items: center;
gap: 8px;
background-color: $white;
margin-bottom: 0;
}
}
}
.tracking-wrapper {
background-color: $white;
.product-table {
border: none;
tbody {
tr {
td {
text-align: center;
border-color: #ececec;
img {
width: 60px;
}
h6 {
font-size: 16px;
}
&:nth-child(2) {
max-width: 150px;
h6 {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
display: inline-block;
max-width: 100%;
}
}
}
&:last-child {
td {
border-bottom: none;
}
}
}
}
thead {
tr {
th {
text-align: center;
border-color: #ececec;
font-size: 16px;
@media (max-width: 1400px) {
max-width: 150px;
width: 150px;
}
}
}
}
}
}
.customer-detail {
ul {
display: flex;
flex-wrap: wrap;
gap: 15px;
li {
width: 100%;
display: block;
label {
color: #999;
text-transform: capitalize;
margin-bottom: 0;
}
h4 {
font-size: 16px;
line-height: 1.6;
}
}
}
}
.tracking-total {
li {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
font-size: 17px;
margin-bottom: 6px;
&:last-child {
font-weight: 600;
margin-bottom: 0;
padding-top: 15px;
border-top: 1px solid #e8e8e8;
margin-top: 12px;
}
}
}
.accented {
fill: var(--theme-color);
stroke: var(--theme-color);
}
.tracking-panel {
ul {
display: flex;
align-items: center;
width: 100%;
justify-content: space-between;
position: relative;
gap: 15px;
padding-right: 20px;
overflow-y: hidden;
overflow-x: auto;
[dir="rtl"] & {
padding-right: 0;
padding-left: 20px;
}
li {
position: relative;
width: 100%;
background-color: #ffffff;
border-radius: 0;
padding: calc(13px + (17 - 13) * ((100vw - 320px) / (1920 - 320))) 0
calc(13px + (17 - 13) * ((100vw - 320px) / (1920 - 320)))
calc(21px + (31 - 21) * ((100vw - 320px) / (1920 - 320)));
[dir="rtl"] & {
padding: calc(13px + (17 - 13) * ((100vw - 320px) / (1920 - 320)))
calc(21px + (31 - 21) * ((100vw - 320px) / (1920 - 320)))
calc(13px + (17 - 13) * ((100vw - 320px) / (1920 - 320))) 0;
}
&:after {
opacity: 1;
content: " ";
position: absolute;
top: 0;
right: -16px;
width: 0;
height: 0;
border-top: calc(28px + (40 - 28) * ((100vw - 320px) / (1920 - 320))) solid transparent;
border-bottom: calc(28px + (40 - 28) * ((100vw - 320px) / (1920 - 320))) solid transparent;
border-left: 17px solid #ffffff;
transition: border-color 0.2s ease;
[dir="rtl"] & {
right: unset;
left: -16px;
border-right: 17px solid #ffffff;
border-left: unset;
}
}
&:before {
content: " ";
position: absolute;
top: 0;
left: 0px;
width: 0;
height: 0;
border-top: calc(28px + (40 - 28) * ((100vw - 320px) / (1920 - 320))) solid transparent;
border-bottom: calc(28px + (40 - 28) * ((100vw - 320px) / (1920 - 320))) solid transparent;
border-left: 17px solid #f9f9f6;
transition: border-color 0.2s ease;
[dir="rtl"] & {
right: 0;
left: unset;
border-right: 17px solid #f9f9f6;
border-left: unset;
}
}
&.active {
background-color: #e9f6f3;
&:after {
border-left: 17px solid #e9f6f3;
[dir="rtl"] & {
border-right: 17px solid #e9f6f3;
border-left: unset;
}
}
}
&.cancelled-box {
background-color: #fbe9eb;
&:after {
border-left: 17px solid #fbe9eb;
[dir="rtl"] & {
border-right: 17px solid #fbe9eb;
border-left: unset;
}
}
}
&:first-child {
border-radius: 6px 0 0 6px;
[dir="rtl"] & {
border-radius: 0 6px 6px 0;
}
&::before {
display: none;
}
}
}
}
.panel-content {
display: flex;
align-items: center;
gap: 16px;
margin-top: 0;
.icon {
width: calc(30px + (45 - 30) * ((100vw - 320px) / (1920 - 320)));
height: calc(30px + (45 - 30) * ((100vw - 320px) / (1920 - 320)));
}
.status {
margin-top: 0;
font-size: 17px;
display: flex;
flex-direction: column;
font-weight: 600;
white-space: nowrap;
}
}
}
.sticky-top-sec {
position: sticky;
top: 110px;
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,189 @@
/**=====================
Shipping CSS Start
==========================**/
.no-data-added {
text-align: center;
padding: 60px 0;
img {
width: 24%;
margin-bottom: 20px;
@media (max-width: 991px) {
width: 42%;
}
@media (max-width: 576px) {
width: 50%;
}
@media (max-width: 420px) {
width: 80%;
}
}
h4 {
font-weight: 500;
color: #9f9b9b;
font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
}
&.shipping-no-data {
padding: 110px 0;
}
&.category-no-data {
img {
width: 64%;
}
}
&.no-shipping {
img {
width: 32%;
@media (max-width: 991px) {
width: 42%;
}
@media (max-width: 576px) {
width: 50%;
}
@media (max-width: 420px) {
width: 80%;
}
}
}
}
.shipping-content {
margin-bottom: -30px;
}
.shipping-box {
padding: 0;
border-radius: 15px;
margin-bottom: 30px;
}
.btn-option {
display: flex;
align-items: center;
gap: 15px;
}
.shipping-accordion-custom {
margin-bottom: 14px;
border: 1px solid #eee;
border-radius: 12px;
.rule-edit-form {
background-color: transparent;
margin: 0;
}
.rule-dropdown {
border-radius: 10px;
overflow: hidden;
text-transform: capitalize;
box-shadow: none;
border: none;
background-color: #f9f9f6;
border-radius: 0;
color: #4a5568;
font-weight: 400;
font-size: 16px;
padding: 12px 18px;
line-height: 1;
border-radius: 10px 10px 0 0;
cursor: pointer;
}
}
.shipping-accordion {
margin-top: 0;
display: block;
.accordion-item {
margin-bottom: 14px;
border: 1px solid #eee;
border-radius: 12px;
.accordion-button {
border-radius: 10px;
overflow: hidden;
text-transform: capitalize;
box-shadow: none;
border: none;
background-color: #f9f9f6;
border-radius: 0;
z-index: 0;
color: #222;
font-weight: 600;
font-size: 18px;
padding: 12px 18px;
&:after {
width: 16px;
height: 16px;
background-size: contain;
filter: grayscale(1);
}
}
.accordion-body {
border-top: none;
padding: 20px;
}
}
}
.country-list {
display: flex;
flex-wrap: wrap;
gap: 15px;
li {
padding: 34px 20px;
border: 1px solid #eee;
border-radius: 6px;
display: flex;
font-size: 16px;
text-transform: capitalize;
align-items: center;
gap: 10px;
line-height: 1;
width: calc(25% - 12px);
text-align: center;
justify-content: space-between;
@media (max-width: 767px) {
width: calc(50% - 12px);
}
@media (max-width: 480px) {
width: 100%;
}
h5 {
width: 100%;
text-align: left;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
[dir="rtl"] & {
text-align: right;
}
}
a {
color: #585858;
display: flex;
align-items: center;
gap: 10px;
}
}
}

View File

@@ -0,0 +1,272 @@
/**=====================
Theme option CSS start
==========================**/
.radio-type-sec {
display: flex;
flex-wrap: wrap;
gap: 20px;
li {
width: 100%;
}
input[type="radio"] {
opacity: 0;
width: 100%;
height: 100%;
position: absolute;
margin: 0;
z-index: 1;
border-radius: 0;
left: 0;
top: 0;
}
label {
z-index: 1;
&:before {
transform: translateY(0);
opacity: 1;
visibility: visible;
border-radius: 100%;
}
}
.selection-box {
overflow: hidden;
padding-left: 30px;
position: relative;
border: 1px solid #ddd;
padding: 15px 15px 15px 45px;
border-radius: 15px;
&:hover {
label {
img {
width: 100%;
object-fit: contain;
&.real-img {
display: inline-block;
transition: all 0.5s ease;
}
&.dummy-img {
display: none;
transition: all 0.5s ease;
}
}
}
}
}
label {
position: relative;
margin: 0;
cursor: pointer;
width: 100%;
img {
width: 100%;
object-fit: contain;
&.real-img {
display: none;
transition: all 0.5s ease;
}
}
}
label:before {
color: $white;
@include pos;
display: block;
border-radius: 100%;
border: 3px solid #c1c1c1;
left: -30px;
@include pseudowh($width: 18px, $height: 18px);
text-align: center;
line-height: 16px;
z-index: 1;
top: 50%;
transform: translateY(-50%);
}
:checked {
+ label {
border-color: var(--theme-color);
&:after {
content: "";
position: absolute;
width: 6px;
height: 6px;
border-radius: 100%;
background-color: #fff;
top: 50%;
transform: translateY(-50%);
left: -24px;
z-index: 1;
}
&:before {
content: "";
border-radius: 100%;
background-color: var(--theme-color);
border-color: var(--theme-color);
opacity: 1;
visibility: visible;
z-index: 1;
}
}
}
&.selection-layout {
.selection-box {
padding: 0;
border: none;
border-radius: 0;
}
label {
img {
border: 1px solid #ddd;
border-radius: 7px;
}
h4 {
text-transform: capitalize;
font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
font-weight: 500;
}
&:before {
opacity: 0;
}
}
:checked {
+ label {
img {
border-color: var(--theme-color);
}
h4 {
color: #1fa687;
}
&:before {
top: 10px;
left: 10px;
transform: none;
opacity: 1;
}
&:after {
top: 16px;
transform: none;
left: 16px;
}
}
}
}
}
.color-box {
display: flex;
align-items: center;
gap: 10px;
padding: 10px 12px;
border: 1px solid #ededed;
width: max-content;
border-radius: 5px;
.form-control {
border: none;
padding: 0;
width: 25px;
height: 25px;
}
h6 {
font-weight: 500;
font-size: 14px;
}
}
.layout-selection-sec {
.theme-card {
border: 1px solid #ddd;
border-radius: 15px;
.library-box {
overflow: hidden;
position: relative;
border-radius: 15px 15px 0 0;
background: #f0f0f0;
padding: calc(18px + (25 - 18) * ((100vw - 320px) / (1920 - 320)))
calc(18px + (25 - 18) * ((100vw - 320px) / (1920 - 320))) 0;
height: 270px;
box-shadow: inset 0px 0 8px rgba(219, 219, 219, 0.66);
@media (max-width: 1500px) {
height: calc(170px + (200 - 170) * ((100vw - 320px) / (1920 - 320)));
}
a {
display: block;
height: 100%;
img {
height: 100%;
object-fit: cover;
width: 100%;
object-position: top;
}
}
.details-box {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
display: flex;
border-radius: 15px 15px 0 0;
align-items: center;
justify-content: center;
background-color: rgba($white, 0.9);
font-size: 20px;
text-transform: capitalize;
color: $black;
transform: scale(0.8);
transition: all 0.5s ease;
opacity: 0;
visibility: hidden;
}
}
.content-sec {
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 20px;
text-transform: capitalize;
color: #222;
z-index: 1;
position: relative;
box-shadow: 0 -7px 8px rgba(48, 48, 48, 0.05);
h5 {
margin-top: 0 !important;
margin-bottom: 0;
font-size: calc(15px + (16 - 15) * ((100vw - 320px) / (1920 - 320)));
font-weight: 500;
}
a {
background-color: $white;
color: var(--theme-color);
padding: 5px 15px;
border-radius: 5px;
border: 1px solid var(--theme-color);
&:hover {
color: $white;
background-color: var(--theme-color);
}
}
}
&:hover {
.library-box {
.details-box {
transform: scale(1);
opacity: 1;
visibility: visible;
}
}
}
&.active {
border-color: var(--theme-color);
.content-sec {
a {
color: $white;
background-color: var(--theme-color);
}
}
}
}
}

View File

@@ -0,0 +1,72 @@
/**=====================
Wallet CSS start
==========================**/
.wallet-sec {
display: flex;
gap: 15px;
align-items: center;
width: 100%;
justify-content: space-between;
@media (max-width: 1511px) {
display: grid;
grid-template-columns: auto 1fr;
}
@media (max-width: 500px) {
grid-template-columns: 1fr;
}
input {
width: 40%;
@media (max-width: 1511px) {
width: 100%;
}
}
.wallet-amount {
width: 25%;
display: flex;
align-items: center;
gap: 15px;
@media (max-width: 1511px) {
width: auto;
}
h5 {
margin-top: 5px;
}
h2 {
font-size: 22px;
font-weight: 600;
}
}
.wallet-icon {
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
i {
font-size: 40px;
color: var(--theme-color);
}
svg {
width: 40px;
height: 40px;
fill: var(--theme-color);
}
}
.btn-sec {
display: flex;
align-items: center;
gap: 15px;
}
}
.wallet-search {
display: flex;
align-items: center;
gap: 15px;
.custom-select {
width: 75%;
}
.btn-animation {
width: calc(25% - 15px);
}
}

View File

@@ -0,0 +1,137 @@
/**=====================
Ratio CSS Start
==========================**/
.ratio_40 {
.bg-size {
&:before {
padding-top: 40%;
content: "";
display: block;
}
}
}
.ratio_45 {
.bg-size {
&:before {
padding-top: 45%;
content: "";
display: block;
}
}
}
.ratio2_1 {
.bg-size {
&:before {
padding-top: 50%;
content: "";
display: block;
}
}
}
.ratio_55 {
.bg-size {
&:before {
padding-top: 55%;
content: "";
display: block;
}
}
}
.ratio_59 {
.bg-size {
&:before {
padding-top: 59%;
content: "";
display: block;
}
}
}
.ratio2_3 {
.bg-size {
&:before {
padding-top: 60%;
content: "";
display: block;
}
}
}
.ratio3_2 {
.bg-size {
&:before {
padding-top: 66.66%;
content: "";
display: block;
}
}
}
.ratio_90 {
.bg-size {
&:before {
padding-top: 93%;
content: "";
display: block;
}
}
}
.ratio_landscape {
.bg-size {
&:before {
padding-top: 75%;
content: "";
display: block;
}
}
}
.ratio_square {
.bg-size {
&:before {
padding-top: 100%;
content: "";
display: block;
}
}
}
.ratio_asos {
.bg-size {
&:before {
padding-top: 127.7777778%;
content: "";
display: block;
}
}
}
.ratio_portrait {
.bg-size {
&:before {
padding-top: 150%;
content: "";
display: block;
}
}
}
.ratio1_2 {
.bg-size {
&:before {
padding-top: 200%;
content: "";
display: block;
}
}
}
.b_size_content {
background-size: contain !important;
background-repeat: no-repeat;
}

View File

@@ -0,0 +1,238 @@
.elevation-0 {
z-index: 0;
transition: box-shadow 2s;
}
.elevation--border {
border: 1px solid rgba(0, 0, 0, 0.12);
}
.elevation-24 {
box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
z-index: 24;
transition: box-shadow 2s ease-out;
}
.elevation-23 {
box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);
z-index: 23;
transition: box-shadow 2s ease-out;
}
.elevation-22 {
box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);
z-index: 22;
transition: box-shadow 2s ease-out;
}
.elevation-21 {
box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);
z-index: 21;
transition: box-shadow 2s ease-out;
}
.elevation-20 {
box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);
z-index: 20;
transition: box-shadow 2s ease-out;
}
.elevation-19 {
box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);
z-index: 19;
transition: box-shadow 2s ease-out;
}
.elevation-18 {
box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);
z-index: 18;
transition: box-shadow 2s ease-out;
}
.elevation-17 {
box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);
z-index: 17;
transition: box-shadow 2s ease-out;
}
.elevation-16 {
box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
z-index: 16;
transition: box-shadow 2s ease-out;
}
.elevation-15 {
box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);
z-index: 15;
transition: box-shadow 2s ease-out;
}
.elevation-14 {
box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);
z-index: 14;
transition: box-shadow 2s ease-out;
}
.elevation-13 {
box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);
z-index: 13;
transition: box-shadow 2s ease-out;
}
.elevation-12 {
box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
z-index: 12;
transition: box-shadow 2s ease-out;
}
.elevation-11 {
box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);
z-index: 11;
transition: box-shadow 2s ease-out;
}
.elevation-10 {
box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);
z-index: 10;
transition: box-shadow 2s ease-out;
}
.elevation-9 {
box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);
z-index: 9;
transition: box-shadow 2s ease-out;
}
.elevation-8 {
box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
z-index: 8;
transition: box-shadow 2s ease-out;
}
.elevation-7 {
box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
z-index: 7;
transition: box-shadow 2s ease-out;
}
.elevation-6 {
box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
z-index: 6;
transition: box-shadow 2s ease-out;
}
.elevation-5 {
box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);
z-index: 5;
transition: box-shadow 2s ease-out;
}
.elevation-4 {
box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
z-index: 4;
transition: box-shadow 2s ease-out;
}
.elevation-3 {
box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
z-index: 3;
transition: box-shadow 2s ease-out;
}
.elevation-2 {
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
z-index: 2;
transition: box-shadow 2s ease-out;
}
.elevation-1 {
box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
z-index: 1;
transition: box-shadow 2s ease-out;
}
.skeleton-box {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 250px;
padding: calc(8px + (14 - 8) * ((100vw - 320px) / (1920 - 320)));
z-index: 1;
background-color: #f9f9f6;
}
.skeleton *:empty {
background: #f6f7f8;
background-position: -500px 0;
animation: skeletonShine 1s linear 0s infinite normal forwards;
border-radius: 5px;
background-image: linear-gradient(135deg, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
background-repeat: no-repeat;
background-size: 1000px 100%;
width: 100%;
}
.skeleton__section+.skeleton__section {
margin-top: 16px;
}
.skeleton-section {
width: 100%;
}
.skeleton__section--actions {
display: flex;
flex-direction: row;
gap: 8px;
margin-bottom: 16px;
}
.skeleton__section--card {
display: flex;
flex-direction: row;
margin-bottom: 24px;
}
.skeleton__header {
margin-bottom: 6px;
height: 32px;
width: 200px;
max-width: 35%;
}
.skeleton__header--long {
width: 300px;
max-width: 85%;
}
.skeleton__p {
height: 16px;
width: 100%;
margin-bottom: 8px;
}
.skeleton__p:last-child {
width: 45%;
}
.skeleton__p--short {
max-width: 120px;
}
.skeleton__img {
height: 110px;
width: 64px;
border-radius: 8px;
}
.skeleton__tree .skeleton__p {
width: 100%;
max-width: none;
}
@keyframes skeletonShine {
to {
background-position: 500px 0;
}
}

View File

@@ -0,0 +1,73 @@
/*! -----------------------------------------------------------------------------------
Template Name: Fastkart Admin
Template URI: http://admin.pixelstrap.com/Fastkart/theme
Description: This is Admin theme
Author: Pixelstrap
Author URI: https://themeforest.net/user/pixelstrap
----------------------------------------------------------------------------------- !*/
/* *** utils *** */
@import 'utils/variables';
@import 'utils/breakpoints';
@import 'utils/mixins';
:root {
--theme-color: #0da487;
}
/* *** Skeleton Loader *** */
@import 'skeletonLoader';
/* *** base *** */
@import 'base/reset';
@import 'base/typography';
/* *** components *** */
@import 'components/according';
@import 'components/alert';
@import 'components/badge';
@import 'components/breadcrumb';
@import 'components/buttons';
@import 'components/card';
@import 'components/country-flag';
@import 'components/dropdown';
@import 'components/error-box';
@import 'components/forms';
@import 'components/loader';
@import 'components/modal';
@import 'components/pagination';
@import 'components/radio';
@import 'components/success-box';
@import 'components/switch';
@import 'components/tab';
@import 'components/table';
@import 'components/tree';
@import 'components/typeahead-search';
/* *** layout *** */
@import 'layout/footer';
@import 'layout/grid';
@import 'layout/header';
@import 'layout/navs';
@import 'layout/product';
@import 'layout/rtl';
@import 'layout/search';
@import 'layout/select2';
@import 'layout/sidebar';
/* *** pages *** */
@import 'pages/checkout';
@import 'pages/dashboard';
@import 'pages/errorpage';
@import 'pages/login';
@import 'pages/media';
@import 'pages/order-tracking';
@import 'pages/pos';
@import 'pages/shipping';
@import 'pages/theme-option';
@import 'pages/wallet';
/* *** themes *** */
@import 'themes/dark';
@import 'themes/dark-sidebar';
@import 'themes/update';
@import 'themes/responsive';

View File

@@ -0,0 +1,55 @@
/**=====================
theme layout CSS Start
==========================**/
.page-wrapper.compact-wrapper,
.page-wrapper.horizontal-wrapper {
.page-body-wrapper {
.sidebar-wrapper {
&[sidebar-layout="border-sidebar"] {
.sidebar-main {
.sidebar-links {
> li {
.sidebar-link {
border-bottom: 1px solid rgba($primary-color, 0.1);
transition: all 0.3s ease;
}
}
}
}
}
&[sidebar-layout="iconcolor-sidebar"] {
.sidebar-main {
.sidebar-links {
> li {
$colors: $success-color, $secondary-color, $primary-color, $danger-color, $info-color, $warning-color,
$light-color;
$repeat: 60;
@for $i from 1 through $repeat {
&:nth-child(#{length($colors)}n + #{$i}) {
svg {
color: lighten(nth($colors, random(length($colors))), 15%) !important;
}
&:hover {
a {
svg {
stroke: lighten(nth($colors, random(length($colors))), 15%) !important;
}
&:hover {
background-color: rgba(nth($colors, random(length($colors))), 0.15) !important;
}
}
}
}
}
}
}
}
}
}
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,337 @@
/**=====================
Update CSS Start
==========================**/
@import "../utils/variables";
.jsgrid-filter-row {
select,
input {
padding: 6px 10px;
border: 1px solid $horizontal-border-color;
background: $white;
}
}
.popover {
background-color: $white;
border: none;
box-shadow: 0 0 20px rgba($primary-color, 0.1);
.popover-header {
background-color: $theme-medium-color;
color: $primary-color;
border-bottom: none;
}
.popover-body {
color: rgba(43, 43, 43, 0.7);
}
}
.tooltip {
&.bs-tooltip-top {
.tooltip-arrow {
&:before {
border-top-color: $theme-medium-color;
}
}
}
&.bs-tooltip-bottom {
.tooltip-arrow {
&:before {
border-bottom-color: $theme-medium-color;
border-top-color: transparent;
}
}
}
&.bs-tooltip-start {
.tooltip-arrow {
&:before {
border-left-color: $theme-medium-color;
border-top-color: transparent;
}
}
}
&.bs-tooltip-end {
.tooltip-arrow {
&:before {
border-right-color: $theme-medium-color;
border-top-color: transparent;
}
}
}
.tooltip-inner {
background-color: $theme-medium-color;
color: $primary-color;
}
.tooltip-arrow {
&:before {
border-top-color: $theme-medium-color;
}
}
}
.dropdown-basic {
.dropdown {
.dropdown-content {
a {
padding: 6px 16px;
color: $dark-editor-document;
opacity: 0.6;
font-size: 13px;
border-top: 1px solid $light-semi-gray;
background: $white;
&:hover {
background-color: $white;
}
}
.dropdown-header {
padding: 8px 16px;
font-weight: 400;
color: $dark-color;
font-size: 13px;
}
}
}
.dropup {
.dropup-content {
top: auto;
}
}
}
.default-according {
.card {
.card-header {
padding: 0;
border: none;
border-radius: 0;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
&.bg-primary,
&.bg-secondary {
.btn {
border-color: $transparent-color;
}
}
i {
position: initial;
font-size: 20px;
display: inline-block;
vertical-align: text-bottom;
margin-right: 5px;
}
h5 {
margin-top: 0;
}
.btn-link {
padding: 12px 20px;
width: 100%;
text-align: left;
letter-spacing: 0.7px;
font-family: Roboto;
border: 1px solid $light-semi-gray;
border-radius: 0;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
}
.card-body {
padding: 15px 20px;
line-height: 22px;
font-size: 13px;
border-color: $light-semi-gray;
border-radius: 0;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
color: $dark-color;
}
}
}
.nav-tabs {
border-bottom-color: $light-semi-gray;
.nav-bottom {
.nav-item {
.nav-link {
&.active {
border-color: $light-semi-gray;
}
}
}
}
}
.nav-tabs {
.nav-item {
&.show {
.nav-link {
font-weight: 500;
}
}
}
.nav-link {
color: $dark-color;
&.active {
font-weight: 500;
}
}
&.nav-bottom {
.nav-item {
.nav-link {
&.active {
border-color: $light-gray $light-gray #fff;
}
}
}
}
}
.dropdown-menu {
box-shadow: 0 0 20px rgba(89, 102, 122, 0.1);
border: none;
padding: 0;
.dropdown-item {
color: #2b2b2b;
opacity: 0.6;
font-size: 13px;
padding: 6px 12px;
border-top: 1px solid $light-semi-gray;
background: $white;
&:hover {
background-color: $white;
}
}
.dropdown-divider {
margin: 0;
border-top: 1px solid #cccccc;
}
}
.border-tab {
.nav-tabs {
.nav-item {
.nav-link {
&.active,
&.show,
&:focus {
border-bottom: 2px solid $primary-color;
}
}
}
}
}
.tabbed-card {
.nav-tabs {
.nav-item {
.nav-link {
top: 17px;
}
}
}
}
.timeliny {
.timeliny-dot {
&::before {
font-size: $btn-lg-font-size;
}
}
}
.form-builder-header-1,
.form-builder-2-header {
background-color: #f7f6ff;
.nav-primary {
.nav-link {
color: $dark-color;
font-weight: 400;
&.active {
color: $white;
}
}
}
h6 {
margin-bottom: 0;
font-weight: 400;
line-height: 36px;
}
}
.component {
.input-group {
.btn {
line-height: 32px;
text-transform: capitalize;
}
}
}
.form-builder {
.drag-box {
fieldset {
margin-top: 0;
}
}
}
.login-card {
.login-main {
.theme-form {
label {
font-size: $body-font-size;
}
.show-hide {
top: 50%;
}
}
}
}
.faq-accordion {
.card {
.btn-link {
svg {
margin-left: 20px;
}
}
}
}
.job-filter {
.faq-form {
.form-control {
font-size: 14px;
}
.search-icon {
width: 16px;
height: 16px;
}
}
}

View File

@@ -0,0 +1,48 @@
/**=====================
breakpoint mixins css start
==========================**/
// min width
@mixin mq-min($breakpoint) {
@if map-has-key($min-breakpoints, $breakpoint) {
$breakpoint-value: map-get($min-breakpoints, $breakpoint);
@media (min-width: $breakpoint-value) {
@content;
}
} @else {
@warn 'Invalid breakpoint: #{$breakpoint}.';
}
}
// max width
@mixin mq-max($breakpoint) {
@if map-has-key($max-breakpoints, $breakpoint) {
$breakpoint-value: map-get($max-breakpoints, $breakpoint);
@media (max-width: ($breakpoint-value)) {
@content;
}
} @else {
@warn 'Invalid breakpoint: #{$breakpoint}.';
}
}
// min and max
@mixin mq-between($lower, $upper) {
@if map-has-key($max-breakpoints, $lower) and map-has-key($min-breakpoints, $upper) {
$lower-breakpoint: map-get($max-breakpoints, $lower);
$upper-breakpoint: map-get($min-breakpoints, $upper);
@media (min-width: $lower-breakpoint) and (max-width: ($upper-breakpoint - 1)) {
@content;
}
} @else {
@if (map-has-key($max-breakpoints, $lower) ==false) {
@warn 'Your lower breakpoint was invalid: #{$lower}.';
}
@if (map-has-key($min-breakpoints, $upper) ==false) {
@warn 'Your upper breakpoint was invalid: #{$upper}.';
}
}
}

View File

@@ -0,0 +1,67 @@
/**=====================
Common scss
==========================**/
/* ======= Display Flex Css Start ======= */
@mixin flex_common($dis: flex, $align: center, $justify: center) {
display: $dis;
align-items: $align;
justify-content: $justify;
}
/* ======= Display Flex Css End ======= */
/* ======= Gap Flex Css Start ======= */
@mixin flex_wrap($dis: flex, $wrap: wrap, $gap: 15px) {
display: $dis;
flex-wrap: $wrap;
gap: $gap;
}
/* ======= Gap Flex Css End ======= */
/*======= position css starts ======= */
@mixin pos($pos: absolute, $content: "") {
content: $content;
position: $pos;
}
@mixin pseudowh($width: 100%, $height: 100%) {
width: $width;
height: $height;
}
@mixin center($position) {
@if $position== "vertical" {
top: 50%;
transform: translateY(-50%);
} @else if $position== "horizontal" {
left: 50%;
transform: translateX(-50%);
} @else if $position== "both" {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
}
/*======= position css ends ======= */
/*======= font awesome css start ======= */
@mixin font($weight: 900, $family: $fontawesome) {
font-family: $family;
font-weight: $weight;
}
/*======= font awesome css ends ======= */
/*======= align css starts ======= */
@mixin rtl($property, $ltr-value, $rtl-value) {
#{$property}: $ltr-value;
[dir="rtl"] & {
#{$property}: $rtl-value;
}
}
// @include rtl(float, left, right);
/*======= align css ends ======= */

View File

@@ -0,0 +1,358 @@
:root {
--theme-color: #0da487;
// ck editor variables
--ck-color-base-active: var(--theme-color) !important;
--ck-color-base-active-focus: var(--theme-color) !important;
--ck-color-button-on-color: var(--theme-color) !important;
--ck-color-upload-bar-background: var(--theme-color) !important;
--ck-color-link-default: var(--theme-color) !important;
--ck-color-button-on-hover-background: rgba(13, 164, 134, 0.1) !important;
--ck-color-button-on-active-background: rgba(13, 164, 134, 0.1) !important;
--ck-color-button-on-background: rgba(13, 164, 134, 0.1) !important;
--ck-color-focus-outer-shadow: rgba(13, 164, 134, 0.1) !important;
--ck-color-focus-border-coordinates: 168, 85%, 35% !important;
--ck-color-table-focused-cell-background: rgb(13 164 135 / 10%) !important;
}
// General variables
$theme-font-color: #222222;
$theme-body-font-color: #4a5568;
$theme-body-sub-title-color: rgba($theme-body-font-color, 0.7);
$body-color: #fbfeff;
// Theme colors variables
$box-shadow: #dedede;
$star-color: #ef8f3b;
$grey-3: #333333;
$grey-13: #9a9a9a;
$upcoming-color: #3ccbf0;
$past-color: #198754;
$cancel-color: #6c757d;
$x-color: rgba(43, 43, 43, 0.71);
$grey-9: #999999;
$inner-bg: #f9f9f6;
$grey-darker: #222222;
$bg-color: #fafafb;
$primary-color: #0da487;
$secondary-color: #ef3f3e;
$success-color: #9e65c2;
$info-color: #a927f9;
$warning-color: #747dc6;
$danger-color: #6670bd;
$light-color: #f4f4f4;
$light-gray: #ecf3fa;
$input-bg-color: #f8f8f8;
$btn-hover-color: #144eee;
$light-semi-gray: #efefef;
$light-shade-silver: #f9f9f9;
$light-silver: #f1f1f1;
$dark-light: $theme-font-color;
$dark-gray: #898989;
$dark-color: #2c323f;
$gray-60: #cccccc;
$card-body-color: #f9f9fa;
$transparent-color: transparent;
$auth-bg-color: #fafafa;
$light: #fdfeff;
$semi-dark: #59667a;
$light-text: #999999;
$light-background: #d7e2e9;
$light-font: #1b3155;
$light-semi-font: $semi-dark;
$light-chartist-grid-color: #f6f9fd;
$pitch-color: #fe8a7d;
$color-scarpa: #4c5667;
$color-fiord: #455a64;
$black: #000;
$black1: #232323;
$white: #fff;
$theme-medium-color: #eae8ff;
$light-blue: #eff2f7;
$font-light: #7e7e7e;
$gray: #c7c7c5;
$gray-light: #ddd;
$silver-light: #efefee;
$light-yellow: #ff9f40;
$gray-dark: #555;
$black1: #212529;
$light-purple: #e3e0ff;
$mainly-blue: #f8f9fe;
$suva-grey: #e8ebf2;
$v-light-silver: #eeeeee;
$purple: #7468f0;
$yellow: #ff9f44;
$light-green: #28c870;
$green: #008000;
$lavender: #e8eaf6;
$white-ice: #ebf7fc;
$skin-tutu: #fcebeb;
$pattens-blue: #dee2e6;
$title-color: #222222;
$content-color: #4a5568;
$rating-color: #ffb321;
$border-color: #ececec;
// gradient colors
$gradient-primary: linear-gradient(26deg, var(--theme-color) 0%, #a26cf8 100%);
//social colors
$fb: #50598e;
$twitter: #6fa2d8;
$google-plus: #c64e40;
$linkedin: #0077b5;
//error input color start
$light-body-bg-color: #fafdff;
//fonts
$public-sans: "Public Sans", sans-serif;
$font-rubik: Rubik;
$font-serif: sans-serif;
$font-themify: themify;
$font-awesome: FontAwesome;
$font-ICO: IcoFont;
// dark layout variables
$dark-body-background: #0b141d;
$dark-card-background: #1c2128;
$dark-card-inbox: #323846;
$dark-small-font-color: #98a6ad;
$dark-all-font-color: rgba(255, 255, 255, 0.6);
$light-all-font-color: rgba(255, 255, 255, 0.2);
$sidebar-submenu-font-color: rgba(255, 255, 255, 0.6);
$dark-border-color: $dark-body-background;
$dark-card-border: #1d3436;
$dark-border: #1d3436;
$dark-editor-document: #2b2b2b;
$bg-dark-color: #1f2533;
$dark-datatable-odd: #1f232b;
$dark-datatable-sorting: #1c212b;
$dark-datatable-sorting-even: #22262f;
$dark-even-hover-sorting: #191e27;
//General tag settings
$body-font-size: 14px;
$body-font-color: $theme-body-font-color;
$ul-padding-left: 0px;
$ancher-color: var(--theme-color);
$btn-focus-box-shadow: none;
$all-focus-outline-color: var(--theme-color);
$paragraph-font-size: 13px;
$paragraph-line-height: 1.7;
$paragraph-letter-spacing: 0.7px;
$code-tag-color: var(--theme-color);
$code-tag-bg-color: rgba($primary-color, 0.03);
$code-tag-padding: 3px;
$code-tag-margin: 0 3px;
$code-tag-border-radious: 2px;
$blockquote-padding: 15px;
$blockquote-border: 4px solid $light-gray;
$small-tag-padding: 10px;
$small-tag-color: $dark-color;
$pre-tag-bg-color: rgba($primary-color, 0.03);
$pre-tag-padding: 20px 0;
$list-group-active-bg-color: var(--theme-color);
$list-group-active-border-color: var(--theme-color);
$list-group-img-size: 40px;
$list-group-margin: 10px;
// Tables settings
$table-b-margin: 0px;
$table-heading-color: $theme-body-font-color;
$table-row-color: $theme-body-font-color;
$table-footer-font-weight: bold;
$table-inverse-color: $white;
$table-hover-color: $light;
$table-padding: 0.75rem;
$table-xl-padding: 1.25rem 2rem;
$table-xl-font: 120%;
$table-lg-padding: 0.9rem 2rem;
$table-lg-font: 110%;
$table-de-padding: 0.75rem 2rem;
$table-de-font: 100%;
$table-sm-padding: 0.5rem 2rem;
$table-sm-font: 90%;
$table-xs-padding: 0.2rem 2rem;
$table-xs-font: 80%;
$horizontal-border-color: #f2f4ff;
$horizontal-padding: 0.75rem 2rem;
$table-inverse-bg-color: #292b2c;
//According setting
$according-card-top-margin: 10px;
$according-btn-weight: 500;
$according-btn-color: $theme-body-font-color;
$according-card-header-padding: 0.75rem 1.25rem;
$according-card-header-icon: $font-ICO;
$according-open-icon: "\eb73";
$according-close-icon: "\eb7a";
//Alert settings
$alert-hover-color: $dark-color;
$alert-border-radious: 0.15rem;
$alert-padding: 15px;
$alert-msg-icon-size: 16px;
//badge settings
$badge-padding: 0.44em 0.7em;
$badge-svg-size: 10px;
//form input settings
$form-group-margin-bottom: 1.25em;
$col-form-label-font-size: 14px;
$form-control-font-size: 14px;
$form-control-border-radious: 2px;
$form-control-border-color: $light-gray;
//breadcrumb setting
$breadcrumb-ancher-color: $white;
$breadcrumb-ancher-dark-color: $black;
//buttons setting
$btn-font-size: 14px;
$btn-padding: 0.375rem 1.75rem;
$btn-lg-font-size: 18px;
$btn-sm-font-size: 12px;
$btn-xs-font-size: 11px;
$btn-xs-padding: 0.05rem 0.4rem;
//Card settings
$card-padding: 30px 40px;
$card-margin-bottom: 30px;
$card-border-color: 1px solid $light-gray;
$card-border-radious: 15px;
$common-shadow-color: rgba($info-color, 0.08);
$card-box-shadow: 0 0 20px rgba(8, 21, 66, 0.05);
$card-header-bg-color: $white;
$card-header-font-transform: capitalize;
$card-header-span-size: 12px;
$card-header-span-color: $theme-body-sub-title-color;
$card-body-bg-color: $transparent-color;
$card-footer-bg-color: $white;
$card-hover-box-shadow: 0 0 40px rgba(8, 21, 66, 0.05);
//footer settings
$footer_bg_color: $white;
$footer_box_shadow: 0 0 20px rgba($semi-dark, 0.1);
$footer_dark_color: $theme-font-color;
$footer_dark__txt_color: $white;
//form settings
$form-group-margin-bottom: 20px;
$sm-form-margin-bottom: 14px;
$form-placeholder-color: $dark-gray;
$form-placeholder-font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
$form-placeholder-letter-spacing: 1px;
$form-placeholder-font-weight: 100;
$form-input-border-color: $light-semi-gray;
$form-input-bg-color: $white;
//Tour settings
$tour-color: var(--theme-color);
//sidabr main settings
$sidebar-width: 255px;
$sidebar-position: fixed;
$sidebar-background-color: $white;
$sidebar-shadow: 0 0 11px rgba(69, 110, 243, 0.13);
$sidebar-overflow: auto;
$sidebar-z-index: 9;
$sidebar-transition: 0.5s;
//sidebar profile settings
$sidebar-profile-edit-icon-size: 14px;
$sidebar-profile-name-txt-color: var(--theme-color);
$sidebar-profile-name-txt-transfer: uppercase;
$sidebar-profile-name-txt-weight: 600;
$sidebar-profile-name-letter-specing: 1.5px;
$sidebar-profile-name-marging: 3px;
$sidebar-profile-sub-title-font-size: 10px;
$sidebar-profile-sub-title-margin: 0px;
$sidebar-profile-img-shadow: 0 0 15px rgba(68, 102, 242, 0.3);
//Sidebar main menu setting
$sidebar-menu-padding: 15px;
$sidebar-menu-list-style: none;
$sidebar-menu-list-margin: 0;
$sidebar-icon-size: 14px;
$sidebar-icon-margin: 14px;
$sidebar-icon-stroke-width: 3px;
$sidebar-font-size: 14px;
$sidebar-letter-specing: 0.5px;
$sidebar-txt-transform: capitalize;
$sidebar-font-weight: 600;
$sidebar-font-color: $theme-body-font-color;
$sidebar-padding-top: 12px;
$sidebar-padding-bottom: 12px;
$sidebar-sub-header-padding: 15px;
$sidebar-sub-header-margin: 0;
$sidebar-heading-hover-padding: 5px;
$sidebar-hover-txt-color: var(--theme-color);
$sidebar-arrow-margin-top: 2px;
$sidebar-arrow-size: 15px;
$sidebar-arrow-color: $theme-body-font-color;
$sidebar-open-icon: "\f107";
$sidebar-close-icon: "\f105";
$sidebar-icon-font-family: $font-awesome;
$sidebar-height: calc(100vh - 130px);
//Header settings
$main-header-position: fixed;
$main-header-top: 0;
$main-header-shadow: 0 0 20px rgba($semi-dark, 0.1);
//page settings
$page-body-padding: 0 15px 0 15px;
$page-body-bg-color: $light-color;
$page-body-margin-bottom: 0px;
$page-title-padding: 30px;
$common-box-shadow: 2px 3.464px 8px 0px rgba(22, 145, 248, 0.18);
$page-title-font-size: 24px;
$page-title-margin-bottom: 0;
$page-title-text-tranform: capitalize;
$page-small-title-display: block;
$page-small-title-font-size: 12px;
$page-small-title-margin-bottom: 5px;
$page-small-title-text-transform: capitalize;
$page-small-title-text-color: $theme-body-sub-title-color;
$breadcrumb-size: 16px;
$breadcrumb-content: "/";
//main header left settings
$header-left-bg-color: $white;
$main-header-padding: 27px 22px;
$main-header-z-index: 5;
$header-wrapper-padding: 22px 30px;
$header-wrapper-nav-right: 0px;
$header-wrapper-nav-icon-size: 22px;
$header-wrapper-nav-icon-color: $theme-font-color;
$header-wrapper-nav-icon-align: middle;
$header-size: 85px;
$box-layout-space: 40px;
//Breake Points settings
$min-breakpoints: (
lg: 992px,
xl: 1200px,
2xl: 1366px,
);
$max-breakpoints: (
2xs: 360px,
xs: 480px,
sm: 575px,
md: 767px,
lg: 991px,
xl: 1199px,
2xl: 1366px,
3xl: 1460px,
4xl: 1660px,
);