first commit
This commit is contained in:
@@ -0,0 +1,114 @@
|
||||
/*--------------------------------------------------------------
|
||||
10. Button
|
||||
----------------------------------------------------------------*/
|
||||
.cs_btn.cs_style_1 {
|
||||
display: inline-block;
|
||||
background-color: $primary;
|
||||
color: $white;
|
||||
border: 2px solid $primary;
|
||||
padding: 13px 32px;
|
||||
text-align: center;
|
||||
&:hover {
|
||||
background-color: transparent;
|
||||
color: $primary;
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
padding: 10px 25px;
|
||||
}
|
||||
&.cs_accent_btn {
|
||||
background-color: $accent;
|
||||
border-color: $accent;
|
||||
&:hover {
|
||||
background-color: transparent;
|
||||
color: $accent;
|
||||
}
|
||||
}
|
||||
&.cs_type_1 {
|
||||
background-color: transparent;
|
||||
color: $primary;
|
||||
&:hover {
|
||||
background-color: $primary;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
/*---------------------------------
|
||||
Single product page btn styling
|
||||
-----------------------------------*/
|
||||
.cs_heart_btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
border: 1px solid $primary;
|
||||
background-color: transparent;
|
||||
font-size: 18px;
|
||||
color: $primary;
|
||||
@media (max-width: 991px) {
|
||||
width: 44px;
|
||||
height: 44px;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
color: #fff;
|
||||
border-color: $accent;
|
||||
background-color: $accent;
|
||||
}
|
||||
}
|
||||
.cs_action_btns {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 20px;
|
||||
@media (max-width: 991px) {
|
||||
gap: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
/*---------------------------------
|
||||
Scroll To Top btn styling
|
||||
-----------------------------------*/
|
||||
.cs_scrollup_btn {
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
background-color: $accent;
|
||||
color: $white;
|
||||
border-radius: 50%;
|
||||
position: fixed;
|
||||
bottom: 20px;
|
||||
right: 20px;
|
||||
transform: scale(0);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
transition: all 0.4s ease;
|
||||
z-index: 99;
|
||||
&::after {
|
||||
content: '';
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: $white;
|
||||
border-radius: 50%;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
transform: scale(0.6);
|
||||
animation: scale_full 3s cubic-bezier(0.28, 1.84, 0.55, -0.11) infinite;
|
||||
}
|
||||
cursor: pointer;
|
||||
&.cs_scrollup_show {
|
||||
transform: scale(1);
|
||||
}
|
||||
i {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
color: $primary;
|
||||
}
|
||||
}
|
||||
@keyframes scale_full {
|
||||
50% {
|
||||
transform: scale(1);
|
||||
// border: 1px solid $accent;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,80 @@
|
||||
/*--------------------------------------------------------------
|
||||
16. Footer
|
||||
----------------------------------------------------------------*/
|
||||
.cs_footer_widget_title {
|
||||
margin-bottom: 19px;
|
||||
}
|
||||
.cs_footer_widget {
|
||||
margin-bottom: 60px;
|
||||
@media (max-width: 991px) {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
}
|
||||
.cs_text_widget {
|
||||
> * {
|
||||
margin-bottom: 26px;
|
||||
@media (max-width: 991px) {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_menu_widget {
|
||||
ul {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
li {
|
||||
&:not(:last-child) {
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_footer_menu_widget_2 {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 20px;
|
||||
justify-content: center;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
.cs_social_links {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 15px;
|
||||
}
|
||||
.cs_footer_bottom {
|
||||
padding: 30px 0;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
gap: 8px 30px;
|
||||
border-top: 1px solid $border;
|
||||
.cs_social_links {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
flex-direction: column-reverse;
|
||||
text-align: center;
|
||||
padding: 20px 0;
|
||||
.cs_social_links {
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_footer.cs_style_1 {
|
||||
&.cs_primary_bg {
|
||||
color: rgba($white, 0.8);
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,660 @@
|
||||
/*--------------------------------------------------------------
|
||||
4. General
|
||||
----------------------------------------------------------------*/
|
||||
.cs_fs_14 {
|
||||
font-size: 14px;
|
||||
line-height: 1.572em;
|
||||
}
|
||||
.cs_fs_16 {
|
||||
font-size: 16px;
|
||||
line-height: 1.25em;
|
||||
}
|
||||
.cs_fs_18 {
|
||||
font-size: 18px;
|
||||
line-height: 1.4em;
|
||||
}
|
||||
|
||||
.cs_fs_21 {
|
||||
font-size: 21px;
|
||||
line-height: 1.667em;
|
||||
@media (max-width: 991px) {
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
.cs_fs_28 {
|
||||
font-size: 28px;
|
||||
line-height: 1.429em;
|
||||
@media (max-width: 991px) {
|
||||
font-size: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
.cs_fs_37 {
|
||||
font-size: 37px;
|
||||
line-height: 1.352em;
|
||||
@media (max-width: 991px) {
|
||||
font-size: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
.cs_fs_50 {
|
||||
font-size: 50px;
|
||||
line-height: 1.4em;
|
||||
@media (max-width: 1199px) {
|
||||
font-size: 46px;
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
font-size: 36px;
|
||||
}
|
||||
}
|
||||
|
||||
.cs_fs_67 {
|
||||
font-size: 67px;
|
||||
line-height: 1.195em;
|
||||
@media (max-width: 1400px) {
|
||||
font-size: 60px;
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
font-size: 46px;
|
||||
}
|
||||
@media (max-width: 450px) {
|
||||
font-size: 40px;
|
||||
}
|
||||
@media (max-width: 360px) {
|
||||
font-size: 36px;
|
||||
}
|
||||
}
|
||||
|
||||
.cs_light {
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.cs_normal {
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.cs_medium {
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.cs_semibold {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.cs_bold {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.cs_extra_bold {
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.cs_black {
|
||||
font-weight: 900;
|
||||
}
|
||||
.cs_radius_2 {
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.cs_radius_3 {
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.cs_radius_4 {
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.cs_radius_5 {
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.cs_radius_7 {
|
||||
border-radius: 7px;
|
||||
}
|
||||
|
||||
.cs_radius_10 {
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.cs_radius_15 {
|
||||
border-radius: 15px;
|
||||
}
|
||||
|
||||
.cs_mp0 {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
hr {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: none;
|
||||
border-top: 1px solid rgba($secondary, 0.5);
|
||||
}
|
||||
|
||||
.cs_bg_filed {
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
.cs_vertical_middle {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
.cs_vertical_middle_in {
|
||||
flex: none;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.cs_center {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.cs_white_color {
|
||||
color: $white;
|
||||
}
|
||||
|
||||
.cs_primary_color {
|
||||
color: $primary;
|
||||
}
|
||||
|
||||
.cs_secondary_color {
|
||||
color: $secondary;
|
||||
}
|
||||
|
||||
.cs_accent_color {
|
||||
color: $accent;
|
||||
}
|
||||
.cs_gray_color {
|
||||
color: $gray;
|
||||
}
|
||||
.cs_gold_color {
|
||||
color: #ffc107;
|
||||
}
|
||||
|
||||
.cs_white_bg {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.cs_accent_bg {
|
||||
background-color: $accent;
|
||||
}
|
||||
.cs_gray_bg {
|
||||
background-color: $gray;
|
||||
}
|
||||
|
||||
.cs_gray_bg_3 {
|
||||
background-color: $border;
|
||||
}
|
||||
|
||||
.cs_primary_bg {
|
||||
background-color: $primary;
|
||||
}
|
||||
.cs_secondary_bg {
|
||||
background-color: $secondary;
|
||||
}
|
||||
|
||||
.cs_mp0 {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.cs_remove_overflow {
|
||||
overflow: visible;
|
||||
}
|
||||
.cs_gap_y_20 {
|
||||
gap: 20px 0;
|
||||
}
|
||||
.cs_gap_y_24 {
|
||||
gap: 24px 0;
|
||||
}
|
||||
.cs_gap_y_30 {
|
||||
gap: 30px 0;
|
||||
}
|
||||
.cs_gap_y_33 {
|
||||
gap: 33px 0;
|
||||
}
|
||||
.cs_gap_y_35 {
|
||||
gap: 35px 0;
|
||||
}
|
||||
.cs_gap_y_45 {
|
||||
gap: 45px 0;
|
||||
}
|
||||
.cs_gap_y_50 {
|
||||
gap: 50px 0;
|
||||
}
|
||||
.cs_gap_y_70 {
|
||||
gap: 70px 0;
|
||||
}
|
||||
.cs_gap_y_80 {
|
||||
gap: 80px 0;
|
||||
@media (max-width: 991px) {
|
||||
gap: 30px 0;
|
||||
}
|
||||
}
|
||||
.cs_has_gutter_80 {
|
||||
margin-left: -65px;
|
||||
margin-right: -65px;
|
||||
.col {
|
||||
padding: 0 65px;
|
||||
}
|
||||
}
|
||||
|
||||
.container-fluid {
|
||||
width: 100%;
|
||||
// max-width: 1920px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
padding-left: 75px;
|
||||
padding-right: 75px;
|
||||
@media (max-width: 1400px) {
|
||||
padding-left: 45px;
|
||||
padding-right: 45px;
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
padding-left: 25px;
|
||||
padding-right: 25px;
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
}
|
||||
}
|
||||
.cs_section_padding {
|
||||
padding: 0 75px;
|
||||
}
|
||||
.cs_rounded {
|
||||
border-radius: 50%;
|
||||
}
|
||||
.cs_new_items_slider {
|
||||
width: 95vw;
|
||||
@media (max-width: 575px) {
|
||||
width: calc(100% + 12px);
|
||||
}
|
||||
.cs_product.cs_style_1 {
|
||||
width: 424px;
|
||||
@media (max-width: 575px) {
|
||||
width: 320px;
|
||||
}
|
||||
@media (max-width: 340px) {
|
||||
width: 290px;
|
||||
}
|
||||
}
|
||||
}
|
||||
/*--------------------------------------
|
||||
common component styling
|
||||
--------------------------------------*/
|
||||
.cs_section_heading.cs_style_1 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
flex-wrap: wrap;
|
||||
row-gap: 30px;
|
||||
column-gap: 20px;
|
||||
@media (max-width: 575px) {
|
||||
br {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_section_heading.cs_style_2 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
@media (max-width: 991px) {
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
}
|
||||
.cs_hesction_heading_left {
|
||||
width: 59%;
|
||||
padding-right: 100px;
|
||||
@media (max-width: 1199px) {
|
||||
padding-right: 50px;
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
padding-right: 0px;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.cs_hesction_heading_right {
|
||||
width: 41%;
|
||||
@media (max-width: 991px) {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_zoom {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
|
||||
.cs_zoom_in {
|
||||
transition: all 0.4s ease;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
.cs_zoom_in {
|
||||
transform: scale(1.03);
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_scale i {
|
||||
color: $white;
|
||||
transition: all 0.3s ease;
|
||||
&:hover {
|
||||
transform: scale(1.3);
|
||||
}
|
||||
}
|
||||
.cs_form_field {
|
||||
width: 100%;
|
||||
outline: none;
|
||||
border: 1px solid $border;
|
||||
padding: 12px 23px;
|
||||
transition: all 0.3s ease;
|
||||
line-height: 1.5em;
|
||||
display: block;
|
||||
&:focus {
|
||||
border-color: rgba($accent, 0.2);
|
||||
}
|
||||
}
|
||||
|
||||
.form-check-input[type='checkbox'] {
|
||||
border-radius: 0;
|
||||
box-shadow: none;
|
||||
margin-right: 8px;
|
||||
}
|
||||
.form-check-input:checked[type='checkbox'] {
|
||||
border-color: $accent;
|
||||
background-color: $accent;
|
||||
}
|
||||
.breadcrumb-item + .breadcrumb-item::before {
|
||||
content: '>';
|
||||
}
|
||||
|
||||
/*-----------------------------------
|
||||
Start Review
|
||||
------------------------------------*/
|
||||
.cs_rating_percentage,
|
||||
.cs_rating {
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
&::before {
|
||||
content: '\f005\f005\f005\f005\f005';
|
||||
font-family: 'Font Awesome 6 Free';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
&.cs_size_sm {
|
||||
scale: 0.6;
|
||||
margin: 0 -31px;
|
||||
}
|
||||
}
|
||||
|
||||
.cs_rating {
|
||||
flex: none;
|
||||
width: 152px;
|
||||
height: 26px;
|
||||
position: relative;
|
||||
color: rgba($secondary, 0.5);
|
||||
font-size: 24px;
|
||||
letter-spacing: 4px;
|
||||
|
||||
&::before {
|
||||
font-weight: 900;
|
||||
}
|
||||
}
|
||||
|
||||
.cs_rating_percentage {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100%;
|
||||
color: $accent;
|
||||
&::before {
|
||||
font-weight: 900;
|
||||
}
|
||||
}
|
||||
|
||||
/*-----------------------
|
||||
End Review
|
||||
--------------------------*/
|
||||
/*-----------------------------------
|
||||
Start Progress Bar
|
||||
------------------------------------*/
|
||||
.cs_progress_percentage,
|
||||
.cs_progress {
|
||||
overflow: hidden;
|
||||
border-radius: 2px;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-color: rgba($color: $accent, $alpha: 0.2);
|
||||
}
|
||||
}
|
||||
|
||||
.cs_progress {
|
||||
flex: none;
|
||||
width: 152px;
|
||||
height: 12px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.cs_progress_percentage {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100%;
|
||||
|
||||
&::before {
|
||||
background-color: $accent;
|
||||
}
|
||||
}
|
||||
/*-----------------------------------
|
||||
End Progress Bar
|
||||
------------------------------------*/
|
||||
.cs_page_heading {
|
||||
padding: 90px 0;
|
||||
min-height: 300px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
.container {
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.cs_hero_overlay {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba(217, 217, 217, 0.1);
|
||||
backdrop-filter: blur(7.5px);
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
}
|
||||
.cs_partner_logo {
|
||||
text-align: center;
|
||||
img {
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
|
||||
.cs_sort_section {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
column-gap: 24px;
|
||||
padding-bottom: 6px;
|
||||
border-bottom: 1px solid $border;
|
||||
margin-bottom: 54px;
|
||||
@media (max-width: 1199px) {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
@media (max-width: 575px) {
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
}
|
||||
}
|
||||
.cs_filter_sort {
|
||||
display: grid;
|
||||
column-gap: 24px;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
@media (max-width: 767px) {
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
}
|
||||
.cs_sort_section {
|
||||
grid-column: span 3;
|
||||
}
|
||||
}
|
||||
.cs_sort_number {
|
||||
padding: 5px 0;
|
||||
@media (min-width: 1200px) {
|
||||
grid-column: span 2;
|
||||
}
|
||||
}
|
||||
.cs_sort_wrap {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
.cs_sort {
|
||||
flex: 1;
|
||||
select {
|
||||
border: none;
|
||||
padding: 6px 25px 6px 0;
|
||||
outline: none;
|
||||
color: $secondary;
|
||||
}
|
||||
}
|
||||
.cs_view {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 15px;
|
||||
.cs_viev_icon {
|
||||
display: flex;
|
||||
cursor: pointer;
|
||||
}
|
||||
.active {
|
||||
color: $primary;
|
||||
}
|
||||
}
|
||||
.cs_product_grid {
|
||||
display: grid;
|
||||
column-gap: 24px;
|
||||
row-gap: 45px;
|
||||
}
|
||||
.cs_product_grid_3 {
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
@media (max-width: 767px) {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
@media (max-width: 575px) {
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
}
|
||||
}
|
||||
.cs_product_grid_4 {
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
@media (max-width: 919px) {
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
@media (max-width: 575px) {
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
}
|
||||
}
|
||||
.cs_product_grid {
|
||||
&.cs_grid_view {
|
||||
.cs_action_btns,
|
||||
.cs_product_desc,
|
||||
.cs_single_product_review {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
&.cs_list_view {
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
row-gap: 50px;
|
||||
.cs_product.cs_style_1 {
|
||||
display: flex;
|
||||
@media (max-width: 767px) {
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
.cs_product_info {
|
||||
text-align: left !important;
|
||||
padding: 40px 0px 40px 24px;
|
||||
flex: 1;
|
||||
@media (max-width: 767px) {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
.cs_product_thumb {
|
||||
flex: none;
|
||||
width: 424px;
|
||||
@media (max-width: 1199px) {
|
||||
width: 380px;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
width: 100%;
|
||||
}
|
||||
.cs_cart_btn {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.cs_product_title {
|
||||
font-size: 28px;
|
||||
line-height: 1.352em;
|
||||
@media (max-width: 991px) {
|
||||
font-size: 30px;
|
||||
}
|
||||
}
|
||||
.cs_product.cs_style_1 {
|
||||
.cs_cart_badge {
|
||||
.cs_cart_icon {
|
||||
&:first-child {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_product_desc {
|
||||
margin-bottom: 44px;
|
||||
padding-top: 34px;
|
||||
border-top: 1px solid $border;
|
||||
@media (max-width: 767px) {
|
||||
margin-bottom: 22px;
|
||||
padding-top: 20px;
|
||||
}
|
||||
}
|
||||
.cs_product_price {
|
||||
font-size: 21px;
|
||||
font-weight: 600;
|
||||
color: $primary;
|
||||
line-height: 1.667em;
|
||||
padding-bottom: 21px;
|
||||
}
|
||||
}
|
||||
.cs_single_product_review {
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
}
|
||||
&.cs_product_grid_4 {
|
||||
&.cs_list_view {
|
||||
@media (min-width: 1700px) {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,766 @@
|
||||
/*--------------------------------------------------------------
|
||||
7. Header
|
||||
----------------------------------------------------------------*/
|
||||
.cs_site_header {
|
||||
position: relative;
|
||||
z-index: 101;
|
||||
}
|
||||
.cs_hero_search_heading {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 50px;
|
||||
h3 {
|
||||
font-size: 20px;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
.cs_header_search_wrap {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background-color: #fff;
|
||||
z-index: 10000;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
padding-top: 90px;
|
||||
transition: all 0.3s ease;
|
||||
&.active {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
}
|
||||
.cs_header_search_in {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
.cs_header_search_form {
|
||||
display: flex;
|
||||
flex: 1;
|
||||
position: relative;
|
||||
input {
|
||||
width: 100%;
|
||||
background-color: #fff;
|
||||
padding: 7px 50px 7px 0px;
|
||||
border: none;
|
||||
outline: none;
|
||||
border-bottom: 2px solid;
|
||||
font-size: 30px;
|
||||
line-height: 1.5em;
|
||||
font-weight: 500;
|
||||
&:focus {
|
||||
border-color: $accent;
|
||||
}
|
||||
}
|
||||
button {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
height: 60px;
|
||||
width: 24px;
|
||||
background-color: transparent;
|
||||
outline: none;
|
||||
border: none;
|
||||
font-size: 22px;
|
||||
padding: 0;
|
||||
&:hover {
|
||||
color: $accent;
|
||||
transform: scale(1.1);
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_header_search_close {
|
||||
border: none;
|
||||
outline: none;
|
||||
font-size: 24px;
|
||||
background-color: transparent;
|
||||
&:hover {
|
||||
color: red;
|
||||
}
|
||||
}
|
||||
.cs_header_action {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 20px;
|
||||
.cs_action_icon {
|
||||
background-color: transparent;
|
||||
padding: 0;
|
||||
border: none;
|
||||
transition: all 0.3s ease;
|
||||
display: flex;
|
||||
&:hover {
|
||||
color: $accent;
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_header_number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 7px;
|
||||
+ .cs_header_action {
|
||||
padding-left: 20px;
|
||||
margin-left: 20px;
|
||||
position: relative;
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
height: 18px;
|
||||
width: 1px;
|
||||
left: 0;
|
||||
top: 3px;
|
||||
background-color: $secondary;
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_text_slide {
|
||||
display: flex;
|
||||
line-height: 1.5em;
|
||||
> span {
|
||||
position: relative;
|
||||
display: flex;
|
||||
&:not(:last-child) {
|
||||
padding-right: 20px;
|
||||
margin-right: 20px;
|
||||
&::before {
|
||||
content: '';
|
||||
height: 16px;
|
||||
width: 1px;
|
||||
background-color: currentColor;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_text_slide_btn {
|
||||
display: inline-flex;
|
||||
position: relative;
|
||||
&::before {
|
||||
content: '';
|
||||
height: 1px;
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
bottom: 2px;
|
||||
left: 0;
|
||||
background-color: currentColor;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.cs_site-branding {
|
||||
display: inline-block;
|
||||
max-width: 180px;
|
||||
}
|
||||
.cs_site_header {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
left: 0;
|
||||
top: 0px;
|
||||
transition: all 0.4s ease;
|
||||
}
|
||||
.cs_site_header.cs_style_1 {
|
||||
.cs_main_header_in,
|
||||
.cs_top_header_in {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
position: relative;
|
||||
}
|
||||
.cs_main_header_in {
|
||||
height: 80px;
|
||||
}
|
||||
.cs_top_header_in {
|
||||
height: 60px;
|
||||
overflow: hidden;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
.cs_top_header {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.cs_main_header_right {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
@media (max-width: 1199px) {
|
||||
padding-right: 50px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
.cs_btn.cs_style_1 {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.cs_site_header.cs_style_1 {
|
||||
&.cs_sticky_active {
|
||||
background-color: $white;
|
||||
box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
|
||||
}
|
||||
|
||||
.cs_action_box {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
.cs_action_value {
|
||||
margin-left: 15px;
|
||||
}
|
||||
> * {
|
||||
&:not(:last-child) {
|
||||
margin-right: 35px;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.cs_color_1 {
|
||||
.cs_header_action {
|
||||
color: #fff;
|
||||
}
|
||||
.cs_nav_list {
|
||||
> li > a {
|
||||
color: $white;
|
||||
&:hover {
|
||||
color: $accent;
|
||||
&::after {
|
||||
border-color: $accent;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&.cs_gescout_show {
|
||||
background-color: $primary;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1199px) {
|
||||
.cs_main_header .cs_container-fluid_fluide {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.cs_site_header.cs_style_1 {
|
||||
.cs_nav {
|
||||
display: flex;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.cs_nav ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.cs_sticky_header {
|
||||
position: fixed !important;
|
||||
width: 100%;
|
||||
z-index: 999;
|
||||
}
|
||||
.cs_gescout_sticky {
|
||||
position: fixed !important;
|
||||
top: -110px;
|
||||
opacity: 0;
|
||||
transition: all 0.4s ease;
|
||||
background-color: $white;
|
||||
&.cs_site_header.cs_style_1 .cs_top_header_in {
|
||||
height: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.cs_gescout_show {
|
||||
top: 0 !important;
|
||||
opacity: 1;
|
||||
box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
|
||||
}
|
||||
|
||||
.cs_site_branding {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1200px) {
|
||||
.cs_main_header {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.cs_main_header_center,
|
||||
.cs_top_header_center {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
.cs_site_header.cs_style_1 {
|
||||
.cs_main_header_center {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
max-width: calc(100% - 300px);
|
||||
}
|
||||
.cs_main_header_left {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 50px;
|
||||
}
|
||||
}
|
||||
|
||||
.cs_nav {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 100%;
|
||||
line-height: 1.6em;
|
||||
|
||||
.cs_nav_list {
|
||||
display: flex !important;
|
||||
flex-wrap: wrap;
|
||||
height: inherit;
|
||||
|
||||
> li {
|
||||
margin-right: 40px;
|
||||
height: inherit;
|
||||
|
||||
&:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
> a {
|
||||
padding: 10px 0;
|
||||
display: inline-flex;
|
||||
position: relative;
|
||||
height: inherit;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
> ul {
|
||||
left: 0;
|
||||
top: calc(100% + 15px);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
> ul {
|
||||
top: 100%;
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
transition: all 0.4s ease;
|
||||
}
|
||||
}
|
||||
&.menu-item-has-children {
|
||||
> a {
|
||||
position: relative;
|
||||
&::after {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
height: 6px;
|
||||
width: 6px;
|
||||
border: 2px solid currentColor;
|
||||
transform: rotate(45deg);
|
||||
border-left: 0;
|
||||
border-top: 0;
|
||||
margin-left: 6px;
|
||||
position: relative;
|
||||
top: -1px;
|
||||
border-radius: 0px 0px 2px 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
li:not(.cs_mega_menu) {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
ul {
|
||||
width: 260px;
|
||||
background-color: $primary;
|
||||
color: $white;
|
||||
position: absolute;
|
||||
padding: 10px 0;
|
||||
z-index: 100;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
display: block !important;
|
||||
border-radius: 0 0 3px 3px;
|
||||
transition: all 0.1s ease;
|
||||
|
||||
li {
|
||||
&:hover {
|
||||
ul {
|
||||
top: 0px;
|
||||
}
|
||||
|
||||
> ul {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
transition: all 0.4s ease;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
display: block;
|
||||
line-height: inherit;
|
||||
padding: 10px 20px;
|
||||
}
|
||||
|
||||
ul {
|
||||
top: 15px;
|
||||
left: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_menu_toggle,
|
||||
.cs_menu_dropdown_toggle {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.cs_nav .cs_nav_list {
|
||||
.cs_mega_menu {
|
||||
position: initial;
|
||||
}
|
||||
.cs_mega_wrapper {
|
||||
width: 1320px !important;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
display: flex !important;
|
||||
position: absolute;
|
||||
padding: 5px 15px 10px;
|
||||
|
||||
a {
|
||||
padding: 7px 10px;
|
||||
}
|
||||
|
||||
> li {
|
||||
flex: 1;
|
||||
padding: 10px 0;
|
||||
|
||||
> a {
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
pointer-events: none;
|
||||
&:hover {
|
||||
background-color: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
position: initial;
|
||||
border: none;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
box-shadow: none;
|
||||
background-color: transparent;
|
||||
a {
|
||||
transition: all 0.4s ease;
|
||||
&:hover {
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.cs_mega_menu {
|
||||
&:hover {
|
||||
.cs_mega_wrapper {
|
||||
li ul {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.cs_nav
|
||||
.cs_nav_list
|
||||
> li
|
||||
ul:not(.cs_mega_wrapper)
|
||||
.menu-item-has-children
|
||||
> a {
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
.cs_header_cart {
|
||||
position: relative;
|
||||
}
|
||||
@media screen and (max-width: 1400px) {
|
||||
.cs_nav .cs_nav_list .cs_mega_wrapper {
|
||||
width: 1116px !important;
|
||||
}
|
||||
|
||||
.cs_site-branding {
|
||||
max-width: 190px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1199px) {
|
||||
.cs_nav .cs_nav_list .cs_mega_wrapper {
|
||||
width: 100% !important;
|
||||
}
|
||||
.cs_menu_dropdown_toggle {
|
||||
position: absolute;
|
||||
height: 40px;
|
||||
width: 100%;
|
||||
top: 0;
|
||||
left: 0px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
padding: 23px 18px;
|
||||
cursor: pointer;
|
||||
z-index: 3;
|
||||
|
||||
span {
|
||||
display: block;
|
||||
position: relative;
|
||||
height: 10px;
|
||||
width: 10px;
|
||||
&:before,
|
||||
&:after {
|
||||
content: '';
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
height: 2px;
|
||||
width: 10px;
|
||||
background-color: currentColor;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
&:before {
|
||||
transform: translate(-50%, -50%) rotate(90deg);
|
||||
}
|
||||
}
|
||||
|
||||
&.active {
|
||||
span {
|
||||
&:before {
|
||||
transform: translate(-50%, -50%) rotate(0deg);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.menu-item-has-children {
|
||||
.menu-item-has-children {
|
||||
.cs_menu_dropdown_toggle {
|
||||
padding: 20px 18px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_site_branding {
|
||||
position: relative;
|
||||
z-index: 101;
|
||||
}
|
||||
.cs_nav {
|
||||
.cs_nav_list {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
overflow: auto;
|
||||
line-height: 1.6em;
|
||||
display: none;
|
||||
background-color: #fff;
|
||||
border-top: 1px solid $border;
|
||||
padding: 10px 0;
|
||||
ul {
|
||||
padding-left: 15px;
|
||||
display: none;
|
||||
}
|
||||
|
||||
a {
|
||||
display: block;
|
||||
padding: 12px 15px;
|
||||
line-height: 16px;
|
||||
}
|
||||
> li {
|
||||
> a {
|
||||
font-size: 18px;
|
||||
line-height: 22px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.menu-item-has-children {
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
.cs_animo_links > li > a {
|
||||
.cs_animo_text {
|
||||
text-shadow: 0 32px 0 currentColor;
|
||||
}
|
||||
&:hover span {
|
||||
transform: translateY(-32px);
|
||||
}
|
||||
}
|
||||
|
||||
/*Mobile Menu Button*/
|
||||
.cs_menu_toggle {
|
||||
display: inline-block;
|
||||
width: 30px;
|
||||
height: 27px;
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
top: 27px;
|
||||
right: 30px;
|
||||
|
||||
span,
|
||||
span:before,
|
||||
span:after {
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
background-color: currentColor;
|
||||
display: block;
|
||||
}
|
||||
|
||||
span {
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
top: 12px;
|
||||
transition-duration: 0s;
|
||||
transition-delay: 0.2s;
|
||||
|
||||
&:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
margin-top: -9px;
|
||||
transition-property: margin, transform;
|
||||
transition-duration: 0.2s;
|
||||
transition-delay: 0.2s, 0s;
|
||||
}
|
||||
|
||||
&:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
margin-top: 9px;
|
||||
transition-property: margin, transform;
|
||||
transition-duration: 0.2s;
|
||||
transition-delay: 0.2s, 0s;
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_site_header.cs_style_1.cs_color_1 {
|
||||
.cs_nav_list {
|
||||
background-color: $primary;
|
||||
color: $white;
|
||||
}
|
||||
|
||||
.cs_menu_toggle {
|
||||
color: $white;
|
||||
}
|
||||
}
|
||||
.cs_site_header.cs_style_1 .cs_menu_toggle {
|
||||
top: 50%;
|
||||
right: 0px;
|
||||
margin-top: -13px;
|
||||
}
|
||||
|
||||
.cs_toggle_active {
|
||||
span {
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
transition-delay: 0.2s;
|
||||
|
||||
&:before {
|
||||
margin-top: 0;
|
||||
transform: rotate(45deg);
|
||||
transition-delay: 0s, 0.2s;
|
||||
}
|
||||
|
||||
&:after {
|
||||
margin-top: 0;
|
||||
transform: rotate(-45deg);
|
||||
transition-delay: 0s, 0.2s;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.cs_nav .cs_nav_list a {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.cs_site_header.cs_style_1 .cs_main_header_in {
|
||||
height: 80px;
|
||||
}
|
||||
|
||||
.cs_site_header .current-menu-item > a:before {
|
||||
display: none;
|
||||
}
|
||||
.cs_site_header.cs_style_1 .cs_main_header_center {
|
||||
.cs_site_branding {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
}
|
||||
.cs_site_header.cs_style_1 {
|
||||
top: 0;
|
||||
.container {
|
||||
max-width: 100%;
|
||||
padding-left: 25px;
|
||||
padding-right: 25px;
|
||||
}
|
||||
.cs_nav {
|
||||
.cs_nav_list {
|
||||
width: calc(100% + 50px);
|
||||
margin-left: -25px;
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
@media (max-width: 991px) {
|
||||
width: calc(100% + 30px);
|
||||
margin-left: -15px;
|
||||
padding-left: 0px;
|
||||
padding-right: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.cs_has_main_nav {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 991px) {
|
||||
.cs_site_header.cs_style_1 {
|
||||
.container {
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
}
|
||||
}
|
||||
.cs_site_header .cs_container-fluid_fluide {
|
||||
max-width: 100%;
|
||||
}
|
||||
.cs_site_header.cs_style_1 {
|
||||
.cs_action_box > *:not(:last-child) {
|
||||
margin-right: 25px;
|
||||
}
|
||||
}
|
||||
.cs_site_header.cs_style_1 .cs_top_header {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: 575px) {
|
||||
.cs_site-branding {
|
||||
max-width: 150px;
|
||||
}
|
||||
.cs_header_number {
|
||||
display: none;
|
||||
}
|
||||
.cs_header_number + .cs_header_action {
|
||||
padding-left: 0;
|
||||
margin-left: 0;
|
||||
&:before {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,72 @@
|
||||
/*--------------------------------------------------------------
|
||||
11. IconBox
|
||||
----------------------------------------------------------------*/
|
||||
.cs_iconbox.cs_style_1 {
|
||||
padding-left: 70px;
|
||||
.cs_iconbox_icon {
|
||||
width: 55px;
|
||||
height: 55px;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 7px;
|
||||
transition: all 0.5s cubic-bezier(0.28, 1.84, 0.55, -0.11);
|
||||
}
|
||||
.cs_iconbox_title {
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
&:hover {
|
||||
.cs_iconbox_icon {
|
||||
color: $accent;
|
||||
transform: scale(1.1);
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_iconbox.cs_style_2 {
|
||||
background-color: $white;
|
||||
box-shadow: 0px 0px 10px 1px rgba(160, 160, 160, 0.25);
|
||||
padding: 35px 35px 30px;
|
||||
transition: all 0.5s ease;
|
||||
@media (max-width: 1199px) {
|
||||
padding: 35px 25px 30px;
|
||||
}
|
||||
.cs_iconbox_icon {
|
||||
width: 76px;
|
||||
height: 52px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.cs_iconbox_title {
|
||||
margin-bottom: 11px;
|
||||
}
|
||||
&:hover {
|
||||
transform: scale(1.03) translateY(6px);
|
||||
}
|
||||
}
|
||||
.cs_iconbox.cs_style_3 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 25px;
|
||||
@media (max-width: 400px) {
|
||||
gap: 14px;
|
||||
}
|
||||
@media (max-width: 350px) {
|
||||
br {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.cs_iconbox_icon {
|
||||
width: 88px;
|
||||
height: 88px;
|
||||
border: 1px solid $primary;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex: none;
|
||||
}
|
||||
.cs_iconbox_title {
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.cs_iconbox_info {
|
||||
flex: 1;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
/*--------------------------------------------------------------
|
||||
9. Instagram
|
||||
----------------------------------------------------------------*/
|
||||
.cs_instagram {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
@media (max-width: 767px) {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.cs_instagram_item {
|
||||
flex: 1;
|
||||
overflow: hidden;
|
||||
&:hover {
|
||||
.cs_instagram_overlay {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
flex: none;
|
||||
width: 33.333333%;
|
||||
}
|
||||
}
|
||||
.cs_instagram_thumb {
|
||||
padding-top: 100%;
|
||||
position: relative;
|
||||
img {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
.cs_instagram_overlay {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba(252, 95, 73, 0.1);
|
||||
backdrop-filter: blur(5px);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
left: 0;
|
||||
top: 0;
|
||||
color: $primary;
|
||||
font-size: 31px;
|
||||
opacity: 0;
|
||||
z-index: 2;
|
||||
transition: all 0.4s ease;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,263 @@
|
||||
/*--------------------------------------------------------------
|
||||
8. Isotope
|
||||
----------------------------------------------------------------*/
|
||||
.cs_isotope_filter.cs_style_1 {
|
||||
ul {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-around;
|
||||
flex-wrap: wrap;
|
||||
gap: 25px;
|
||||
border: 1px solid $border;
|
||||
border-right-width: 0;
|
||||
border-left-width: 0;
|
||||
margin-bottom: 50px;
|
||||
padding: 12px 0;
|
||||
@media (max-width: 991px) {
|
||||
margin-bottom: 35px;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
justify-content: center;
|
||||
gap: 5px 30px;
|
||||
}
|
||||
}
|
||||
|
||||
li {
|
||||
&:hover,
|
||||
&.active {
|
||||
a {
|
||||
color: $primary;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.cs_type_1 {
|
||||
ul {
|
||||
padding: 12px;
|
||||
border-left-width: 1px;
|
||||
border-right-width: 1px;
|
||||
border-radius: 1.6em;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
8. Isotopee
|
||||
----------------------------------------------------------------*/
|
||||
.cs_isotope {
|
||||
transition: all 0.4s ease;
|
||||
}
|
||||
|
||||
.cs_isotope.cs_has_gutter_24 {
|
||||
margin-left: -12px;
|
||||
margin-right: -12px;
|
||||
margin-bottom: -50px;
|
||||
.cs_isotope_item {
|
||||
padding: 0 12px;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
margin-bottom: -30px;
|
||||
.cs_isotope_item {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.cs_isotope.cs_has_gutter_80 {
|
||||
margin-left: -40px;
|
||||
margin-right: -40px;
|
||||
margin-bottom: -80px;
|
||||
|
||||
.cs_isotope_item {
|
||||
padding: 0 40px;
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
}
|
||||
|
||||
.cs_isotope.cs_has_gutter_40 {
|
||||
margin-left: -20px;
|
||||
margin-right: -20px;
|
||||
margin-bottom: -30px;
|
||||
|
||||
.cs_isotope_item {
|
||||
padding: 0 20px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
.cs_isotope.cs_has_gutter_100 {
|
||||
margin-left: -50px;
|
||||
margin-right: -50px;
|
||||
margin-bottom: -40px;
|
||||
|
||||
.cs_isotope_item {
|
||||
padding: 0 50px;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
.cs_isotope_col_6 .cs_grid_sizer,
|
||||
.cs_isotope_col_6 .cs_isotope_item {
|
||||
width: 16.666667%;
|
||||
}
|
||||
|
||||
.cs_isotope_col_5 .cs_grid_sizer,
|
||||
.cs_isotope_col_5 .cs_isotope_item {
|
||||
width: 20%;
|
||||
}
|
||||
|
||||
.cs_isotope_col_4 .cs_grid_sizer,
|
||||
.cs_isotope_col_4 .cs_isotope_item {
|
||||
width: 25%;
|
||||
}
|
||||
|
||||
.cs_isotope_col_3 .cs_grid_sizer,
|
||||
.cs_isotope_col_3 .cs_isotope_item {
|
||||
width: 33.333333%;
|
||||
}
|
||||
|
||||
.cs_isotope_col_2 .cs_grid_sizer,
|
||||
.cs_isotope_col_2 .cs_isotope_item {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.cs_isotope_col_1 .cs_grid_sizer,
|
||||
.cs_isotope_col_1 .cs_isotope_item {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.cs_grid_sizer {
|
||||
width: 33.333333%;
|
||||
}
|
||||
|
||||
.cs_isotope_col_5 .cs-w20,
|
||||
.cs_isotope_col_4 .cs-w20,
|
||||
.cs_isotope_col_3 .cs-w20,
|
||||
.cs_isotope_col_2 .cs-w20,
|
||||
.cs_isotope_col_1 .cs-w20 {
|
||||
width: 20%;
|
||||
}
|
||||
|
||||
.cs_isotope_col_5 .cs-w25,
|
||||
.cs_isotope_col_4 .cs-w25,
|
||||
.cs_isotope_col_3 .cs-w25,
|
||||
.cs_isotope_col_2 .cs-w25,
|
||||
.cs_isotope_col_1 .cs-w25 {
|
||||
width: 25%;
|
||||
}
|
||||
|
||||
.cs_isotope_col_5 .cs-w33,
|
||||
.cs_isotope_col_4 .cs-w33,
|
||||
.cs_isotope_col_3 .cs-w33,
|
||||
.cs_isotope_col_2 .cs-w33,
|
||||
.cs_isotope_col_1 .cs-w33 {
|
||||
width: 33.333333%;
|
||||
}
|
||||
|
||||
.cs_isotope_col_5 .cs-w50,
|
||||
.cs_isotope_col_4 .cs-w50,
|
||||
.cs_isotope_col_3 .cs-w50,
|
||||
.cs_isotope_col_2 .cs-w50,
|
||||
.cs_isotope_col_1 .cs-w50 {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.cs_isotope_col_5 .cs-w66,
|
||||
.cs_isotope_col_4 .cs-w66,
|
||||
.cs_isotope_col_3 .cs-w66,
|
||||
.cs_isotope_col_2 .cs-w66,
|
||||
.cs_isotope_col_1 .cs-w66 {
|
||||
width: 66.666666%;
|
||||
}
|
||||
|
||||
.cs_isotope_col_5 .cs-w100,
|
||||
.cs_isotope_col_4 .cs-w100,
|
||||
.cs_isotope_col_3 .cs-w100,
|
||||
.cs_isotope_col_2 .cs-w100,
|
||||
.cs_isotope_col_1 .cs-w100 {
|
||||
width: 100%;
|
||||
}
|
||||
@media screen and (max-width: 1199px) {
|
||||
.cs_isotope.cs_has_gutter_100 .cs_isotope_item {
|
||||
padding: 0 15px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.cs_isotope.cs_has_gutter_100 {
|
||||
margin-left: -15px;
|
||||
margin-right: -15px;
|
||||
margin-bottom: -30px;
|
||||
}
|
||||
|
||||
.cs_isotope.cs_has_gutter_80 {
|
||||
margin-left: -12px;
|
||||
margin-right: -12px;
|
||||
margin-bottom: -25px;
|
||||
|
||||
.cs_isotope_item {
|
||||
padding: 0 12px;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
}
|
||||
|
||||
.cs_isotope_col_4 .cs_grid_sizer,
|
||||
.cs_isotope_col_4 .cs_isotope_item {
|
||||
width: 33.333333%;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 991px) {
|
||||
.cs_isotope_col_4 .cs_grid_sizer,
|
||||
.cs_isotope_col_4 .cs_isotope_item {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.cs_isotope_col_4 .cs-w50 {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.cs_isotope_col_3 .cs_grid_sizer,
|
||||
.cs_isotope_col_3 .cs_isotope_item {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.cs_isotope_col_2 .cs_grid_sizer,
|
||||
.cs_isotope_col_2 .cs_isotope_item {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 767px) {
|
||||
.cs_isotope_col_5 .cs-w50,
|
||||
.cs_isotope_col_4 .cs-w50,
|
||||
.cs_isotope_col_3 .cs-w50,
|
||||
.cs_isotope_col_2 .cs-w50,
|
||||
.cs_isotope_col_1 .cs-w50,
|
||||
.cs_isotope_col_5 .cs-w66,
|
||||
.cs_isotope_col_4 .cs-w66,
|
||||
.cs_isotope_col_3 .cs-w66,
|
||||
.cs_isotope_col_2 .cs-w66,
|
||||
.cs_isotope_col_1 .cs-w66 {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.cs_isotope_col_5 .cs_grid_sizer,
|
||||
.cs_isotope_col_5 .cs_isotope_item {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.cs_isotope_col_4 .cs_grid_sizer,
|
||||
.cs_isotope_col_4 .cs_isotope_item {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.cs_isotope_col_3 .cs_grid_sizer,
|
||||
.cs_isotope_col_3 .cs_isotope_item {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.cs_isotope_col_2 .cs_grid_sizer,
|
||||
.cs_isotope_col_2 .cs_isotope_item {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
/*--------------------------------------------------------------
|
||||
13. Moving Text
|
||||
----------------------------------------------------------------*/
|
||||
.cs_moving_text_wrap.cs_style_1 {
|
||||
padding: 50px 0;
|
||||
.cs_moving_text_in {
|
||||
display: flex;
|
||||
flex-wrap: nowrap;
|
||||
white-space: nowrap;
|
||||
min-width: 100%;
|
||||
.cs_moving_text {
|
||||
animation: slide-left 30s linear infinite;
|
||||
}
|
||||
svg {
|
||||
margin: 0 40px;
|
||||
}
|
||||
}
|
||||
&:hover {
|
||||
.cs_moving_text {
|
||||
animation-play-state: paused;
|
||||
}
|
||||
}
|
||||
}
|
||||
@keyframes slide-left {
|
||||
0% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
100% {
|
||||
transform: translateX(-100%);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,146 @@
|
||||
/*--------------------------------------------------------------
|
||||
15. Newsletter
|
||||
----------------------------------------------------------------*/
|
||||
.cs_newsletter.cs_style_1 {
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
.cs_newsletter_shape {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #fc5f49;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 39%;
|
||||
transform: skew(-38deg);
|
||||
@media (max-width: 1400px) {
|
||||
transform: skew(-32deg);
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
left: 30%;
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
left: 0%;
|
||||
transform: initial;
|
||||
}
|
||||
}
|
||||
.cs_newsletter_thumb {
|
||||
position: absolute;
|
||||
background-color: $gray;
|
||||
height: 100%;
|
||||
width: 54%;
|
||||
@media (max-width: 991px) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.cs_newsletter_text {
|
||||
padding: 120px 90px 140px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
max-width: 700px;
|
||||
@media (max-width: 1400px) {
|
||||
padding: 120px 60px 140px;
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
padding: 70px 30px 80px;
|
||||
text-align: center;
|
||||
max-width: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.cs_newsletter_title {
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
.cs_newsletter_subtitle {
|
||||
margin-bottom: 34px;
|
||||
}
|
||||
.cs_newsletter_form {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
@media (max-width: 991px) {
|
||||
max-width: 450px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
@media (max-width: 450px) {
|
||||
flex-direction: column;
|
||||
.cs_btn {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_form_field {
|
||||
border: none;
|
||||
outline: none;
|
||||
padding: 12px 20px;
|
||||
border-radius: 0;
|
||||
@media (max-width: 450px) {
|
||||
padding: 9px 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.cs_newsletter.cs_style_2 {
|
||||
padding: 120px 60px 140px;
|
||||
@media (max-width: 991px) {
|
||||
padding: 70px 30px 80px;
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
padding: 70px 20px 80px;
|
||||
}
|
||||
.cs_newsletter_text {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
.cs_newsletter_form {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
gap: 10px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
@media (max-width: 575px) {
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
.cs_btn.cs_style_1 {
|
||||
display: inline-block;
|
||||
background-color: $accent;
|
||||
color: $white;
|
||||
border-color: $accent;
|
||||
&:hover {
|
||||
background-color: transparent;
|
||||
border-color: $white;
|
||||
}
|
||||
}
|
||||
.cs_newsletter_title {
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
.cs_newsletter_subtitle {
|
||||
margin-bottom: 34px;
|
||||
}
|
||||
.cs_form_field {
|
||||
border: none;
|
||||
outline: none;
|
||||
padding: 12px 20px;
|
||||
border-radius: 0;
|
||||
}
|
||||
.cs_newsletter_shape1 {
|
||||
bottom: 0;
|
||||
right: 3%;
|
||||
@media (max-width: 991px) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.cs_newsletter_shape2 {
|
||||
top: 0;
|
||||
left: 3%;
|
||||
transform: translate(5%, 0%) rotate(180deg);
|
||||
@media (max-width: 991px) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,125 @@
|
||||
/*--------------------------------------------------------------
|
||||
2. Preloader
|
||||
----------------------------------------------------------------*/
|
||||
.cs_perloader {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
z-index: 999999;
|
||||
background: #ffefee;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.cs_perloader_text {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
bottom: 30px;
|
||||
color: $primary;
|
||||
letter-spacing: 2px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.cs_cart_animation {
|
||||
display: block;
|
||||
width: 10em;
|
||||
height: 10em;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
.cs_cart_lines,
|
||||
.cs_cart_top,
|
||||
.cs_cart_wheel_1,
|
||||
.cs_cart_wheel_2,
|
||||
.cs_cart_wheel_stroke {
|
||||
animation: cartLines 2s ease-in-out infinite;
|
||||
}
|
||||
.cs_cart_lines {
|
||||
stroke: $accent;
|
||||
}
|
||||
.cs_cart_top {
|
||||
animation-name: cartTop;
|
||||
}
|
||||
.cs_cart_wheel_1 {
|
||||
animation-name: cartWheel1;
|
||||
transform: rotate(-0.25turn);
|
||||
transform-origin: 43px 111px;
|
||||
}
|
||||
.cs_cart_wheel_2 {
|
||||
animation-name: cartWheel2;
|
||||
transform: rotate(0.25turn);
|
||||
transform-origin: 102px 111px;
|
||||
}
|
||||
.cs_cart_wheel_stroke {
|
||||
animation-name: cartWheelStroke;
|
||||
}
|
||||
.cs_cart_track {
|
||||
stroke: rgba($accent, 0.2);
|
||||
transition: stroke 0.3s;
|
||||
}
|
||||
|
||||
/* Animations */
|
||||
@keyframes msg {
|
||||
from {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
99.9% {
|
||||
opacity: 0;
|
||||
visibility: visible;
|
||||
}
|
||||
to {
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
@keyframes cartLines {
|
||||
from,
|
||||
to {
|
||||
opacity: 0;
|
||||
}
|
||||
8%,
|
||||
92% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@keyframes cartTop {
|
||||
from {
|
||||
stroke-dashoffset: -338;
|
||||
}
|
||||
50% {
|
||||
stroke-dashoffset: 0;
|
||||
}
|
||||
to {
|
||||
stroke-dashoffset: 338;
|
||||
}
|
||||
}
|
||||
@keyframes cartWheel1 {
|
||||
from {
|
||||
transform: rotate(-0.25turn);
|
||||
}
|
||||
to {
|
||||
transform: rotate(2.75turn);
|
||||
}
|
||||
}
|
||||
@keyframes cartWheel2 {
|
||||
from {
|
||||
transform: rotate(0.25turn);
|
||||
}
|
||||
to {
|
||||
transform: rotate(3.25turn);
|
||||
}
|
||||
}
|
||||
@keyframes cartWheelStroke {
|
||||
from,
|
||||
to {
|
||||
stroke-dashoffset: 81.68;
|
||||
}
|
||||
50% {
|
||||
stroke-dashoffset: 40.84;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,91 @@
|
||||
/*--------------------------------------------------------------
|
||||
14. Sidebar
|
||||
----------------------------------------------------------------*/
|
||||
.cs_search_box {
|
||||
position: relative;
|
||||
border-radius: 0;
|
||||
input {
|
||||
width: 100%;
|
||||
border: none;
|
||||
outline: none;
|
||||
padding: 10px 40px 10px 15px;
|
||||
border: 1px solid $border;
|
||||
transition: all 0.3s ease;
|
||||
&::placeholder {
|
||||
color: $secondary;
|
||||
font-size: 14px;
|
||||
line-height: 1.572em;
|
||||
}
|
||||
&:focus {
|
||||
border-color: $accent;
|
||||
}
|
||||
}
|
||||
|
||||
.cs_search_icon {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
right: 12px;
|
||||
cursor: pointer;
|
||||
|
||||
i {
|
||||
transition: all 1s cubic-bezier(0.28, 1.84, 0.55, -0.11);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
color: $accent;
|
||||
i {
|
||||
transform: scale(1.2);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_sidebar_widget_title {
|
||||
margin-bottom: 19px;
|
||||
}
|
||||
.cs_category_list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
li {
|
||||
&:not(:last-child) {
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_tags {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
a {
|
||||
border: 1px solid rgba(94, 94, 94, 0.2);
|
||||
display: inline-block;
|
||||
padding: 4px 15px;
|
||||
&:hover {
|
||||
border-color: $accent;
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_sidebar_widget {
|
||||
&:not(:last-child) {
|
||||
padding-bottom: 40px;
|
||||
margin-bottom: 40px;
|
||||
border-bottom: 1px solid rgba(94, 94, 94, 0.2);
|
||||
}
|
||||
}
|
||||
.cs_sidebar_widget.cs_search {
|
||||
border: none;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
.cs_blog_sidebar {
|
||||
padding-left: 100px;
|
||||
@media (max-width: 1400px) {
|
||||
padding-left: 60px;
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
padding-left: 40px;
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
padding-left: 0px;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,260 @@
|
||||
/*--------------------------------------------------------------
|
||||
5. Slider
|
||||
----------------------------------------------------------------*/
|
||||
.slick-slide > div {
|
||||
display: flex;
|
||||
}
|
||||
.slick_slide_in {
|
||||
width: 100%;
|
||||
}
|
||||
.cs_slider {
|
||||
.cs_slider_wrapper {
|
||||
margin-left: -12px;
|
||||
margin-right: -12px;
|
||||
}
|
||||
.slick_slide_in {
|
||||
padding-left: 12px;
|
||||
padding-right: 12px;
|
||||
}
|
||||
}
|
||||
.cs_pagination.cs_style_1 {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
left: 75px;
|
||||
bottom: 70px;
|
||||
@media (max-width: 1400px) {
|
||||
bottom: 40px;
|
||||
left: 45px;
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
left: 25px;
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
left: 15px;
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
left: 15px;
|
||||
bottom: 80px;
|
||||
}
|
||||
.slick-dots {
|
||||
margin-top: 50px;
|
||||
}
|
||||
}
|
||||
.cs_pagination.cs_style_1,
|
||||
.cs_pagination.cs_style_2 {
|
||||
.slick-dots {
|
||||
list-style: none;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 15px;
|
||||
padding: 0;
|
||||
margin-bottom: 0;
|
||||
|
||||
button {
|
||||
padding: 0;
|
||||
opacity: 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
li {
|
||||
overflow: hidden;
|
||||
border: none;
|
||||
width: 19px;
|
||||
height: 19px;
|
||||
border-radius: 50%;
|
||||
background-color: transparent;
|
||||
font-size: 0px;
|
||||
position: relative;
|
||||
padding: 0;
|
||||
flex: none;
|
||||
cursor: pointer;
|
||||
transition: all 0.4s ease;
|
||||
|
||||
&::after {
|
||||
content: '';
|
||||
width: 7px;
|
||||
height: 7px;
|
||||
background-color: rgba($secondary, 0.5);
|
||||
border-radius: 50%;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
transition: all 0.4s ease;
|
||||
}
|
||||
}
|
||||
|
||||
.slick-active {
|
||||
border: 1px solid $primary;
|
||||
&::after {
|
||||
background-color: $primary;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_pagination.cs_style_2 {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
.slick-dots {
|
||||
margin-top: 35px;
|
||||
}
|
||||
}
|
||||
.cs_pagingInfo.cs_style_1 {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
/*-----------------------------------
|
||||
Slider arrow design
|
||||
-------------------------------------*/
|
||||
.cs_slider_arrows.cs_style_1 {
|
||||
.cs_slider_arrow {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
cursor: pointer;
|
||||
&:hover {
|
||||
&:hover {
|
||||
color: $primary;
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_right_arrow {
|
||||
right: calc((100vw - 1300px) / 2 / 2);
|
||||
margin-right: -18px;
|
||||
@media (max-width: 1400px) {
|
||||
right: calc((100vw - 1140px) / 2 / 2);
|
||||
margin-right: -13px;
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
right: calc((100vw - 960px) / 2 / 2);
|
||||
margin-right: -13px;
|
||||
}
|
||||
@media (max-width: 1050px) {
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
.cs_left_arrow {
|
||||
left: calc((100vw - 1300px) / 2 / 2);
|
||||
margin-left: -18px;
|
||||
@media (max-width: 1400px) {
|
||||
left: calc((100vw - 1140px) / 2 / 2);
|
||||
margin-left: -13px;
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
left: calc((100vw - 960px) / 2 / 2);
|
||||
margin-left: -13px;
|
||||
}
|
||||
@media (max-width: 1050px) {
|
||||
margin-left: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_slider_arrows.cs_style_2 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 15px;
|
||||
.cs_slider_arrow {
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
border: 1px solid $secondary;
|
||||
color: $secondary;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
&:hover {
|
||||
color: #fff;
|
||||
background-color: $accent;
|
||||
border-color: $accent;
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_slider_arrows.cs_style_3 {
|
||||
.cs_slider_arrow {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
transition: all 0.3s ease;
|
||||
cursor: pointer;
|
||||
&:hover {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
.cs_left_arrow {
|
||||
left: 50px;
|
||||
}
|
||||
.cs_right_arrow {
|
||||
right: 50px;
|
||||
}
|
||||
}
|
||||
.cs_hover_arrow {
|
||||
.cs_slider_arrows.cs_style_3 {
|
||||
opacity: 0;
|
||||
}
|
||||
&:hover {
|
||||
.cs_slider_arrows.cs_style_3 {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
.cs_hide_mobile {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
.cs_hide_desktop {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
.slick-slide {
|
||||
.cs_hero_text {
|
||||
position: relative;
|
||||
left: 60px;
|
||||
opacity: 0;
|
||||
transition: all 0.7s ease;
|
||||
}
|
||||
&.slick-active {
|
||||
.cs_hero_text {
|
||||
left: 0px;
|
||||
opacity: 1;
|
||||
transition-delay: 0.5s;
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_slides_numbers {
|
||||
position: absolute;
|
||||
bottom: 12%;
|
||||
left: 75px;
|
||||
font-weight: 600;
|
||||
@media (max-width: 991px) {
|
||||
bottom: 60px;
|
||||
right: 40px;
|
||||
left: initial;
|
||||
}
|
||||
@media (max-width: 380px) {
|
||||
right: 25px;
|
||||
bottom: 56px;
|
||||
}
|
||||
.active {
|
||||
font-size: 37px;
|
||||
color: $primary;
|
||||
@media (max-width: 380px) {
|
||||
font-size: 28px;
|
||||
}
|
||||
}
|
||||
.cs_slide_seperator {
|
||||
position: relative;
|
||||
bottom: 3px;
|
||||
margin-left: 1px;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/*--------------------------------------------------------------
|
||||
3. Spacing
|
||||
----------------------------------------------------------------*/
|
||||
@media screen and (min-width: 992px) {
|
||||
@for $i from 1 through 170 {
|
||||
.cs_height_#{$i} {
|
||||
height: $i + px !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 991px) {
|
||||
@for $i from 1 through 170 {
|
||||
.cs_height_lg_#{$i} {
|
||||
height: $i + px !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,101 @@
|
||||
/*--------------------------------------------------------------
|
||||
12. Tab
|
||||
----------------------------------------------------------------*/
|
||||
.cs_tab_links.cs_style_1 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-around;
|
||||
flex-wrap: wrap;
|
||||
border: 1px solid $border;
|
||||
padding: 12px 0px;
|
||||
border-left: 0;
|
||||
border-right: 0;
|
||||
margin-bottom: 50px;
|
||||
gap: 10px 20px;
|
||||
@media (max-width: 991px) {
|
||||
margin-bottom: 35px;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
justify-content: center;
|
||||
gap: 5px 30px;
|
||||
}
|
||||
li {
|
||||
&.active,
|
||||
&:hover a {
|
||||
color: $primary;
|
||||
}
|
||||
}
|
||||
}
|
||||
.cs_tab_links.cs_style_2 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 45px;
|
||||
margin: 60px 0 30px;
|
||||
@media (max-width: 991px) {
|
||||
gap: 5px 25px;
|
||||
font-size: 16px;
|
||||
line-height: 1.4em;
|
||||
}
|
||||
li {
|
||||
a {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
padding-bottom: 5px;
|
||||
color: $primary;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
height: 1px;
|
||||
width: 100%;
|
||||
background-color: $primary;
|
||||
bottom: 0;
|
||||
transform: scaleX(0);
|
||||
transform-origin: right center;
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
}
|
||||
|
||||
&.active {
|
||||
a {
|
||||
&::before {
|
||||
transform: scaleX(1);
|
||||
transform-origin: left center;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/*-------------------------------------
|
||||
Tab content design
|
||||
---------------------------------------*/
|
||||
|
||||
.cs_tabs_fade {
|
||||
.cs_tab {
|
||||
display: none;
|
||||
&.active {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
//For both tab and slider
|
||||
.cs_tabs {
|
||||
position: relative;
|
||||
.cs_tab {
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
transition: all 0.5s ease;
|
||||
&.active {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
position: initial;
|
||||
pointer-events: initial;
|
||||
top: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,277 @@
|
||||
/*--------------------------------------------------------------
|
||||
6. Video Block
|
||||
----------------------------------------------------------------*/
|
||||
.cs_video_block.cs_style_1 {
|
||||
min-height: 600px;
|
||||
position: relative;
|
||||
|
||||
.cs_video_block_in {
|
||||
border-radius: 20px;
|
||||
border: 6px solid #ffffff;
|
||||
box-shadow: 0px 10px 80px rgba(0, 55, 106, 0.2);
|
||||
backdrop-filter: blur(40px);
|
||||
}
|
||||
|
||||
.cs_schedule_shape_1 {
|
||||
position: absolute;
|
||||
width: 400px;
|
||||
height: 320px;
|
||||
background: rgba(0, 194, 255, 0.08);
|
||||
border-radius: 30px 0px 0px 0px;
|
||||
left: -55px;
|
||||
top: -55px;
|
||||
}
|
||||
|
||||
.cs_schedule_shape_2 {
|
||||
position: absolute;
|
||||
left: -34px;
|
||||
top: 48%;
|
||||
}
|
||||
|
||||
.cs_video_block_img {
|
||||
height: 475px;
|
||||
width: 100%;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
|
||||
> div {
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
left: 0;
|
||||
top: 0;
|
||||
opacity: 0.7;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.cs_play_btn_container {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
border-radius: 50%;
|
||||
cursor: pointer;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: #f5faff;
|
||||
border-radius: 50%;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
z-index: 0;
|
||||
animation: playBtnAnim 3s linear infinite;
|
||||
}
|
||||
}
|
||||
|
||||
.cs_play_btn {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: $accent;
|
||||
border-radius: 50%;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
@keyframes playBtnAnim {
|
||||
50% {
|
||||
transform: translate(-50%, -50%) scale(1.5);
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translate(-50%, -50%) scale(2);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
6. Video Popup
|
||||
----------------------------------------------------------------*/
|
||||
.cs_pd_video .cs_video_open,
|
||||
.cs_sample_img .cs_video_open {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
color: #fff;
|
||||
font-size: 68px;
|
||||
transition: all 0.3s ease;
|
||||
line-height: 48px;
|
||||
}
|
||||
|
||||
.cs_pd_video .cs_video_open:hover,
|
||||
.cs_sample_img .cs_video_open:hover {
|
||||
color: rgba(255, 255, 255, 0.7);
|
||||
}
|
||||
|
||||
.cs_video_popup {
|
||||
position: fixed;
|
||||
z-index: 1000;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
left: -100%;
|
||||
transition-delay: 0.3s;
|
||||
}
|
||||
|
||||
.cs_video_popup.active {
|
||||
left: 0;
|
||||
transition-delay: 0s;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.cs_video_popup_overlay {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: #000;
|
||||
transition: all 0.4s ease-out;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.cs_video_popup.active .cs_video_popup_overlay {
|
||||
opacity: 0.8;
|
||||
height: 100%;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.cs_video_popup_content {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
overflow: auto;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
font-size: 0;
|
||||
text-align: center;
|
||||
transition: all 0.4s ease-out;
|
||||
transform: translateY(100px);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.cs_video_popup.active .cs_video_popup_content {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.cs_video_popup_content:after {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
height: 100%;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.cs_video_popup_container {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
text-align: left;
|
||||
background: #fff;
|
||||
max-width: 1380px;
|
||||
width: 100%;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.cs_video_popup_container .embed_responsive {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.embed_responsive {
|
||||
position: relative;
|
||||
display: block;
|
||||
height: 0;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.embed_responsive_16by9::before {
|
||||
display: block;
|
||||
content: '';
|
||||
padding-top: 56.25%;
|
||||
}
|
||||
|
||||
.embed_responsive iframe,
|
||||
.embed_responsive video {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.cs_video_popup_close {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
background: #d90d0d;
|
||||
cursor: pointer;
|
||||
transition: all 0.4s ease-in-out;
|
||||
}
|
||||
|
||||
.cs_video_popup iframe {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.cs_video_popup_close:before {
|
||||
content: '';
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
width: 20px;
|
||||
height: 1px;
|
||||
background: #fff;
|
||||
margin-left: -10px;
|
||||
transform: rotate(-45deg);
|
||||
transition: all 0.4s ease-in-out;
|
||||
}
|
||||
|
||||
.cs_video_popup_close:after {
|
||||
content: '';
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
width: 20px;
|
||||
height: 1px;
|
||||
background: #fff;
|
||||
margin-left: -10px;
|
||||
transform: rotate(45deg);
|
||||
transition: all 0.4s ease-in-out;
|
||||
}
|
||||
|
||||
.cs_video_popup_close:hover:before,
|
||||
.cs_video_popup_close:hover:after {
|
||||
background: #000;
|
||||
}
|
||||
|
||||
.cs_video_popup_layer {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.cs_video_popup_align {
|
||||
overflow: hidden;
|
||||
}
|
||||
Reference in New Issue
Block a user