/* ================ Global CSS Start ================== */
:root{
  --title-font: 36px;
  --title-font: 36px;
  --medium-font: 22px;
  --regular-font: 18px;
  --title-font-sm: 24px;
  --medium-font-sm: 18px;
  --regular-font-sm: 14px;
  --fw-bold: bold;
  --fw-normal: normal;
  --fw-lighter: lighter;

  --bs-pagination-color: #cecece;
  --bs-pagination-bg: #fff;
  --bs-pagination-border-color: #ffffff;
  --bs-pagination-hover-color: #000;
  --bs-pagination-hover-bg: #fff;
  --bs-pagination-hover-border-color: #fff;
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: #fff;
  --bs-pagination-active-color: #000;
  --bs-pagination-active-bg: #fff;
  --bs-pagination-active-border-color: #fff;
  --bs-pagination-disabled-color: var(--bs-secondary-color);
  --bs-pagination-disabled-bg: #fff;
  --bs-pagination-disabled-border-color: #fff;
  --bs-color-orange: #FAB600;
  --bs-color-white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box; /* Ensures consistent sizing */
  /* overflow: hidden; */
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #000;
  font-size: var(--regular-font);
  line-height: 1.6; /* Consistent line-height unit */
  background: #ffffff;
}

.page-link {
    position: relative;
    display: block;
    padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
    font-size: var(--regular-font);
    color: #cecece;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #fff;
}

ul.pagination li.active{
    color: #000;
}

.page-link:hover{
   color: #000;
}

.active>.page-link, .page-link.active{
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #fff;
}

.input-field-error{
  border: 1px solid red;
}

/* ================ Preloader Styling ================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5; /* Neutral light background */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.3);
  border-top: 4px solid #c30038; /* Accent color */
  border-radius: 50%;
  width: 100px;
  height: 100px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ================ Image Styling ================== */
.img,
img {
  max-width: 100%;
  transition: all 0.6s ease-out;
}

/* ================ Link Styling ================== */
a,
.button {
  transition: all 0.6s ease-out;
}

a {
  text-decoration: none;
  display: inline-block;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

a:focus,
a:hover {
  text-decoration: none;
}

/* ================ Typography ================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Condensed", sans-serif;
  margin-top: 0;
  font-style: normal;
  font-weight: var(--fw-bold);
  line-height: 1.4;
}

h1 {
  font-size: var(--title-font);
}
h2 {
  font-size: var(--title-font);
}
h3 {
  font-size: var(--medium-font);
}
h4 {
  font-size: var(--medium-font);
}
h5 {
  font-size: var(--medium-font);
}
h6 {
  font-size: 12px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

.margin-top-100 {
  margin-top: 100px;
}
.margin-top-150 {
  margin-top: 150px;
}
.margin-top-100 {
  margin-top: 100px;
}
.margin-top-150 {
  margin-top: 150px;
}
/* Responsive Design */

@media (max-width: 992px) {
  .margin-top-100 {
    margin-top: 80px;
  }
}

@media (max-width: 768px) {
  .margin-top-100 {
    margin-top: 50px;
  }
}

@media (max-width: 576px) {
  .margin-top-100 {
    margin-top: 10px;
  }
}
/* ================ Lists ================== */
ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

/* ================ Paragraph Styling ================== */
p {
  color: #999;
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* ================ Label Styling ================== */
label {
  color: #555;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}

/* ================ Selection Styling ================== */
*::selection {
  background: #fab600;
  color: #fff;
}

/* ================ Placeholder Styling ================== */
*::placeholder {
  color: gray;
  font-size: 13px;
}
/* ================ cursor Styling ================== */

.cursor-pointer {
  cursor: pointer;
}
/* ================ primary card style for all pages ================== */

.b-cat-card-container,
.b-cat-card-container-2 {
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(198,198,197,0.35);
}
.b-cat-card-container > image {
  height: 226px;
}

.b-cat-card-container > hr {
  border-top: 1px solid #707070;
}
.b-cat-card-container:hover .b-cat-card-container-title {
  color: #fab600;
}

.b-cat-card-container .b-cat-card-container-title {
  text-align: left;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
  transition: all 0.5s ease-out;
}

.b-cat-card-container-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px; /* Adjust the gap between items */
}
.b-cat-card-container-2 img {
  width: 100%;
}
.card-img-top {
  width: 100%;
  object-fit: contain;
}

/* ================ Buttons ================== */
.hero-btn {
  background: transparent;
  border: 1px solid #fff;
  padding: 10px 20px;
  color: #fff !important;
  background-size: 201% 100%;
  font-size: 16px;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  line-height: 16px;
  text-transform: uppercase;
  padding: 10px 20px;
  display: inline-block;
  transition: all 0.5s ease-out;
  background: linear-gradient(to right, #fab600 50%, transparent 50%);
  background-size: 201% 100%;
  background-position: right bottom;
}

.border-button,
.back-to-top-btn {
  font-size: var(--regular-font);
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  line-height: 16px;
  text-transform: uppercase;
  color: #000000 !important;
  border: 1px solid #000;
  padding: 10px 20px;
  display: inline-block;
  transition: all 0.5s ease-out;
  background: linear-gradient(to right, #fab600 50%, white 50%);
  background-size: 201% 100%;
  background-position: right bottom;
}

.border-button:hover,
.hero-btn:hover {
  background-position: left bottom;
  color: #000 !important;
  cursor: pointer;
  border: 1px solid #c8c7c7 !important;
}

.back-to-top-btn:hover {
  background-position: left bottom !important;
  color: white;
  cursor: pointer;
}

.back-to-top-btn .bi-caret-up-fill {
  transform: translateY(10px);
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
  font-size: 24px;
  color: #fab600;
}

.back-to-top-btn:hover .bi-caret-up-fill {
  transform: translateY(0);
  color: #000;
}

.breadcrumb-header-content{
  color: white;
}

.breadcrumb-header-content ul{

}

.breadcrumb-header-content ul li{
  color: white;
  list-style-type: disc;
  margin-left: 20px;
}

.bi-search::before{
    -webkit-text-stroke: 1px;
}

/* ================ Header Styling ================ */

.bg-dual{
    background: rgb(246,247,247);
    background: linear-gradient(180deg, rgba(246,247,247,1) 32%, rgba(255,255,255,1) 32%);
}

.breadcrumb-top-links{
    height: 10%;
}

.breadcrumb-content-container{
    height:100%;
    min-height:90%;
}

.breadcrumb-container{
    width: 100%;
    height: 80%;
    min-height: 200px;
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 105px;
}

.container-inner{
    width: 100%;
    height: 100%;
    min-height:100px;
}

.breadcrumb-top-links{
    height: 5%;
}

.breadcrumb-content-container{
    width: 100%;
    height: auto;
    min-height: 95%;
    padding: 0;
}

/* ================ Products ================== */
.section-title {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
}

.product-warper {
  padding: 0;
  gap: 60px;
}

.product-img-wrap .product-image {
  width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1); /* Initial state */
  transform-origin: center; /* Ensures scaling occurs from the center */
  transition: transform 0.5s ease-in-out; /* Smooth transition */
}

.product-img-wrap:hover .product-image {
  transform: translate(-50%, -50%) scale(1.1); /* Change the scale value for hover */
}

.product-warper .product .product-info .title {
  text-align: left;
  font-size: var(--medium-font);
  font-weight: 800;
  color: #000000;
  text-transform: uppercase;
}

.product-warper .product .product-info .desc {
  text-align: left;
  font-size: var(--regular-font);
  color: #000000;
}

.border{
  border-style: solid;
  border-width: 1px;
  border-color: rgba(198,198,197,0.35);
}

/* ================ Stories Section ================== */
.stories-Section {
}

.stories-card {
  border: 1px solid #9999;
  /*display: flex;
  flex-direction: column;
  justify-content: space-between;
  */
  height: 100%; /* Ensures cards have equal height */
}

.stories-card img {
  width: 100%;
  height: auto;
  display: block;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  align-items: start;  
}
.stories-img-wrap {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.stories-img-wrap img:hover {
  scale: 0.98;
}
.card-title {
  font-size: var(--medium-font);
  font-weight: var(--fw-bold);
  margin-bottom: 8px;
  text-align: left;
}

.card-subtitle {
  font-size: var(--regular-font);  
  color: #666;
  margin-bottom: 12px;
  font-weight: 400;
  margin-bottom: 0px !important;
   text-align: left;
}
.card-text {
  font-size: var(--regular-font);
  font-weight: var(--fw-normal);
  color: #000000;
  text-align: left;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-backface-hidden .swiper-slide {
  visibility: visible !important;
}

/* General Section Styling */
.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

img.d-block.w-100 {
  width: 100%;
  height: auto;
}

/* Center Content Styling */

.breadcrumb-container h3 {
  font-size: 2rem;
  color: #fff; /* White color for text contrast */
  font-weight: bold;
  margin-bottom: 15px;
}

.breadcrumb-container p {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.5;
}
.breadcrumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: auto;
}
.breadcrumb-content {
  margin-top: 50px;
  width: 100%;
}
/* Breadcrumb Section Styling */
.breadcrumb-navigation a:hover {
  color: #fab600 !important;
  transition: all 0.5s ease-out;
}
.breadcrumb-title .title-after, .title-after {
  position: relative;
  font-weight: var(--fw-bold);
  font-size: var(--title-font);
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
}

.breadcrumb-title .title-after::after, .title-after::after {
  content: "";
  position: absolute;
  bottom: -5px; /* Distance below the text */
  left: 0;
  width: 60px; /* Adjust length of the yellow bar */
  height: 5px; /* Thickness of the yellow bar */
  background-color: #ffc107; /* Yellow color   */
}

/* Text Styling */
.mtc-80 {
  margin-top: 80px;
}

h5.b-cat-card-container-title{
    font-weight: var(--fw-bold);
    font-size: var(--regular-font);
    /*min-height: 65px;
    display: flex;
    align-items: center;*/
}

.breadcrumb-navigation a{
    font-size: var(--regular-font);
    text-transform: uppercase !important;
}

/* Hover effect */
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  border-color: #fab600;        /* brand color accent */
}

#news-container .news-card .news-info{
    width: 94%;
    margin-left: auto;
    margin-right: auto;
}

#news-container h5{
    font-size: var(--regular-font);
}

#news-container .btn-container{
    width: 94%;
    margin-left: auto;
    margin-right: auto;
}

#news-container .btn-container a{
    margin-bottom: 15px;
}

/* News Filter */
/* Filter box styling */
.filter-box {
  background: #f7f7f7;      /* Light grey */
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

/* Custom checkbox */
.custom-check .form-check-input {
  cursor: pointer;
  border: 2px solid #bbb;
  transition: 0.2s;
}
.custom-check .form-check-input:hover {
  border-color: #fab600;
}
.custom-check .form-check-input:checked {
  background-color: #fab600;
  border-color: #fab600;
}

.btn-filter {
  background: #fab600;
  border: 1px solid #fab600;
  color: #000;
  font-weight: 600;
}
.btn-filter:hover {
  background: #e3a400;
  border-color: #e3a400;
  color: #000;
}

/* Collapsible section titles */
.filter-toggle {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 5px;
}
.filter-toggle:hover {
  color: #fab600;
}

h2.features-articles{
    font-size: var(--title-font-sm);
}


/* All Dual Backgrounds */
.bg-dual{
    background: rgb(246,247,247);
    background: linear-gradient(180deg, rgba(246,247,247,1) 14%, rgba(255,255,255,1) 14%);
}

.bg-dual-epc{
    background: rgb(246,247,247);
    background: linear-gradient(180deg, rgba(246,247,247,1) 32%, rgba(255,255,255,1) 32%);
}

.bg-dual-microgrid{
    background: rgb(246,247,247);
    background: linear-gradient(180deg, rgba(246,247,247,1) 24%, rgba(255,255,255,1) 24%);
}

section.form-container-bg{    
    width: 100vw;
}

.product-get-quote-container{
    width: 100vw;
}

.page-link:hover{
    background-color: #fff;
    border: 1px solid #fff;
}

/* product contact section */
.contact-section {
  padding: 30px 20px 0 20px;
}

.contact-title {
  color: #000000;
  margin-bottom: 20px;
  text-align: left;
}

.contact-card {
  border: 1px solid #fab600;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  background-color: transparent;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-card i {
  color: #fab600;
  font-size: 1.2rem;
  margin-right: 10px;
}

.contact-header {
  /*color: #fab600;*/
  color: #000000;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-info {
  display: flex;
  justify-content: flex-start;
}

.contact-info p{
  color: #000000;
}

.contact-info p:nth-child(2){
  margin-left: 20px;
}

/* --- ----- News Section ---- ---*/
.news-content{
    transition: all 0.5s;    
    overflow: hidden;
    padding: 0 5px 0 0;
}

.news-expand{
    height: 650px;
    overflow: scroll;
    overflow-x: hidden;
}

.btn-news-more{
    background-color: #FFFFFF;
    width: 120px;
    transition: 0.3s;
}

.btn-news-more:hover{
    background-color: #F0F0F0;
}

#news-container .news-card {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid #f1f1f1; /* subtle border for white background */  
}

#news-container h2 a{  
  width: 94%;
  height: 100px;
  font-size: var(--title-font-sm);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;  
}

#news-container h2 a:hover{
  color: var(--bs-color-orange);
}

h3.card-title a{
  font-size: var(--medium-font);
  font-weight: var(--fw-bold);
  margin-bottom: 8px;
  text-align: left;    
}

h3.card-title a:hover{
  color: var(--bs-color-orange);
}

.news-list-img{
  max-height: 225.95px;
  overflow: hidden;
}

.no-results-card {
  border: 2px solid #fab600;
  background-color: #fffaf0;
}

.no-results-icon {
  font-size: 3rem;
  color: #fab600;
}

.no-results-title {
  color: #fab600;
  font-weight: 600;
}

.no-results-text {
  color: #555;
}

.btn-brand {
  background-color: #fab600;
  color: #000;
  font-weight: 500;
  border: none;
}

.btn-brand:hover {
    background-color: #e0a800;
    color: #000;
}

.news-content p{
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

#news-details-1 a{
  width: 140px !important;
}

/* Custom Carousel Color and Size */
/* Customizing the Previous and Next Icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) saturate(100%) invert(66%) sepia(100%) saturate(690%) hue-rotate(1deg) brightness(107%) contrast(102%);
  width: 60px;
  height: 60px;
}

/* Optional: Add hover effect to slightly darken */
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  filter: brightness(0) saturate(100%) invert(66%) sepia(100%) saturate(690%) hue-rotate(1deg) brightness(107%) contrast(102%);
}

.bi-spin {
  animation: spin 1s linear infinite;
  padding-left: 10px;
  padding-right: 10px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* FLOATING RIGHT QUICK LINK STARTED  */
.floating-side {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  left: auto;
  position: fixed;
  right: 0;
  top: 60%;
  transform: translateY(-50%);
  z-index: 8;
}
.floating-side .top-top {
  align-items: center;
  display: flex;
  height: 64px;
  position: relative;
  width: 64px;
}
.floating-side .side-list-ico {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  position: relative;
}
.floating-side .side-list-ico a {
  color: black;
}
.floating-side .side-list-ico .ico {
  align-items: center;
  color: black;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 80px;
  justify-content: center;
  overflow: hidden;
  padding: 6px;
  position: relative;
  text-align: center;
  transition: all 0.25s ease-out;
  width: 64px;
}
.floating-side .side-list-ico .ico.active img {
  -webkit-animation: jump-shaking 0.5s linear infinite;
  animation: jump-shaking 0.5s linear infinite;
}
.floating-side .side-list-ico .ico:before {
  background: black;
  bottom: 0;
  content: "";
  height: 100%;
  left: auto;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.3s ease-out;
  width: 0;
  z-index: 3;
}
.floating-side .side-list-ico .ico:hover {
  border-radius: 8px 0 0 8px !important;
  box-shadow: -3px 0 10px 0 rgba(0, 0, 0, 0.15);
  padding-right: 10px;
  transition: all 0.3s ease-out;
  width: 70px;
}
.floating-side .side-list-ico .ico:hover:before {
  transition: all 0.3s ease-out;
  width: 3px;
}

.floating-side .side-list-ico .ico:hover img {
  -webkit-animation: none !important;
  animation: none !important;
}
.floating-side .side-list-ico .ico img {
  display: block;
  margin: 0 auto 4px;
  width: 24px;
}
.floating-side .side-list-ico .ico .text-ico {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.05;
  text-transform: uppercase;
  text-overflow: ellipsis;
}
.floating-side .side-list-ico .ico:first-child {
  background: #fdd541;
  border-radius: 8px 0 0 0;
}
.floating-side .side-list-ico .ico:nth-child(2) {
  background: #ffe170;
}
.floating-side .side-list-ico .ico:nth-child(3) {
  background: #ffeeaf;
}
.floating-side .side-list-ico .ico:nth-child(3):hover {
  width: 220px;
}
.floating-side .side-list-ico .ico:nth-child(3) .hover-ico {
  left: auto;
  width: 220px;
}
.floating-side .side-list-ico .ico:nth-child(3) .hover-ico a .text-ico {
  font-size: 1.0rem;
  line-height: 1.2;
  padding-left: 5px;
}
.floating-side .side-list-ico .ico:nth-child(3):hover > a {
  opacity: 0;
}
.floating-side .side-list-ico .ico:nth-child(3):hover .hover-ico {
  opacity: 1;
  visibility: visible;
}
.floating-side .side-list-ico .ico:nth-child(3) .hover-ico {
  background: #ffeeaf;
  transition: all 0.2s ease-out;
}
.floating-side .side-list-ico .ico:nth-child(3) .hover-ico a img {
  width: 30px;
  margin-left: 3px;
}
.floating-side .side-list-ico .ico:nth-child(3) .hover-ico a:last-child{
    padding-left: 0px;
    padding-right: 0px;
}

.floating-side .side-list-ico .ico:nth-child(4) {
  background: #fff7d9;
  border-radius: 0 0 0 8px;
}
.floating-side .side-list-ico .ico:nth-child(4) .hover-ico,
.floating-side .side-list-ico .ico:nth-child(4):hover {
  width: 220px;
}
.floating-side .side-list-ico .ico:nth-child(4):hover > a {
  opacity: 0;
}
.floating-side .side-list-ico .ico:nth-child(4):hover > a img {
  width: 24px;
}
.floating-side .side-list-ico .ico:nth-child(4):hover .hover-ico {
  opacity: 1;
  visibility: visible;
}
.floating-side .side-list-ico .ico:nth-child(4) .hover-ico {
  background: #fff7d9;
  transition: all 0.2s ease-out;
}
.floating-side .side-list-ico .ico:nth-child(4) .hover-ico a {
  padding-right: 15px;
}
.floating-side .side-list-ico .ico:nth-child(4) .hover-ico a .text-ico {
  font-size: 0.9rem;
  line-height: 1.2;
  padding-left: 5px;
  letter-spacing: 0.5px;
}
.floating-side .side-list-ico .ico:nth-child(4) .hover-ico a:last-child {
  padding-right: 10px;
}
.floating-side .side-list-ico .ico .hover-ico {
  display: flex;
  height: 100%;
  left: 0;
  opacity: 0;
  padding-left: 5px;
  position: absolute;
  justify-content: flex-start;
  right: 0;
  transition: all 0.2s ease-out;
  visibility: hidden;
  width: 140px;
  z-index: 2;
}
.floating-side .side-list-ico .ico .hover-ico a {
  align-items: center;
  display: flex;
  flex-direction: row;
}
.floating-side .side-list-ico .ico .hover-ico a img {
  width: 24px;
}
.floating-side .side-list-ico .ico .hover-ico a .text-ico {
  font-size: 11px;
  padding-left: 8px;
  text-align: left;
}
.floating-side .side-list-ico .ico .hover-ico a .text-ico span {
  display: block;
  font-size: 18px;
  margin-top: 2px;
}
.floating-side .to-top {
  align-items: center;
  background: var(--colorWhite);
  border-radius: 8px 0 0 8px;
  box-shadow: -3px 0 10px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  height: 64px;
  justify-content: center;
  margin-top: 16px;
  opacity: 0;
  transition: all 0.25s ease-out;
  visibility: hidden;
  width: 64px;
}
.floating-side .to-top:hover span {
  color: var(--colorTitle);
  transition: all 0.25s ease-out;
}
.floating-side .to-top:hover img {
  filter: grayscale(100%);
  top: -3px;
  transition: all 0.25s ease-out;
}
.floating-side .to-top img {
  display: block;
  margin-bottom: 2px;
  position: relative;
  top: 0;
  transition: all 0.25s ease-out;
  width: 16px;
}
.floating-side .to-top span {
  color: black;
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}
.floating-side .to-top.show {
  opacity: 1;
  transition: all 0.25s ease-out;
  visibility: visible;
}

@-webkit-keyframes jump-shaking {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateY(-2px);
  }
  35% {
    transform: translateY(-2px) rotate(17deg);
  }
  55% {
    transform: translateY(-2px) rotate(-17deg);
  }
  65% {
    transform: translateY(-2px) rotate(17deg);
  }
  75% {
    transform: translateY(-2px) rotate(-17deg);
  }
  to {
    transform: translateY(0) rotate(0);
  }
}
@keyframes jump-shaking {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateY(-2px);
  }
  35% {
    transform: translateY(-2px) rotate(17deg);
  }
  55% {
    transform: translateY(-2px) rotate(-17deg);
  }
  65% {
    transform: translateY(-2px) rotate(17deg);
  }
  75% {
    transform: translateY(-2px) rotate(-17deg);
  }
  to {
    transform: translateY(0) rotate(0);
  }
}

/* FLOATING RIGHT QUICK LINK END  */

/* floating sheet  */

@media (max-width: 767px) {
  .footer-floating-padding{
    padding-bottom: 50px;
  }
  .hide-mobile{
    display: none;
  }
  .floating-side {
    bottom: 0;
    flex-direction: row;
    left: 0;
    position: fixed;
    right: 0;
    top: auto;
    transform: translateY(0);
  }
  .floating-side .side-list-ico {
    flex-direction: row;
    width: 100%;
  }
  .floating-side .side-list-ico .ico {
    flex-direction: row;
    height: 50px;
    overflow: unset;
    width: 25%;
  }
  .floating-side .side-list-ico .ico:before {
    bottom: 0;
    display: none;
    height: 3px;
    left: 0;
    right: 0;
    top: auto;
    width: 100%;
  }
  .floating-side .side-list-ico .ico:hover {
    border-radius: 0 !important;
    box-shadow: none;
    width: 25%;
  }
  .floating-side .side-list-ico .ico:first-child,
  .floating-side .side-list-ico .ico:nth-child(4) {
    border-radius: 0;
  }
  .floating-side .side-list-ico .ico img {
    margin: 0;
    width: 20px;
  }
  .floating-side .side-list-ico .ico .text-ico {
    font-size: 11px;
    letter-spacing: 1px;
    padding-left: 4px;
    text-align: left;
  }
  .floating-side .side-list-ico .ico a {
    align-items: center;
    display: flex;
  }
  .floating-side .side-list-ico .ico.tlp .hover-ico {
    left: auto;
    right: 0;
  }
  .floating-side .side-list-ico .ico.tlp:hover {
    width: 25%;
  }
  .floating-side .side-list-ico .ico.tlp:hover .hover-ico {
    left: auto;
  }
  .floating-side .side-list-ico .ico:nth-child(4) .hover-ico {
    left: auto;
    width: 190px;
  }
  .floating-side .side-list-ico .ico:nth-child(4):hover {
    width: 25%;
  }
  .floating-side .side-list-ico .ico:nth-child(4):hover .hover-ico {
    left: auto;
  }
  .floating-side .to-top {
    border-radius: 8px 8px 0 0;
    bottom: 50px;
    box-shadow: 0 -1px 4px 0 rgba(0, 0, 0, 0.075);
    height: 48px;
    position: fixed;
    top: auto;
    width: 48px;
  }
  .floating-side .to-top:hover img {
    top: -1.5px;
  }
  .floating-side .to-top img {
    width: 12px;
  }
  .floating-side .to-top span {
    font-size: 0.55rem;
  }
}

/* floating sheet end  */
