/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/

a {
    text-decoration: none !important;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

@media  screen and (max-width:600px) {
    .back-to-top{
    bottom:75px;
    }
}
/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: var(--bs-dark);
    font-size: 18px;
    outline: none;
    
}

/* .navbar .navbar-nav ,
.navbar .navbar-nav .nav-link.active {
    color: #e3f0eb !important;
} */
.nav-link:hover{
    color:#ff6600 !important;
    transform: scale(0.98);
}




.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: var(--bs-gray-dark);
    transition: .8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: var(--bs-gray-dark);
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}
@media (max-width:600px) {
    .carousel-content  button{
        margin-bottom: 5px;
    }
    .carousel-caption .container a:nth-of-type(2) {
        margin-left: -5px !important; 
    }
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: var(--bs-primary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }
    
    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }
}

@media screen and (max-width: 1200px) {
    .carousel-item{
        height: 97vh;
    }
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 95vh;
    }
    
    .carousel-item img {
        min-height: 95vh;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

@media screen and (max-width: 800px) {
    .carousel-item{
        height: 95vh;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }
    
    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }
}


@media screen and (max-width: 700px) {
    .carousel-item{
        height: 80vh;
    }
}

@media screen and (max-width:600px){
    .carousel-item{
        height: 84vh;
    }
}

@media screen and (max-width:500px){
    .carousel-item{
        height: 85vh;
    }
}

@media screen and (max-width:400px){
    .carousel-item{
        height: 82vh;
    }
}

@media screen and (max-width:380px){
    .carousel-item{
        height: 80vh;
    }
}
@media screen and (max-width:600px) {
    .header-icon{
        display: none !important;
    }
    .navbar{
        justify-content: center;
    }
}



.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/


/*** Services Start ***/

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 96%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}
.products-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 96%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}

.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: rgb(243, 126, 49);
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}

/*** Services End ***/


/*** Project Start ***/

.project-img {
    position: relative;
    padding: 15px;
}

.project-img::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    background: var(--bs-secondary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-img::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.project-content a {
    display: inline-block;
    padding: 20px 25px;
    background: var(--bs-primary);
    border-radius: 10px;
}

.project-item:hover .project-content {
    opacity: 1;
    transition: .5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
    opacity: 0;
}

/*** Project End ***/


/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;
    
}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}
.blog-icon-1 {
    position: relative;
    top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}

/*** Blog End ***/


/*** Team Start ***/

.team-item {
    border-top: 30px solid var(--bs-secondary) !important;
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bs-secondary);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid var(--bs-white);
}

.team-img img {
    border: 10px solid var(--bs-secondary);
    transition: .5s;
}

.team-item:hover h4 {
    color: var(--bs-primary);
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--bs-secondary);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    margin-left: 15px;
    background: var(--bs-secondary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}

/*** Team End ***/


/*** Testimonial Start ***/

.testimonial-item {
    background: #f1f1f1;
    
    box-shadow: 0 0 20px rgba(143, 143, 143, 0.2)

}
.testimonial-carousel{
    display: flex !important;
    flex-direction: column;
    gap:20px;
}
 .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #c1dad0;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}
.testimonial{
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: rgb(228, 228, 228);
}
@media screen and (max-width:900px) {
    .contact-map{
        padding:10px !important;
        height: 500px !important;
    }
    .contact-form{
        padding:20px !important;
    }
}
@media screen and (max-width:500px)  {
    .contact-map{
        padding:10px !important;
        height: 400px !important;
    }   
    .pad-removal{
        padding:0px !important;
    }
    .pad-removal h5{
        font-size: 15px;
    }
    .ms-3-phoneView a {
        font-size: 15px !important;
    }
    .ms-3-phoneView h4 {
        font-size: 19px !important;
    }
    .contact-form button{
        width: 120px;
        display: flex;
        justify-content: center;
        height: 70px;
        align-items: center;
    }
    .text-start{
        display: flex;
        justify-content: center;
    }
    .carousel-control-next{
        width: 40px;
    }
    .carousel-control-next-icon{
        width: 22px;
    }
    .carousel-control-prev{
        width: 40px;
    }
    .carousel-control-prev-icon{
        width: 22px;
    }
    .ero{
        height: 60px !important;
        /* margin-left: 25px; */
        margin-bottom: 10px;
    }
    .navbar-toggeler{
        display: none !important;
    }
}
@media screen and (max-width:380px) {
    .ero{
        width: 230px !important;
    }
}


    
.contact-form {
    background: rgb(228, 228, 228);
}

/*** Contact End ***/


/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}


.footer-home{
    height: 500px;
    width: 100%;
    background-color: transparent;
}

.footer-content{
    border-top: solid 1px rgb(206, 204, 204);
    border-bottom: solid 1px rgb(206, 204, 204);
    display: flex;

    position: relative;
    width:80%;
    left: 10%;
    height: 80%;
    display: flex;
    flex-direction: row;
    gap:20px;
}

.footer-box{
/* border: solid 1px black; */
    height: 60%;
    width:300px;
    position: relative;
    top:20%;

}
.footer-box a{
    text-decoration: none !important;
    color: #787878 !important;
    margin-bottom: 1rem !important;
    cursor: pointer;
}
.subscribe{
    width:120px;
    height: 40px;
    background-color: #fa7a43;
    cursor: pointer;
}

    /* Tablet Screens */
@media (max-width: 768px) {
    .footer-content {
        width: 80%;
        left: 10%;
        flex-direction: column;
        height: auto;
        gap: 15px;
    }

    .footer-box {
        width: 100%;
        height: auto;
        top: 0;
    }
    

    .subscribe {
        width: 90px;
        height: 40px;
    }
    .subscribe p{
        font-size: 16px !important;
        margin:0px !important;
    }
}

/* Mobile Screens */
@media (max-width: 480px) {
    .footer-content {
        width: 100%;
        left: 0;
        padding: 10px;
    }

    .footer-box {
        width: 100%;
        padding: 10px;
    }

    .subscribe {
        width: 90px;
        height: 40px;
        font-size: 14px;
        text-align: center;
        

    }
    .subscribe p{
        font-size: 12px !important;
        margin:0px !important;
        top:10px !important;
        
    }
}
    /* footer end */
  .repair-form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin:20px;
    gap:10px;
    margin-bottom:30px;
  }
  .repair-form h1{
    margin-bottom: 30px;
  }
  .repairform{
    width: 600px;
    height: auto;
      display: flex;
      flex-direction: column;
      /* gap:10px; */
      border:1px solid gray;
      padding:10px; 
      padding-left: 50px;
      
  }
  
  .repairform h1{
    font-size: 25px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }
  .repairform label{
    padding-bottom:5px;
    color:black;
  }
  .repairform input{
    margin-bottom:10px;
    width: 400px;
    height: 40px;
    background-color: #ECECEC;
    border:1px solid rgb(118, 118, 118);
  }
  .repairform textarea{
    margin-bottom: 10px;
    height: 90px;
    width: 400px;
    background-color: #ECECEC;

  }
  input[type="file"] {
    height: 40px;
    font-size: 16px;
    background-color: #f1f1f1;
    border: 2px solid #ccc;
    border-radius: 5px;
    cursor:default;
}
#file-upload-button{
    height:50px;
}
.r-submit{
    width: 80px !important;
    height: 40px;
    background-color:#ff6600 !important;
    border:0px solid gray;
    box-shadow: 0 1 1 0;
    border-radius: 10px;
    color: white;

}
@media screen and (max-width:600px) {
    .repairform{
        width:300px !important;
        padding-left: 15px;
    }
    .repairform h1{
        font-size:19px !important;
    }
    .repairform input{
        margin-bottom:6px;
        width: 250px;
        height: 30px;
        background-color: #ECECEC;
        border:1px solid rgb(118, 118, 118);
    }
    .repairform textarea{
        margin-bottom: 10px;
        height: 50px;
        width: 250px;
        background-color: #ECECEC;
    
    }      
    input[type="file"] {
        margin-bottom: 20px;
    }
}
.filter {
    position: sticky;
    top: 10px; /* Adjust the distance from the top of the viewport */
    z-index: 10; /* Ensure it stays above other content if needed */
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.img-main{
    width: 100%;
    height: 93vh;
}
/* .ItemDetails-wrapper{
    margin-top:100px;
    width: 80%;
    margin-left: 10%;

    display: flex;
    align-items: center ;
    flex-direction: column;
    background-color: #ededed;
}
.Dimg-wrapper{
    width: 40%;
    
}
.details-wrapper1{
    display: flex;
    flex-direction: row;
}
.di-1{
    width: 400px;
    height: 450px;
    padding-top: 20px;
}
.click-img{
    display: flex;
    flex-direction: row;
    gap:20px;
}
.img-box{
    width: 78px;
    height: 78px;
    border:1px solid black;
    margin-bottom: 30px;
}
.img-box img{
    width: 78px;
    height: 78px;
}
.Ddescription-wrapper{
    width: 50%;
    background-color: #fa7a43;
} */

.ItemDetails-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    font-family: Arial, sans-serif;
    margin-bottom: 50px;

}

.ItemDetails-wrapper a {
    text-decoration: underline;
    color: gray;
}
.ItemDetails-wrapper h1 {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
    margin-top:50px;
}

.details-wrapper1 {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}
@media screen and (max-width:500px) {
    .details-wrapper1{
    flex-direction: column;
    margin-bottom: 15px;
    }
    .details-img{
        display: flex;
        flex-direction: column;
        gap:20px;
    }
}

.Dimg-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.details-img {
    text-align: center;
    background-color: #f8f8f9;
    padding:15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;  
}
@media screen and (max-width:500px) {
    .details-img
    {
    align-items: center;
}
}

.details-img .di-1 {
    width: 100%;
    max-width: 300px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #DDDDDD;

}

.click-img {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    background-color: #ffffff;

}

.click-img .img-box {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border: 2px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
}

.click-img .img-box img {
    width: 90%;
    height: 90%;
    object-fit:fill;
}

.Ddescription-wrapper {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: #f8f8f9;

    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* @media only screen and (max-width:780px) {
    .Ddescription-wrapper{
        width: 400px;
        height: 300px;
    }
    .price-container{
        height: 50px;
        width: 300px;
    }
    .price-container p{
        font-size:11px;
    }
} */
@media only screen and (max-width: 780px) {
    .Ddescription-wrapper {
        width: 100%;
        max-width: 400px;
        padding: 15px;
        gap: 15px;
    }
    
    .price-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .price-container p {
        font-size: 12px;
    }
    
    .multiple-price table {
        font-size: 12px;
        width: 100%;
    }
    
    .item-quantity {
        flex-direction: column;
        gap: 5px;
    }
    
    .item-quantity input {
        width: 100%;
        max-width: 80px;
    }
}

@media only screen and (max-width: 480px) {
    .Ddescription-wrapper {
        padding: 10px;
        gap: 10px;
    }
    
    .Ddescription-wrapper h2 {
        font-size: 18px;
    }
    
    .price-container p {
        font-size: 10px;
    }
    
    .multiple-price table {
        font-size: 10px;
    }
    
    .item-quantity input {
        max-width: 60px;
    }
}
.Ddescription-wrapper a{
    width: 140px;
}
.Ddescription-wrapper a{
    width: 140px;
}
.Ddescription-wrapper h2 {
    
    color: #ff6600;
}

.Ddescription-wrapper .description {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}
.description p{
    margin:0px;
}
.manufacturer{
    font-size: 20px;
    margin-bottom: 0px;
}
.price-container{
    display: flex;
    flex-direction: row;
    gap:20px;
}
.multiple-price table{
    font-size: 14px;
    padding-top: 10px;
}
.multiple-price table td{
    border-right: 1px solid black;
    width: 45px;
    padding: 5px;
}
.item-quantity{
    display: flex;
    gap:10px;
}
.item-quantity input{
    font-size: 14px;
    width: 60px;
    color:black;
}
.cats{
    text-decoration: underline;
    margin: 0px;
}

.document-video-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    font-family: Arial, sans-serif;
    margin-bottom: 50px;
}
.document-video-wrapper{
    display: flex
;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
}
.documentation-wrapper{
    flex: 2;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: #f8f8f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);


}

@media screen and (max-width:600px){
    .document-video-wrapper{
        flex-direction: column;
    }
    .documentation-wrapper img{
        width: 150px !important;
        height: 150px !important;
    }
    .documentation-wrapper h1{
        font-size: 15px;
    }
}

.video-wrapper{
    flex: 2;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: #f8f8f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.documentation-img{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.documentation-img img{
    width: 200px;
    height: 200px;
}
.documentation-wrapper h1{
    text-align: center;
    color: #ff6600;
}
.mobile-foor-wrapper{
    display: none;
}
.mobile-images i{
    display: none;
}

@media screen and (max-width: 600px) {
    .mobile-foot-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 50px; /* Consistent padding for top and bottom */
        /* margin-bottom: 25px; */
        padding-top:15px;
        padding-bottom: 15px; /* Removed bottom margin to ensure proper sticky behavior */
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        position: sticky;
        bottom: -1px; /* Ensures it sticks precisely to the bottom */
        z-index: 1000;
        background: linear-gradient(to right, #ff6600 10%, white 60%, #ff6600 90%);
    }
    

    .mobile-foot-wrapper a {
        text-decoration: none;
        flex: 1; /* Ensures even spacing across items */
        text-align: center;
    }

    .mobile-images i {
        display: inline-block; /* Aligns the icon properly */
        width: 35px;
        height: 35px;
        font-size: 1.5rem; /* Ensures proper size for FA icons */
        color: #333; /* Default color, customizable */
    }

    .footer-home{
        height: auto;
        width: 100%;
        background-color: transparent;
    }
    .mobile-i{
        font-size: 35px;
        color:black;
    }
    
}
.mobile-search-wrapper{
    display: none;
    /* background: linear-gradient(to right, #ff6600 10%, white 50%, white 0%, #ff6600 90%); */
}

@media  screen and (max-width:600px) {
    .mobile-search-wrapper{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        background-color: none;
        padding-bottom: 10px;
        height: 70px;
    }
    .mobile-search{
        background-color: transparent;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: row;
        /* background-color: #f2f2f2; */
        background-color: #ff8839;
        position: relative;
        top:5px;
        border-radius: 15px;
        border:0.5px solid black;
        height: 40px;
        width: 300px;
    }

    .popupSearch {
        /* display: none; Hidden by default */
        position: fixed;
        z-index: 11111;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgb(0,0,0); /* Fallback color */
        background-color: rgba(0,0,0,0.4); /* Black with opacity */
        padding-top: 60px;
        flex-direction: row;
        justify-content: space-between;
        padding:10px;
    }


        
    
    .mobile-search img{
        width: 25px;
        height: 25px;
        padding:2px;
        margin-right: 10px;
        position: relative;
        left: 3px;
        
    }
    .mobile-search input{
        width:290px;
        background-color: white;
        border-top-right-radius: 15px;
        border-bottom-right-radius:15px;
        border: none;
        border-left: 1px solid black;
        height: 38px;
        /* margin-left: 10px; */
    }
    .mobile-search input::placeholder{
        padding-left: 20px;
    }
    .paypal-button{
        width: 160px !important;
    }
    .modal-dialog{
        width: 250px !important;
    }
}
.cancel-transaction{
    display: flex;
    justify-content: end;
    margin-bottom: 20px;
}
/* General styles for the feedback wrapper */
.feedback-wrapper {
    width: 50%;
    padding: 20px;
    background-color: #f8f8f9;
    display: flex;
    justify-content: center;
    align-items: center;
   
    font-family: Arial, sans-serif;
}

/* Styles for the feedback container */
.feedback-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
}

.feedback-header {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #ff6600;
}

.feedback-boxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feedback-box {
    background-color: #f1f1f1;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feedback-message {
    font-size: 1em;
    margin-bottom: 10px;
    color: #555;
}

.feedback-user {
    font-size: 0.9em;
    font-style: italic;
    color: black;
    text-align: right;

}

/* Button for writing feedback */
.feedback-form-open {
    background-color: #ff6600;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

.feedback-form-open:hover {
    background-color: #fa7a43;
}

/* Star rating */
.feedback-box .stars {
    margin-top: 10px;
    text-align: right;
}

.stars .fa-star {
    color: #ffcc00;
    font-size: 1.2em;
    margin-right: 5px;
}

.stars .fa-star:not(:last-child) {
    margin-right: 3px;
}

/* Layout for the main container */
.fb-container {
    display: flex;
    justify-content: space-between;
    padding-left: 120px;
    padding-right: 150px;

    gap: 50px;
    margin-bottom: 100px;
}

/* Products wrapper styles */
.additional-products-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    
    
    background-color: #f8f8f9;
    padding: 30px;
}
.additional-products-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    /* display: flex;
    flex-direction: row;
    align-items: center; */
    gap:10px;
}

.additional-products-header {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #ff6600;
}

/* Individual product styles */
.add-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    text-align: center;
}

.add-product img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.add-product-name {
    font-size: 1em;
    color: #555;
}
.feedback-form-open{
    background-color: #ff6600;
    color:white;
    height: 40px;
    margin-top:5px;
    cursor: pointer;
  }
  .feedback-form-open:hover {
    background-color: #e69500;
  }
  .feedback-popup {
    display: none; /* Initially hidden */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    color: black;
    width: 900px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }
  .feedback-form input{
    border: 1px solid black;
    height: 40px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
  }
  .feedback-form textarea{
    border: 1px solid black;
  }
  @media screen and (max-width:500px) {
    .feedback-popup{
        width: 90vw;
        border-radius: 10px;
    }
    .feedback-form button{
        width: 140px;
    }
  }
  .feedback-popup-header {
    font-size: 24px;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 15px;
    text-align: center;
  }
  .feedback-popup textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    resize: none;
  }
  .feedback-popup button {
    width: 100%;
    background-color: ff6600    ;
    color: black;
    padding: 10px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  .feedback-popup button:hover {
    background-color: #ff6600;
  }
  .overlay {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  .admin-overlay{
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3000;
  }

  .feed-add-wrapper{
    padding-left: 10vw;
    padding-right: 11vw;
    display: flex;
    flex-direction: row;
    gap:80px;
    margin-bottom: 100px;
  }
  .feed-wrapper{
    width: 70%;
    
  }

  .additional-wrapper{
    width: 30%;
  }
  .header-search{
    width: 140px;
    display: none;
    border: 0px;
    border-radius:0px ;
    text-decoration: none;
    outline:none;
    

  }
  .header-search::placeholder{
    padding-left: 20px;
  }
  .header-search-wrap{
    width: 215px;
    display: none;
    flex-direction: row;
    justify-content: center;
    border:1px solid black;
    border-radius: 10px;
    height: 29px;
    padding: 2px;
  }
  .header-search-wrap svg{
    color:black;
  }
  @media screen and (max-width:1000px) {
    .feed-add-wrapper{
        flex-direction: column;
        align-items: center;
    }
    .additional-wrapper{
        width: auto;
    }
    .additional-products-container{
        width: 430px;
    }
  }
  @media screen and (max-width:500px) {
    .feedback-form-open{
        font-size: 11px;
    }
    .additional-products-container{
        width: auto;
    }
    .feed-wrapper{
        width: auto;
    }
  }
  .ero{
    background-image: url('../images/img/ero\ _elektronik.jpg');
    background-size: contain; /* Make the image cover the entire div */
  background-position: center ; /* Center the image within the div */
  background-repeat: no-repeat;
  width: 300px;
  height: 100px;
  overflow: hidden;
  }
  #hSearch-cross{
    display: block;
    cursor: pointer;
  }
 
/* .try{
    width: 100px !important;
    height: 100px;
} */


/*** Footer End ***/