first commit

This commit is contained in:
2024-02-08 18:23:45 +05:30
commit dfd4634f69
220 changed files with 32848 additions and 0 deletions
+153
View File
@@ -0,0 +1,153 @@
/*--------------------------------------------------------------
19. Cards
----------------------------------------------------------------*/
.cs_card.cs_style_1 {
.cs_card_thumb {
padding-right: 75px;
@media (max-width: 1199px) {
padding-right: 40px;
}
@media (max-width: 991px) {
padding-right: 0px;
}
}
.cs_card_title {
margin-bottom: 27px;
@media (max-width: 991px) {
margin-bottom: 15px;
}
}
.cs_card_subtitle {
margin-bottom: 47px;
@media (max-width: 991px) {
margin-bottom: 30px;
}
}
}
.cs_card.cs_style_2 {
.cs_card_thumb {
width: 50vw;
min-height: 650px;
@media (max-width: 991px) {
width: 100%;
min-height: 350px;
}
}
.cs_card_title {
margin-bottom: 27px;
@media (max-width: 991px) {
margin-bottom: 15px;
}
}
.cs_card_subtitle {
margin-bottom: 47px;
@media (max-width: 991px) {
margin-bottom: 30px;
}
}
@media (max-width: 991px) {
.row {
flex-direction: column-reverse;
}
}
}
.cs_card.cs_style_3 {
background-color: rgba($accent, 0.3);
padding: 0;
.cs_card_thumb {
height: 100%;
img {
height: 100%;
width: 100%;
object-fit: cover;
}
}
.cs_card_info {
padding: 120px 60px 130px 75px;
@media (max-width: 1400px) {
padding: 120px 40px 130px 25px;
}
@media (max-width: 991px) {
padding: 30px 30px 45px;
}
@media (max-width: 575px) {
padding: 25px 25px 40px;
}
}
.cs_card_title {
margin-bottom: 13px;
}
.cs_card_subtitle {
margin-bottom: 30px;
}
}
.cs_card.cs_style_4 {
.cs_card_thumb {
border-radius: 5px;
overflow: hidden;
position: relative;
img {
width: 100%;
}
}
.cs_card_badge {
position: absolute;
bottom: 0;
right: 0;
border-radius: 50px 0px 0px 0px;
background-color: rgba(255, 255, 255, 0.9);
min-height: 234px;
min-width: 244px;
text-align: center;
padding: 57px 50px;
@media (max-width: 991px) {
min-height: 194px;
min-width: 200px;
text-align: center;
padding: 47px 40px;
}
.cs_shape_1 {
position: absolute;
top: 50px;
left: 45px;
display: flex;
@media (max-width: 991px) {
top: 45px;
left: 40px;
}
}
.cs_shape_2 {
position: absolute;
bottom: 48px;
right: 43px;
display: flex;
@media (max-width: 991px) {
bottom: 45px;
right: 40px;
}
}
}
.cs_card_title {
margin-bottom: 22px;
}
.cs_card_subtitle {
margin-bottom: 34px;
}
.cs_card_feature_list {
.cs_store_feature {
padding-left: 38px;
margin-bottom: 33px;
&:last-child {
margin-bottom: 43px;
}
.cs_feature_title {
margin-bottom: 5px;
}
.cs_feature_icon {
top: 3px;
left: 0;
}
}
}
}
+84
View File
@@ -0,0 +1,84 @@
/*--------------------------------------------------------------
18. Category
----------------------------------------------------------------*/
.cs_grid_list {
display: grid;
grid-template-columns: repeat(3, 1fr);
column-gap: 7.5%;
@media (max-width: 1400px) {
column-gap: 24px;
}
@media (max-width: 1199px) {
column-gap: 24px;
}
@media (max-width: 767px) {
grid-template-columns: repeat(1, 1fr);
gap: 30px;
}
}
.cs_category.cs_style_1 {
.cs_category_thumb {
display: block;
}
.cs_category_btn {
display: inline-flex;
align-items: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: $primary;
padding: 10px 25px;
color: $white;
text-align: center;
transition: all 0.3s ease;
span:last-child {
width: 0;
transform: scale(0);
display: inline-block;
margin-bottom: -2px;
transition: all 0.3s ease;
}
}
&:hover {
.cs_category_btn {
background-color: $accent;
span:last-child {
width: 16px;
margin-left: 10px;
transform: scale(1);
}
}
}
}
.cs_category.cs_style_2 {
margin-left: auto;
margin-right: auto;
overflow: hidden;
display: block;
max-width: 312px;
.cs_category_thumb {
padding-top: 100%;
img {
border-radius: 50%;
border-radius: inherit;
object-fit: cover;
position: absolute;
height: 100%;
width: 100%;
left: 0;
top: 0;
}
}
.cs_category_btn {
min-width: 140px;
padding: 10px 20px;
background: rgba($primary, 0.1);
backdrop-filter: blur(5px);
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
}
+16
View File
@@ -0,0 +1,16 @@
/*--------------------------------------------------------------
26. Contact
----------------------------------------------------------------*/
.cs_location_map {
iframe {
height: 100%;
min-height: 800px;
width: 100%;
border: none;
filter: grayscale(100%);
display: block;
@media (max-width: 991px) {
min-height: 400px;
}
}
}
+20
View File
@@ -0,0 +1,20 @@
/*--------------------------------------------------------------
24. Feature
----------------------------------------------------------------*/
.cs_featured_container {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 75px;
@media (max-width: 1400px) {
grid-gap: 40px;
}
@media (max-width: 1199px) {
grid-gap: 24px;
}
@media (max-width: 991px) {
grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 575px) {
grid-template-columns: repeat(1, 1fr);
}
}
+239
View File
@@ -0,0 +1,239 @@
/*--------------------------------------------------------------
17. Hero
----------------------------------------------------------------*/
.cs_hero.cs_style_1 {
width: 100%;
height: 100%;
min-height: 750px;
background: #fbfbfb;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
@media (max-width: 1400px) {
min-height: 700px;
}
@media (max-width: 991px) {
min-height: initial;
padding-bottom: 80px;
}
.cs_hero_text {
width: 750px;
padding: 0 75px;
flex: none;
@media (max-width: 1400px) {
width: 670px;
padding: 0 45px;
}
@media (max-width: 1199px) {
width: 550px;
padding: 0 25px;
}
@media (max-width: 991px) {
padding: 30px 15px 70px;
}
@media (max-width: 991px) {
width: 100%;
}
.cs_heto_title {
margin-bottom: 17px;
}
.cs_heto_subtitle {
margin-bottom: 37px;
}
}
.cs_hero_thumb {
flex: 1;
height: 100%;
@media (max-width: 991px) {
height: 450px;
min-height: initial;
width: 100%;
flex: initial;
}
}
@media (max-width: 991px) {
flex-direction: column-reverse;
}
}
.cs_hero.cs_style_2 {
background: rgba($secondary, 0.1);
display: flex;
height: calc(100vh - 80px);
min-height: 700px;
max-height: 1000px;
@media (max-width: 991px) {
flex-direction: column-reverse;
height: initial;
min-height: initial;
max-height: initial;
}
.cs_hero_left {
width: 50%;
flex: none;
display: flex;
align-items: center;
padding: 75px;
padding-bottom: 175px;
@media (max-width: 1400px) {
padding: 50px;
padding-bottom: 175px;
}
@media (max-width: 991px) {
width: 100%;
padding: 50px 40px 60px 40px;
}
@media (max-width: 380px) {
padding: 40px 25px 50px 25px;
}
}
.cs_hero_right {
width: 50%;
flex: none;
position: relative;
@media (max-width: 991px) {
width: 100%;
}
}
.cs_hero_thumb {
height: 100%;
img {
height: 100%;
width: 100%;
object-fit: cover;
}
}
.cs_hero_title_mini {
margin-bottom: 20px;
}
.cs_hero_title {
margin-bottom: 34px;
}
.cs_animated_text {
width: 200px;
height: 200px;
display: flex;
align-items: center;
justify-content: center;
bottom: 20%;
left: -100px;
background: rgba(255, 255, 255, 0.5);
backdrop-filter: blur(10px);
padding: 30px;
border-radius: 50%;
@media (max-width: 991px) {
bottom: initial;
left: 50%;
transform: translate(-50%, -50%);
top: 50%;
}
@media (max-width: 500px) {
display: none;
}
img {
animation: text_rotate 20s linear infinite;
}
.cs_text_light {
display: inline-block;
width: 30px;
height: 30px;
background-color: $accent;
border-radius: 50%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(1);
animation: scale_all 3s cubic-bezier(0.28, 1.84, 0.55, -0.11) infinite;
}
}
}
.cs_hero.cs_style_3 {
padding-top: 118px;
padding-bottom: 118px;
background-color: #efefef;
@media (max-width: 991px) {
padding-top: 80px;
padding-bottom: 80px;
}
.cs_hero_in {
display: flex;
align-items: center;
position: relative;
z-index: 2;
@media (max-width: 991px) {
flex-direction: column;
}
}
.cs_hero_right {
flex: 1;
padding-left: 136px;
@media (max-width: 1400px) {
padding-left: 80px;
}
@media (max-width: 1199px) {
padding-left: 50px;
}
@media (max-width: 991px) {
padding-left: 0;
padding-top: 40px;
width: 100%;
}
}
.cs_hero_left {
flex: none;
width: 43%;
@media (max-width: 1400px) {
width: 48%;
}
@media (max-width: 1199px) {
width: 45%;
}
@media (max-width: 991px) {
width: 100%;
}
}
.cs_hero_title {
margin-bottom: 47px;
@media (max-width: 991px) {
margin-bottom: 25px;
}
@media (max-width: 500px) {
br {
display: none;
}
}
}
.cs_hero_shape {
top: 50%;
transform: translateY(-50%);
right: 76px;
@media (max-width: 991px) {
right: 30px;
top: initial;
bottom: -40px;
transform: initial;
}
@media (max-width: 575px) {
display: none;
}
}
}
@keyframes text_rotate {
100% {
transform: rotate(360deg);
}
}
@keyframes scale_all {
50% {
transform: translate(-50%, -50%) scale(1.5);
}
}
+216
View File
@@ -0,0 +1,216 @@
/*--------------------------------------------------------------
22. Post
----------------------------------------------------------------*/
.cs_post.cs_style_1 {
.cs_post_thumb {
display: block;
margin-bottom: 24px;
}
.cs_post_meta {
margin-bottom: 5px;
}
.cs_post_title {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
margin-bottom: 12px;
}
.cs_post_subtitle {
margin-bottom: 27px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
margin-bottom: 16px;
}
.cs_post_btn {
position: relative;
padding-bottom: 2px;
&::after {
content: '';
width: 100%;
height: 1px;
background-color: $primary;
position: absolute;
left: 0;
bottom: 0;
transform: scaleX(0);
transform-origin: right center;
transition: transform 0.3s ease;
}
.cs_btn_arrow {
position: absolute;
top: 2px;
right: -20px;
transform: rotate(-35deg);
transition: all 0.3s ease;
}
&:hover {
&::after {
transform: scaleX(1);
transform-origin: left center;
}
}
}
}
.cs_post.cs_style_2 {
display: flex;
align-items: center;
gap: 20px;
@media (max-width: 991px) {
flex-direction: column;
}
.cs_post_thumb {
flex: none;
@media (max-width: 991px) {
width: 100%;
}
}
.cs_post_meta {
margin-bottom: 5px;
}
.cs_post_title,
.cs_post_subtitle {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.cs_post_title {
margin-bottom: 12px;
}
.cs_post_subtitle {
margin-bottom: 16px;
}
.cs_post_btn {
position: relative;
padding-bottom: 2px;
&::after {
content: '';
width: 100%;
height: 1px;
background-color: $primary;
position: absolute;
left: 0;
bottom: 0;
transform: scaleX(0);
transform-origin: right center;
transition: transform 0.3s ease;
}
.cs_btn_arrow {
position: absolute;
top: 2px;
right: -20px;
transform: rotate(-35deg);
transition: all 0.3s ease;
}
&:hover {
&::after {
transform: scaleX(1);
transform-origin: left center;
}
}
}
}
.cs_post.cs_style_3 {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: flex-end;
@media (max-width: 1199px) {
height: 450px;
}
.cs_post_info {
padding: 35px;
}
.cs_post_meta {
margin-bottom: 5px;
color: rgba($white, 0.8);
}
.cs_post_title {
color: $white;
margin-bottom: 12px;
}
.cs_post_subtitle {
margin-bottom: 16px;
color: rgba($white, 0.8);
}
.cs_post_btn {
position: relative;
padding-bottom: 2px;
&::after {
content: '';
width: 100%;
height: 1px;
background-color: $accent;
position: absolute;
left: 0;
bottom: 0;
transform: scaleX(0);
transform-origin: right center;
transition: transform 0.3s ease;
}
.cs_btn_arrow {
position: absolute;
top: 2px;
right: -20px;
transform: rotate(-35deg);
transition: all 0.3s ease;
}
&:hover {
&::after {
transform: scaleX(1);
transform-origin: left center;
}
}
}
}
.cs_post.cs_style_4 {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 25px;
&:last-child {
margin-bottom: 0;
}
.cs_post_thumb {
width: 60px;
height: 60px;
flex: none;
}
.cs_post_title,
.cs_post_subtitle {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
}
.cs_post_title {
margin-bottom: 2px;
}
}
+144
View File
@@ -0,0 +1,144 @@
/*--------------------------------------------------------------
23. Post Details
----------------------------------------------------------------*/
.cs_post_details_meta {
display: flex;
flex-wrap: wrap;
margin-bottom: 10px;
> span {
position: relative;
&:not(:last-child) {
padding-right: 14px;
margin-right: 14px;
&::after {
content: '';
height: 12px;
width: 1px;
background-color: #5e5e5e;
opacity: 0.2;
position: absolute;
right: 0;
top: 5px;
}
}
}
}
.cs_post_details {
h1 {
font-size: 50px;
line-height: 1.4em;
font-weight: 700;
margin-bottom: 40px;
@media (max-width: 1199px) {
font-size: 46px;
}
@media (max-width: 991px) {
font-size: 36px;
}
}
h2 {
font-size: 28px;
line-height: 1.4em;
font-weight: 600;
margin-bottom: 15px;
@media (max-width: 991px) {
font-size: 24px;
}
}
p {
margin-bottom: 35px;
}
img {
margin-bottom: 40px;
}
ul {
list-style: none;
padding: 0;
margin: 0 0 35px 0;
li {
padding-left: 20px;
position: relative;
&:not(:last-child) {
margin-bottom: 5px;
}
&::before {
content: '';
position: absolute;
height: 5px;
width: 5px;
border-radius: 50%;
left: 5px;
top: 10px;
background-color: currentColor;
}
}
}
> *:last-child {
margin-bottom: 0;
}
}
.cs_post_details_share_wrap,
.cs_post_details_tags_wrap {
display: flex;
gap: 12px;
align-items: center;
h4 {
margin: 0;
}
}
.cs_post_details_share {
display: flex;
gap: 15px;
}
.cs_post_details_bottom {
display: flex;
gap: 10px 30px;
justify-content: space-between;
}
.cs_author_thumb {
flex: none;
height: 150px;
width: 150px;
border-radius: 50%;
overflow: hidden;
img {
height: 100%;
width: 100%;
object-fit: cover;
}
}
.cs_author_card {
display: flex;
align-items: center;
gap: 30px 50px;
padding: 50px 0;
border-top: 1px solid $border;
border-bottom: 1px solid $border;
@media (max-width: 767px) {
flex-direction: column;
text-align: center;
gap: 25px;
}
}
.cs_author_social {
display: flex;
gap: 10px;
@media (max-width: 767px) {
justify-content: center;
}
a {
width: 35px;
height: 35px;
color: $primary;
border: 1px solid $primary;
border-radius: 50%;
&:hover {
background-color: $primary;
color: #fff;
}
}
}
.cs_author_title {
margin-bottom: 10px;
}
+136
View File
@@ -0,0 +1,136 @@
/*--------------------------------------------------------------
20. Products
----------------------------------------------------------------*/
.cs_product.cs_style_1 {
&.cs_bordered {
border: 1px solid rgba($accent, 0.1);
padding-bottom: 18px;
}
.cs_product_thumb {
background-color: rgba($accent, 0.1);
margin-bottom: 14px;
text-align: center;
img {
display: inline-block;
}
}
.cs_product_thumb_overlay {
width: 100%;
height: 100%;
background: rgba($accent, 0.2);
backdrop-filter: blur(5px);
top: 0;
left: 0;
opacity: 0;
transition: all 0.4s ease;
}
.cs_discount_badge {
top: 30px;
left: 30px;
padding: 10px;
}
.cs_cart_badge {
top: 30px;
right: 30px;
display: flex;
flex-direction: column;
gap: 10px;
&.cs_middle {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
flex-direction: row;
justify-content: center;
gap: 40px;
}
.cs_cart_icon {
flex: none;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transform: scale(0);
transition: all 0.3s ease;
span {
display: flex;
align-items: center;
justify-content: center;
}
&:hover {
background-color: $white;
}
}
}
.cs_cart_btn {
width: calc(100% - 60px);
padding: 15px 20px;
text-align: center;
left: 50%;
transform: translateX(-50%) scale(0);
transition: all 0.4s ease;
bottom: 30px;
&:hover {
background-color: $white;
}
}
.cs_product_title {
line-height: 1.5em;
margin-bottom: 5px;
}
&:hover {
.cs_cart_icon {
transform: scale(1);
}
.cs_cart_btn {
transform: translateX(-50%) scale(1);
}
.cs_product_thumb_overlay {
opacity: 1;
}
}
&.cs_type_1 {
.cs_product_thumb {
height: 420px;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
@media (max-width: 500px) {
height: 320px;
}
}
}
}
.cs_product.cs_style_2 {
border-radius: 5px;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(5px);
width: 100%;
max-width: 424px;
margin-left: auto;
padding-bottom: 45px;
.cs_product_thumb {
height: 355px;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.cs_product_price {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
.cs_discount_badge {
top: 30px;
left: 30px;
padding: 10px;
}
.cs_product_title {
margin-bottom: 8px;
}
}
+958
View File
@@ -0,0 +1,958 @@
/*--------------------------------------------------------------
25. Shop
----------------------------------------------------------------*/
.cs_shop_menu {
margin-bottom: 60px;
.cs_filter,
.cs_result_info,
.cs_sort {
padding-bottom: 11px;
}
.cs_sort {
flex: 1;
}
.cs_view {
flex: 1;
display: flex;
align-items: center;
justify-content: flex-end;
gap: 20px;
}
.cs_viev_icon {
cursor: pointer;
&.active {
color: $primary;
}
}
}
.cs_single_product_breadcrumb {
margin-bottom: 32px;
}
.cs_single_product_nav {
margin-top: -11px;
// .slick-list {
// margin-left: -10px;
// margin-right: -10px;
// margin-top: -12px;
// margin-bottom: -12px;
// }
.cs_single_product_thumb_mini {
padding: 11px 0px;
height: 159px;
@media (max-width: 1400px) {
height: 137px;
}
@media (max-width: 1199px) {
height: 200px;
}
@media (max-width: 991px) {
height: 149px;
}
@media (max-width: 767px) {
height: initial;
}
img {
height: 100%;
width: 100%;
object-fit: cover;
}
}
.slick-current {
img {
border-color: $accent;
}
}
.slick-slide:not(.slick-current) {
cursor: pointer;
}
}
.cs_single_product_thumb_mini {
img {
width: 100%;
border: 1px solid transparent;
background-color: rgba($accent, 0.1);
transition: all 0.3s ease;
}
}
.cs_single_product_thumb_item {
overflow: hidden;
background-color: rgba($accent, 0.1);
img {
width: 100%;
}
}
.cs_single_product_info {
list-style: none;
padding: 0;
margin: 0;
margin-top: 25px;
li {
&:not(:last-child) {
margin-bottom: 8px;
}
}
}
.cs_single_product_details {
padding-left: 50px;
@media (max-width: 1400px) {
padding-left: 20px;
}
@media (max-width: 1199px) {
padding-left: 0px;
padding-top: 20px;
}
h2 {
margin-bottom: 5px;
}
.cs_single_product_review {
margin-bottom: 4px;
}
.cs_single_product_price {
margin-bottom: 15px;
}
.cs_single_product_details_text {
margin-top: 14px;
margin-bottom: 20px;
}
h4 {
margin-bottom: 10px;
}
.cs_single_product_size {
margin-bottom: 25px;
}
.cs_single_product_color {
margin-bottom: 15px;
}
}
.cs_review_form {
textarea {
resize: none;
}
}
.cs_client_review {
display: flex;
flex-wrap: wrap;
.cs_review_media {
display: flex;
align-items: center;
}
.cs_review_media_thumb {
flex: none;
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 20px;
img {
height: 100%;
width: 100%;
object-fit: cover;
}
}
.cs_review_text {
flex: none;
width: 100%;
margin: 15px 0 50px;
}
.cs_review_posted_by {
margin-left: 65px;
padding-top: 32px;
margin-bottom: 0;
@media (max-width: 500px) {
margin-left: 22px;
}
}
}
.cs_client_review_list {
li {
&:not(:last-child) {
margin-bottom: 30px;
padding-bottom: 30px;
border-bottom: 1px solid $border;
}
}
}
.cs_product_tab {
@media (max-width: 575px) {
gap: 10px 30px;
}
}
/*-----------------------------------
Pavigation styling
-------------------------------------*/
.cs_pagination {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
}
.cs_page_item {
.cs_page_link {
display: inline-block;
width: 60px;
height: 60px;
border-radius: 50%;
background-color: $primary;
color: $white;
display: flex;
align-items: center;
justify-content: center;
}
&.active,
&:hover {
.cs_page_link {
background-color: $accent;
}
}
}
.cs_single_product_review {
display: flex;
align-items: center;
gap: 10px;
}
// Filter Sidebar
.cs_filter_sidebar {
position: relative;
padding-right: 90px;
z-index: 10;
@media (max-width: 1400px) {
padding-right: 60px;
}
@media (max-width: 1199px) {
padding-right: 30px;
}
@media (max-width: 991px) {
padding-right: 0px;
}
}
.cs_filter_sidebar_heading {
border-bottom: 1px solid $border;
padding-bottom: 6px;
display: flex;
margin-bottom: 54px;
@media (max-width: 991px) {
margin-bottom: 40px;
}
}
.cs_filter_sidebar_heading_in {
display: flex;
align-items: center;
gap: 10px;
padding: 5px 10px 5px 0;
}
.cs_filter_widget_title {
position: relative;
cursor: pointer;
margin-bottom: 20px;
padding-right: 20px;
transition: all 0.3s ease;
span {
position: absolute;
height: 2px;
width: 10px;
background-color: currentColor;
border-radius: 2px;
right: 0;
top: 12px;
&::before {
content: '';
position: absolute;
height: 100%;
width: 100%;
background-color: inherit;
transform: rotate(90deg);
left: 0;
top: 0;
transition: all 0.3s ease;
}
}
&.active {
margin-bottom: 0;
span {
&::before {
transform: rotate(0);
}
}
}
}
.cs_filter_btn {
cursor: pointer;
}
.cs_shop_filter {
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: 100vw;
z-index: 1000;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
&.active {
opacity: 1;
visibility: visible;
}
.cs_filter_sidebar {
background-color: #fff;
padding: 40px 30px 40px 30px;
height: 100vh;
max-width: 400px;
width: 100%;
overflow: auto;
@media (max-width: 450px) {
max-width: 100%;
}
}
}
.cs_filter_close {
position: absolute;
z-index: 11;
top: 20px;
left: 350px;
cursor: pointer;
padding: 0;
border: none;
background-color: #fff;
font-weight: bold;
height: 32px;
width: 32px;
border: 1px solid;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
border-color: currentColor;
color: $primary;
transition: all 0.3s ease;
&:hover {
color: $accent;
}
@media (max-width: 450px) {
left: initial;
right: 20px;
}
}
.cs_filter_overlay {
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: 100vw;
background-color: rgba(0, 0, 0, 0.6);
cursor: zoom-out;
}
.cs_custom_check {
position: relative;
display: inline-block;
> label,
> span {
display: block;
position: relative;
padding-left: 20px;
&::before {
content: '';
height: 10px;
width: 10px;
border: 1px solid currentColor;
position: absolute;
left: 0;
top: 7px;
}
&::after {
content: '';
position: absolute;
height: 6px;
width: 6px;
background-color: currentColor;
left: 2px;
top: 9px;
opacity: 0;
}
}
input {
position: absolute;
height: 100%;
width: 100%;
left: 0;
top: 0;
z-index: 1;
cursor: pointer;
opacity: 0;
&:checked {
+ label {
&::after {
opacity: 1;
}
}
}
}
}
.cs_filter_category {
ul {
list-style: none;
padding: 10px 0 0 12px;
margin: 0;
}
li {
margin-bottom: 10px;
}
> li {
&:last-child {
margin-bottom: 0;
}
}
}
.cs_review_filter {
> li {
&:last-child {
margin-bottom: 0;
}
}
label {
display: inline-flex;
align-items: center;
gap: 15px;
}
}
.cs_range_slider_wrap {
padding-top: 6px;
}
.ui-slider-horizontal {
height: 2px;
margin-top: 0;
margin-bottom: 6px;
}
.ui-slider .ui-slider-handle {
width: 14px;
height: 14px;
background-color: $primary;
border-color: $primary;
outline: none;
cursor: pointer;
}
.ui-slider-horizontal .ui-slider-handle {
top: -7px;
margin-left: -0.6em;
}
.ui-widget.ui-widget-content {
border: none;
background-color: $primary;
}
.ui-widget-header {
background: $accent;
}
.cs_amount_wrap input {
display: block;
padding: 0;
border: none;
width: 100%;
margin-top: 15px;
font-size: 14px;
outline: none;
}
.cs_filter_widget {
&:not(:last-child) {
padding-bottom: 25px;
margin-bottom: 25px;
border-bottom: 1px solid $border;
}
}
.cs_color_filter {
display: inline-flex;
align-items: center;
gap: 10px;
cursor: pointer;
position: relative;
input {
position: absolute;
height: 100%;
width: 100%;
left: 0;
top: 0;
z-index: 1;
cursor: pointer;
opacity: 0;
&:checked {
+ .cs_color_filter_circle {
&::before {
content: '';
height: calc(100% + 6px);
width: calc(100% + 6px);
border: 1px solid rgba($accent, 0.5);
position: absolute;
left: -3px;
top: -3px;
border-radius: 50%;
}
}
}
}
.cs_color_filter_circle {
height: 20px;
width: 20px;
border-radius: 50%;
box-shadow: 0 0 1px #000;
flex: none;
position: relative;
}
}
.cs_color_filter_list {
li {
display: flex;
&:not(:last-child) {
margin-bottom: 10px;
}
}
&.cs_type_1 {
display: flex;
flex-wrap: wrap;
max-width: 250px;
li {
width: 50%;
&:last-child {
margin-bottom: 10px;
}
}
}
}
.cs_size_filter_list {
display: flex;
align-items: center;
gap: 10px;
li {
width: 30px;
height: 30px;
position: relative;
}
span {
display: flex;
height: 100%;
width: 100%;
align-items: center;
justify-content: center;
border: 1px solid $border;
}
input {
position: absolute;
height: 100%;
width: 100%;
left: 0;
top: 0;
z-index: 1;
cursor: pointer;
opacity: 0;
&:checked {
+ span {
border-color: $accent;
background-color: $accent;
color: #fff;
}
}
}
}
.cs_brand_filter_list {
display: flex;
flex-wrap: wrap;
gap: 8px 20px;
li {
position: relative;
}
input {
position: absolute;
height: 100%;
width: 100%;
left: 0;
top: 0;
z-index: 1;
cursor: pointer;
opacity: 0;
&:checked {
+ span {
color: $primary;
}
}
}
}
.cs_input_rating_wrap {
display: flex;
align-items: center;
p {
margin: 0 14px 0 0;
}
}
//////////////////////////
.cs_quantity {
flex: none;
position: relative;
width: 112px;
height: 50px;
transition: all 0.3s ease;
@media (max-width: 991px) {
height: 44px;
width: 90px;
}
.cs_quantity_input {
height: 100%;
width: 100%;
border: 1px solid $border;
background-color: transparent;
padding: 13px 20px;
outline: none;
display: flex;
align-items: center;
@media (max-width: 991px) {
padding: 10px 15px;
}
&:focus {
border-color: #fff;
}
}
.cs_quantity_btn {
padding: 0;
border: none;
background-color: transparent;
display: flex;
padding: 2px 9px;
cursor: pointer;
font-size: 14px;
position: absolute;
right: 11px;
&.cs_increment {
top: 7px;
}
&.cs_decrement {
bottom: 7px;
}
&:hover {
color: $accent;
border-color: $accent;
}
}
}
.cs_product_btn {
display: inline-flex;
justify-content: center;
padding: 12px 25px;
background-color: $accent;
color: #fff;
border-radius: 0px;
outline: none;
border: none;
white-space: nowrap;
@media (max-width: 991px) {
padding: 9px 25px;
}
&:hover {
opacity: 0.8;
color: #fff;
}
&.cs_color1 {
background-color: #000;
&:hover {
background-color: $accent;
}
}
@media (max-width: 380px) {
padding-left: 20px;
padding-right: 20px;
}
}
.cs_cart_table_media {
display: flex;
align-items: center;
gap: 20px;
@media (max-width: 991px) {
gap: 10px;
}
img {
width: 85px;
flex: none;
@media (max-width: 991px) {
width: 50px;
}
}
h3 {
font-weight: 400;
font-size: 16px;
margin: 0;
}
}
.cs_cart-table-close {
background-color: transparent;
border: none;
padding: 0;
display: flex;
&:hover {
color: red;
}
}
.cs_cart_table {
@media (max-width: 991px) {
min-width: 500px;
}
&.cs_size1 {
min-width: 900px;
}
th {
color: $primary;
border: none;
font-weight: 600;
font-size: 18px;
line-height: 1.6em;
padding: 20px;
padding-top: 0;
border-bottom: 1px solid $border;
@media (max-width: 991px) {
padding: 10px;
padding-top: 0;
}
}
td {
border-top: none;
border-bottom: 1px solid $border;
padding: 20px;
@media (max-width: 991px) {
padding: 10px;
}
}
@media (max-width: 991px) {
.cs_quantity {
width: 90px;
}
.cs_quantity_input {
padding: 5px 35px 5px 10px;
}
}
}
.cs_coupon-doce-form {
display: flex;
gap: 0px;
input {
background-color: transparent;
padding: 6px 15px;
border: 1px solid $primary;
border-right: 0;
border-radius: 0px;
height: 50px;
outline: none;
transition: all 0.3s ease;
flex: 1;
@media (max-width: 991px) {
height: 44px;
}
&::placeholder {
color: $secondary;
}
&:-ms-input-placeholder {
color: $secondary;
}
&::-ms-input-placeholder {
color: #fff;
}
&:focus {
border-color: $secondary;
}
}
@media (max-width: 450px) {
flex-wrap: wrap;
input {
width: 100%;
}
}
}
.cs_shop-card {
border: 1px solid $border;
border-radius: 2px;
padding: 23px 35px 30px;
@media (max-width: 575px) {
padding: 23px 25px 30px;
}
table {
border-bottom: 1px solid $border;
margin: 0;
}
h2 {
margin-bottom: 15px;
}
td {
padding: 20px 10px;
&:first-child {
padding-left: 0;
color: $primary;
font-weight: 500;
}
&:last-child {
padding-right: 0;
}
}
tr {
&:last-child {
td {
&:last-child {
font-weight: 600;
font-size: 21px;
color: $primary;
}
}
}
}
.form-check {
margin-bottom: 6px;
}
}
.cs_checkout-alert {
a {
color: $accent;
&:hover {
text-decoration: underline;
}
}
}
.cs_shop-side-spacing {
padding-left: 25px;
@media (max-width: 1199px) {
padding-left: 0;
}
}
.cs_checkout-title {
margin-bottom: 0px;
}
.cs_shop-input {
display: block;
width: 100%;
background: transparent;
border: 1px solid $border;
padding: 11px 15px;
border-radius: 5px;
outline: none;
transition: all 0.4s ease;
margin-bottom: 20px;
min-height: 50px;
@media (max-width: 991px) {
min-height: 44px;
padding: 8px 15px;
}
&:focus {
border-color: $primary;
}
}
.cs_shop-label {
display: block;
font-weight: 500;
margin-bottom: 10px;
}
.cs_payment_text {
font-size: 14px;
line-height: 1.6em;
color: rgba($primary, 0.6);
a {
color: $accent;
}
}
.cs_order-summery {
border: 1px solid $border;
list-style: none;
padding: 25px 35px;
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 0;
@media (max-width: 575px) {
padding: 25px 25px;
}
p {
font-size: 14px;
line-height: 1.6em;
margin-bottom: 5px;
}
h3 {
margin: 0;
font-weight: 500;
font-size: 16px;
}
li {
&:not(:last-child) {
border-right: 1px solid $border;
padding-right: 55px;
margin-right: 55px;
@media (max-width: 991px) {
border-right: 0;
padding-right: 0;
margin-right: 0;
}
}
@media (max-width: 991px) {
width: 100%;
&:not(:last-child) {
border-bottom: 1px solid $border;
padding-bottom: 15px;
margin-bottom: 15px;
}
}
}
}
.cs_header_cart {
display: inline-block;
position: relative;
&:hover {
color: $accent;
}
}
.cs_header_cart_label {
position: absolute;
background-color: $accent;
font-weight: 600;
font-size: 12px;
line-height: 17px;
padding: 0 2px;
min-width: 17px;
text-align: center;
border-radius: 1.6em;
left: 11px;
bottom: -9px;
color: #fff;
}
.cs_shop_page_heading {
h1 {
margin-bottom: 20px;
}
}
.cs_shop_breadcamp {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
span {
color: $accent;
}
}
.form-check-input {
position: relative;
top: -2px;
}
+41
View File
@@ -0,0 +1,41 @@
/*--------------------------------------------------------------
21. Testimonial
----------------------------------------------------------------*/
.cs_testimonial.cs_style_1 {
.cs_testimonial_title {
margin-bottom: 38px;
}
.cs_testimonial_text {
margin: 0 0 45px 0;
font-style: normal;
@media (max-width: 991px) {
margin: 0 0 30px 0;
br {
display: none;
}
}
}
.cs_testimonial_user {
display: flex;
flex-direction: column;
align-items: center;
}
.cs_avatar_thumb {
margin-bottom: 20px;
height: 60px;
width: 60px;
border-radius: 50%;
overflow: hidden;
img {
height: 100%;
width: 100%;
object-fit: cover;
}
@media (max-width: 991px) {
margin-bottom: 10px;
}
}
.cs_avatar_subtitle {
color: $black;
}
}