<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&amp;display=swap');

.autosuggest{
width: 450px !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    position: relative;
}

html,body {
    width: 100%;
    height: 100%;
}

body {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}

:root {
    --blue-color: #246AFD;
    --black-color: #03000B;
    --lightblack-color: #1F2A37;
    --gray-color: #747474;
    --lightblue-color: #D8E7EF;
    --white-color: #ffffff;
    --light-background: #F7F7F7;
}

select,input,button {
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
}

a {
    text-decoration: none;
}

.main-container {
    max-width: 1800px;
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
}

/* navbar css start here */

.main-nav {
    background: var(--light-background);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1250px;
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    padding: 10px 0;
}

.logo {
    width: 170px;
}

.logo img {
    width: 100%;
}

.navbar ul {
    list-style-type: none;
}

.navbar ul li {
    display: inline-block;
    margin: 0 15px;
}

.navbar ul a {
   font-size: 18px;
   font-weight: 500;
   position: relative;
   color: var(--black-color);
   transition: 0.3s;
}

.navbar ul a:hover::before,.navbar ul .active::before {
   content: '';
   width: 100%;
   height: 3px;
   position: absolute;
   bottom: -5px;
   left: 0;
   background: var(--blue-color);
}

.login-btn {
    width: 180px;
    height: 50px;
    background: var(--blue-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
}

.login-btn:hover {
    background: var(--lightblack-color);
}

/* navbar css end here */

/* header css start here */

.main-header {
    background: linear-gradient(to bottom, var(--light-background),var(--white-color));
}

.header {
    max-width: 1250px;
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    padding: 5rem 0 1rem 0;
}

.header-left {
    width: 45%;
}

.bg-effect {
    width: 170px;
    position: absolute;
    top: -5%;
    left: -12%;
}

.header-left h3 {
    text-transform: uppercase;
    margin: 0.5rem 0 1rem 0;
    font-size: 30px;
}

.header-left h1 {
    max-width: 550px;
    font-size: 70px;
    line-height: 80px;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.header-left h1 span {
    color: var(--blue-color);
}

.header-left p {
    max-width: 530px;
    font-size: 16px;
    color: var(--gray-color);
    margin-bottom: 3rem;
    line-height: 25px;
}

.header-product {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    border-radius: 10px;
}

.h-prod {
   width: 30%;
   min-height: 6rem;
   height: fit-content;
   background: var(--lightblue-color);
   border-radius: 5px;
   padding: 14px 13px;
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   align-items: flex-start;
   gap: 10px;
   font-size: 14px;
   color: var(--lightblack-color);
   margin-bottom: 2rem;
   font-weight: 500;
   transition: 0.3s;
   cursor: pointer;
}

.h-prod:hover {
   background: #d2dfe6;
}

.h-prod img {
    width: 50px;
    border-radius: 5px;
}

.header-left button {
    background: var(--blue-color);
}

.header-right {
    width: 55%;
    margin: -3.5rem -3% 0 0;
}

.header-right img {
   width: 110%;
}

.toggle-btn {
    display: none;
}

@media(max-width:1000px) {

    .nav-btns {
        width: fit-content;
        display: flex;
        align-items: center;
        gap: 25px;
    }

    .logo {
        width: 170px;
    }
    .navbar ul {
        display: none;
      position: absolute;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      max-width: 400px;
      width: 100%;
      top: 70px;
      right: 0;
      background: var(--lightblack-color);
      padding: 25px 0;
      gap: 12px;
      border-radius: 10px;
    }

    .navbar ul.show {
        display: flex;
    }

    .navbar ul li {
        margin: 0px;
    }
    
    .navbar ul a {
       font-size: 16px;
       color: var(--white-color);
    }
    
    .login-btn {
        width: 150px;
        height: 42px;
        font-size: 14px;
    }

    .toggle-btn {
        display: block;
        width: 2.5rem;
    }

    .toggle-btn img {
        width: 100%;
    }
	
	li.tools-dropdown ul {
		position: initial;
	}

	li.tools-dropdown {
		text-align: center;
	}
    
    /* navbar css end here */
    
    /* header css start here */
    
    .header {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        padding: 8rem 0 1rem 0;
    }
    
    .header-left {
        max-width: 80%;
        width: 100%;
    }
    
    .header-right {
        max-width: 55%;
        width: 100%;
        margin: -3.5rem 0 0 0;
    }
    
    .header-right img {
       width: 100%;
    }
}

@media(max-width:750px) {

       .header {
        padding-top: 7rem;
       }

       .header-left {
        max-width: 100%;
    }
        
        .bg-effect {
            width: 100px;
            top: -3%;
            left: -12%;
        }
        
        .header-left h3 {
            margin: 0.5rem 0 1rem 0;
            font-size: 23px;
        }
        
        .header-left h1 {
            max-width: 350px;
            width: 100%;
            font-size: 40px;
            line-height: 50px;
        }
        
        .header-left p {
            max-width: 530px;
            font-size: 16px;
            margin-bottom: 2rem;
            line-height: 22px;
        }
        
        .header-product {
            flex-direction: column;
            gap: 5px;
        }
        
        .h-prod {
           width: 100%;
           min-height: fit-content;
           flex-direction: row;
           align-items: center;
           font-size: 14px;
           margin-bottom: 0rem;
           gap: 20px;
        }
        
        .h-prod img {
            width: 40px;
        }
        
        .header-right {
            max-width: 100%;
            margin: 0 0;
        }
        .login-btn {
            width: 130px;
            height: 35px;
            font-size: 13px;
        }
        .logo {
            width: 115px;
        }
        .toggle-btn {
            width: 1.8rem;
        }
}

/* header css end here */

/* services-sec css start here */

.calcula-sec {
    max-width: 1250px;
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0 3rem 0;
    gap: 3%;
    background: var(--white-color);
}

.calcula-sec h4 {
    text-transform: uppercase;
    color: var(--black-color);
    background: var(--lightblue-color);
    padding: 3px 11px;
    font-size: 18px;
    border-radius: 5px;
    margin-bottom: 0.7rem;
}

.main-heading {
    max-width: 650px;
    width: 100%;
    text-align: center;
    color: var(--black-color);
    margin-bottom: 3rem;
}

.calcula-content {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: flex-start;
    gap: 2%;
}

.cal-left,.cal-right {
    width: 40%;
}

.cal-left {
    background: var(--lightblue-color);
    padding: 30px 25px;
    border-radius: 20px;
}

.cal-left h2 {
    color: var(--black-color);
    margin-bottom: 0.3rem;
}

.cal-left p {
    color: var(--lightblack-color);
    font-size: 16px;
    margin-bottom: 1rem;
}

.cal-left form {
    width: 100%;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.cal-left label,.cal-left input,.cal-left select {
    width: 48%;
}

.cal-left label {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 600;
    padding-left: 5px;
}

.cal-left input[type="text"],.cal-left select {
    background: var(--white-color);
    font-size: 16px;
    padding: 10px 15px;
    margin: 6px 0 10px 0;
    border-radius: 7px;
    border: 1px solid var(--blue-color);
}

.cal-left input[type="button"] {
    width: 100%;
    background: var(--blue-color);
    color: var(--white-color);
    height: 40px;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 7px;
    font-weight: 600;
    transition: 0.3s;
}

.cal-left input[type="button"]:hover {
    background: var(--lightblack-color);
}

.cal-left img {
    width: 100%;
    border-radius: 10px;
}

.cal-right {
    height: fit-content;
    overflow: hidden;
    background: var(--lightblack-color);
    padding: 30px 25px;
    border-radius: 20px;
}

.cal-right h2 {
    color: var(--white-color);
    margin-bottom: 0.3rem;
}

.cal-right p {
    color: #CCCCCC;
    font-size: 16px;
    margin-bottom: 1rem;
}

.cal-right img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.cal-right b {
    width: 100%;
    color: var(--white-color);
    font-size: 20px;
}

.div_scroll_wide {
    height: 500px;
    background: #2c3b4b;
    color: var(--white-color);
    padding: 20px 15px;
    border-radius: 15px;
    overflow: auto;
}

.div_scroll_wide::-webkit-scrollbar {
    width: 20px;
  }

.div_scroll_wide::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
}
   
.div_scroll_wide::-webkit-scrollbar-thumb {
    background: var(--blue-color); 
    border-radius: 10px;
}
  
.div_scroll_wide::-webkit-scrollbar-thumb:hover {
    background: #205cde; 
}

@media(max-width:750px) {
    
    .calcula-sec h4 {
        font-size: 16px;
    }
    
    .main-heading {
        margin-bottom: 2rem;
        font-size: 24px;
    }
    
    .calcula-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .cal-left,.cal-right {
        width: 100%;
    }
    
    .cal-left {
        padding: 20px 20px;
        border-radius: 20px;
    }
    
    .cal-left h2 {
        font-size: 20px;
    }
    
    .cal-right {
        padding: 20px;
    }
    
    .cal-right h2 {
        font-size: 20px;
    }
    
    .div_scroll_wide {
        height: 350px;
    }
}

/* services-sec css end here */

/* product-sec css start here */

.product-sec {
    max-width: 1250px;
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
}

.product-sec h4,.comprar-sec h4 {
    text-transform: uppercase;
    color: var(--black-color);
    background: var(--lightblue-color);
    padding: 3px 11px;
    font-size: 18px;
    border-radius: 5px;
    margin-bottom: 0.7rem;
}

.product-cards {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.pro-card {
    width: 450px;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: flex-start;
    border: 2px solid var(--light-background);
    padding: 25px 20px 25px 10px;
    gap: 25px;
    border-radius: 15px;
}

.card-content {
    padding-top: 1rem;
}

.card-content h3 {
    color: var(--black-color);
    font-size: 20px;
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 16px;
    color: var(--gray-color);
    margin-bottom: 22px;
}

.card-content button {
    width: 130px;
    height: 40px;
    background: var(--lightblue-color);
    color: var(--blue-color);
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
}

.card-content button:hover {
   background: var(--blue-color);
   color: var(--white-color);
}

.pro-card img {
    width: 30%;
}

@media(max-width:750px) {
    .product-sec {
        padding: 3rem 0;
    }
    
    .product-sec h4,.comprar-sec h4 {
        font-size: 16px;
    }
    
    .product-cards {
        gap: 20px;
    }
    
    .pro-card {
        max-width: 450px;
        width: 100%;
        padding: 20px 15px 20px 10px;
        gap: 20px;
    }
    
    .card-content {
        padding-top: 0.3rem;
    }
    
    .card-content h3 {
        font-size: 18px;
        margin-bottom: 0.4rem;
    }
    
    .card-content p {
        margin-bottom: 15px;
    }
    
    .card-content button {
        width: 120px;
        height: 35px;
    }
}

/* product-sec css end here */

/* service-sec css start here */

.main-ser-sec {
    background: var(--lightblack-color);
}

.service-sec {
    max-width: 1250px;
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 4rem 0;
}

.service-sec h4 {
    text-transform: uppercase;
    color: var(--black-color);
    background: var(--lightblue-color);
    padding: 3px 11px;
    font-size: 18px;
    border-radius: 5px;
    margin-bottom: 0.7rem;
}

.service-sec h1 {
    color: var(--white-color);
}

.service-content {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.ser-card {
    width: 330px;
    min-height: 170px;
    height: fit-content;
    border: 2px solid #324357;
    border-radius: 10px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    padding: 28px 20px;
    gap: 17px;
    color: var(--light-background);
    font-size: 16px;
}

.ser-card img {
    width: 18%;
}

@media(max-width:750px) {
    .service-sec {
        padding: 3rem 0;
    }
    
    .service-sec h4 {
        font-size: 16px;
    }
    
    .service-content {
        gap: 20px;
    }
    
    .ser-card {
        max-width: 330px;
        width: 100%;
        min-height: fit-content;
        padding: 20px 20px;
        gap: 14px;
    }
}

/* service-sec css end here */

/* review-sec css start here */

.review-sec {
    max-width: 1250px;
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 4rem 0;
}

.review-sec h4 {
    text-transform: uppercase;
    color: var(--black-color);
    background: var(--lightblue-color);
    padding: 3px 11px;
    font-size: 18px;
    border-radius: 5px;
    margin-bottom: 0.7rem;
}

.review-cards {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px; 
}

.rev-card {
    max-width: 350px;
    width: 100%;
    min-height: 28rem;
    height: fit-content;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--lightblue-color);
    background: #fcfcfc;
}

.rev-card img {
    width: 100%;
    margin-bottom: 20px;
}

.rev-card p {
    width: 86%;
    margin-left: 7%;
    font-size: 16px;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.rev-card .name {
    text-align: right;
    color: var(--blue-color);
    font-style: italic;
}

@media(max-width:750px) {
    .review-sec {
        padding: 3rem 0;
    }
    
    .review-sec h4 {
        font-size: 16px;
    }
    
    .review-cards {
        gap: 20px; 
    }
    
    .rev-card {
        min-height: fit-content;
    }
    
    .rev-card img {
        margin-bottom: 15px;
    }
    
    .rev-card p {
        margin-bottom: 15px;
    }
}

/* review-sec css end here */

/* main-footer css start here */

.main-footer {
    background: var(--lightblack-color);
}

footer {
    max-width: 1250px;
    width: 100%;
}

.footer-top {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
}

.footer-left {
    width: 350px;
    padding: 70px 15px;
    border-right: 1px solid var(--black-color);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info p {
    color: #CCCCCC;
    font-size: 14px;
    margin-bottom: 7px;
}

.contact-info a,.contact-info h4 {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
}

.footer-right {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    padding-left: 5%;
}

.f-r-box {
    width: 200px;
    padding: 70px 15px;
}

.f-r-box h3 {
    color: var(--white-color);
    margin-bottom: 20px;
}

.f-r-box ul {
    list-style-type: none;
}

.f-r-box ul li {
    margin: 8px 0;
}

.f-r-box ul a {
    color: #CCCCCC;
}

.footer-logo {
    width: 270px;
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid var(--black-color);
}

.footer-bottom p {
    color: #CCCCCC;
    font-size: 16px;
}

.footer-bottom ul {
    list-style-type: none;
}

.footer-bottom ul li {
    display: inline-block;
    margin: 0 15px;
}

.footer-bottom ul a {
    color: #CCCCCC;
    font-size: 14px;
}

@media(max-width:750px) {
    
    .footer-top {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-left {
        width: 350px;
        padding: 70px 10px 10px 10px;
        gap: 20px;
    }
    .footer-right {
        gap: 0px;
        padding: 0;
    }
    
    .f-r-box {
        width: 200px;
        padding: 20px 10px;
    }
    
    .f-r-box h3 {
        color: var(--white-color);
        margin-bottom: 20px;
    }
    
    .footer-logo {
        width: 200px;
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
}

/* main-footer css end here */











/* faq page css start here */

.faq-section {
    max-width: 1250px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 10rem 0 4rem 0;
}

.faq-section h4 {
    text-transform: uppercase;
    color: var(--black-color);
    background: var(--lightblue-color);
    padding: 3px 11px;
    font-size: 18px;
    border-radius: 5px;
    margin-bottom: 0.7rem;
}

.faq-content {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.accordion {
    background: var(--lightblue-color);
    color: var(--black-color);
    cursor: pointer;
    padding: 18px 22px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: 0.4s;
    border-radius: 7px;
    font-weight: 600;
  }
  
  .show, .accordion:hover {
    background: var(--blue-color); 
  }
  
  .panel {
    padding: 18px;
    display: none;
    background-color: var(--light-background);
    overflow: hidden;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 600;
  } 
  .panel p {
    margin: 5px;
  }

.contact-support {
    max-width: 1250px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.contact-support img {
   width: 30%;
   border-radius: 10px;
}

.c-s-right {
    width: 45%;
}

.c-s-right h2 {
    font-size: 25px;
    margin-bottom: 15px;
}

.c-s-right p {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--gray-color);
}

@media(max-width:750px) {
    .faq-section {
        padding: 8rem 0 4rem 0;
    }
    
    .faq-section h4 {
        font-size: 16px;
    }
    
    .faq-content {
        width: 100%;
        gap: 10px;
    }
    
    .accordion {
        padding: 15px 18px;
        width: 100%;
      }    
    .contact-support {
        flex-direction: column-reverse;
        gap: 30px;
        margin-top: 0;
        margin-bottom: 4rem;
    }
    
    .contact-support img {
       width: 70%;
       display: none;
    }
    
    .c-s-right {
        width: 100%;
    }
    
    .c-s-right h2 {
        font-size: 20px;
    }
}

/* contact page css start here */

.conto-section {
    max-width: 1250px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 10rem 0 4rem 0;
}

.conto-section h4 {
    text-transform: uppercase;
    color: var(--black-color);
    background: var(--lightblue-color);
    padding: 3px 11px;
    font-size: 18px;
    border-radius: 5px;
    margin-bottom: 0.7rem;
}

.conto-content {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.conto-content img {
   width: 35%;
}

.conto-content .contact-right {
    width: 40%;
}

.contact-right p {
    color: var(--gray-color);
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-right form {
    width: 100%;
}

.contact-right form input {
    width: 100%;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 7px;
    margin-bottom: 15px;
    border: 1px solid var(--blue-color);
}

.contact-right form input[type="button"] {
    width: 49%;
    border: none;
}

.contact-right textarea {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 7px;
    margin-bottom: 20px;
    border: 1px solid var(--blue-color);
}
.contact-right form .delete {
    background: var(--black-color);
    margin-right: 1%;
    color: var(--white-color);
    font-weight: 600;
}
.contact-right form .send {
    background: var(--blue-color);
    color: var(--white-color);
    font-weight: 600;
}

@media(max-width:750px) {
    .conto-section {
        padding: 8rem 0 4rem 0;
    }
    
    .conto-section h4 {
        font-size: 16px;
    }
    
    .conto-content {
        flex-direction: column;
    }
    
    .conto-content img {
       width: 35%;
       display: none;
    }
    
    .conto-content .contact-right {
        width: 100%;
    }
    
    .contact-right form input[type="button"] {
        width: 48%;
    }
}

/* contact page css end here */

/* login-sec css start here */

.login-sec {
    max-width: 1250px;
    width: 100%;
    min-height: 100vh;
    height: fit-content;
    padding: 4rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    width: 80%;
    height: fit-content;
    overflow: hidden;
    border-radius: 20px;
    border: 9px solid var(--lightblack-color);
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.login-box img {
    width: 45%;
}

.login-form {
    width: 50%;
    height: 28rem;
    background: var(--lightblack-color);
    padding: 45px 35px;
}

.login-heading {
    color: var(--white-color);
    font-weight: 700;
    font-size: 22px;
}

.login-form p {
    color: #CCCCCC;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 40px;
}

.login-form input {
    width: 100%;
    border: 1px solid #989898;
    color: #CCCCCC;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 7px;
    font-size: 16px;
}

.login-form input::-webkit-input-placeholder {
    color: #CCCCCC;
}

.login-form .check-box {
   display: flex;
   align-items: center;
   gap: 10px;
   margin: 12px 0;
}

.login-form .check-box label {
    color: #F7F7F7;
    margin-top: -8px;
}

.login-form input[type="checkbox"] {
    width: fit-content;
    height: fit-content;
}

.login-form input[type="button"] {
    background: var(--white-color);
    color: var(--black-color);
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s;
    margin-top: 1rem;
}

.login-form input[type="button"]:hover {
    background: var(--light-background);
}

@media(max-width:750px) {
    
    .login-box {
        max-width: 700px;
        width: 100%;
        border: none;
    }
    
    .login-box img {
        width: 45%;
        display: none;
    }
    
    .login-form {
        width: 100%;
        height: fit-content;
        padding: 30px 20px;
    }
}

/* login-sec css end here */

/* book page css start here */

.book-sec {
    max-width: 1250px;
   width: 100%;
   display: flex;
   justify-content: center;
   flex-direction: column;
   align-items: center;
   padding: 10rem 0 4rem 0;
}

.book-sec h4 {
    text-transform: uppercase;
    color: var(--black-color);
    background: var(--lightblue-color);
    padding: 3px 11px;
    font-size: 18px;
    border-radius: 5px;
    margin-bottom: 0.7rem;
}

.book-img {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.book-img img {
    width: 25%;
}

.book-i-con {
    width: 40%;
}

.book-i-con h2 {
    color: var(--black-color);
    font-size: 26px;
    margin-bottom: 4px;
}

.book-i-con h3 {
    font-size: 18px;
    color: var(--blue-color);
    margin-bottom: 12px;
}

.book-i-con p {
    font-size: 16px;
    color: var(--gray-color);
    margin-bottom: 8px;
}

.book-i-con p b {
    color: var(--black-color);
}

.book-compare {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 1.5rem 0;
}

.book-compare h2 {
    color: var(--blue-color);
    margin-bottom: 1rem;
    text-align: left;
}

.book-data table {
    max-width:550px;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #CCCCCC;
}

.book-data tr,.book-compare td {
    border: 1px solid #CCCCCC;
}

.book-data td {
    padding: 10px 20px;
    font-size: 16px;
}

.book-data {
    max-width: 550px;
    width: 100%;
    margin: 1rem 0;
}

.book-data h2 {
    color: var(--blue-color);
    margin-bottom: 10px;
}

.book-data p {
   color: var(--gray-color);
   display: flex;
   align-items: center;
   gap: 10px;
   margin-bottom: 6px;
}

.book-double {
    max-width: 750px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-content: center;
    gap: 4%;
}

.book-d-left {
    width: 48%;
}
.book-double form {
    width: 48%;
}

.book-double form input,.book-double form select {
    width: 100%;
    border: 1px solid #CCCCCC;
    font-size: 16px;
    padding: 7px 12px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-weight: 600;
}

.book-double form label {
    color: var(--blue-color);
    font-weight: 600;
    font-size: 18px;
}

.book-double form input[type="button"] {
    margin-top: 12px;
    background: var(--black-color);
    color: var(--white-color);
}

.all-sample-data {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.all-sample-data p {
    margin-bottom: 20px;
}

.sample_data {
    width: 100%;
    background: var(--light-background);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    overflow: auto;
    max-height: 20rem;
    border: 15px solid var(--light-background);
}

.related-book {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.book-re {
    width: 27%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-size:16px;
    font-weight: 600;
    color: var(--gray-color);
}

.book-re a {
    width: 100%;
}

.related-book a img {
    width: 100%;
}

.relate-book-heading {
    max-width: 750px;
    width: 100%;
    gap: 4%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.product-page {
    margin-top: 10rem;
}

.main-pro-card {
    width: 80%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 25px;
}

.main-pro-card img {
    width: 30%;
}

.main-locate-op {
    background: #68C6FD;
}

.locate-option {
    max-width: 1000px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}

.locate-option img {
    width: 30%;
}

.locate-op-right {
    width: 40%;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.locate-op-right button {
    width: 19rem;
    height: 3rem;
    background: var(--lightblack-color);
    color: var(--white-color);
    border-radius: 7px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.locate-op-right button:hover {
    background: var(--black-color);
}

.main-radio-page {
    margin-top: 8rem;
}

@media(max-width:750px) {
    .book-sec {
       padding: 8rem 0 4rem 0;
    }
    
    .book-sec h4 {
        font-size: 15px;
    }
    
    .book-img {
        flex-direction: column;
        gap: 20px;
    }
    
    .book-img img {
        width: 50%;
    }
    
    .book-i-con {
        width: 100%;
    }
    
    .book-i-con h2 {
        font-size: 20px;
    }
    
    .book-compare {
        margin: 1rem 0;
    }
    
    .book-compare h2 {
        margin-bottom: 1rem;
        text-align: start;
        font-size: 20px;
    }
    
    .book-compare td {
        padding: 6px 12px;
        font-size: 15px;
    }
    
    .book-data {
        margin: 0.5rem 0;
    }
    
    .book-data h2 {
        font-size: 20px;
    }
    
    .book-double {
        flex-direction: column;
        gap: 4%;
    }
    
    .book-d-left {
        width: 100%;
    }
    .book-double form {
        width: 100%;
    }    
    .sample_data {
        border: 10px solid var(--light-background);
    }
    
    .related-book {
        justify-content: space-around;
    }
    
    .book-re {
        width: 25%;
        font-size:14px;
    }
    
    .product-page {
        margin-top: 8rem;
    }
    
    .main-pro-card {
        width: 100%;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 2.5rem;
    }
    
    .main-pro-card img {
        width: 50%;
    }
    
    .locate-option {
        flex-direction: column;
        padding: 2rem 0;
    }
    
    .locate-option img {
        width: 30%;
        display: none;
    }
    
    .locate-op-right {
        justify-content: center;
        align-items: center;
    }
    
    .locate-op-right button:hover {
        background: var(--black-color);
    }
    
    .main-radio-page {
        margin-top: 6rem;
    }
}

/* book page css end here */

/* license-content page css start here */

.license-content {
    max-width: 1000px;
    width: 100%;
    margin-top: 10rem;
    margin-bottom: 4rem;
}

.license-content .main-heading {
    max-width: 100%;
}

.license-top {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.license-box {
    max-width: 280px;
    width: 100%;
    min-height: 10rem;
    border: 1px solid #CCCCCC;
    padding: 25px 20px;
    border-radius: 10px;
}

.license-box h3 {
    color: var(--black-color);
    margin-bottom: 7px;
}

.license-box p {
    color: var(--gray-color);
    font-size: 16px;
}

.license-content h2 {
    color: var(--black-color);
    margin-bottom: 20px;
}

.license-content h3 {
    color: var(--black-color);
    margin-bottom: 8px;
}

.license-content p,.license-content li {
    color: var(--gray-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.license-content ul {
    margin: 30px;
}

@media(max-width:750px) {
    .license-content {
        margin-top: 8rem;
    }
    
    .license-top {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .license-box {
        max-width: 450px;
        width: 100%;
        min-height: fit-content;
        padding: 15px;
    }
    
    .license-box h3 {
        margin-bottom: 0px;
        font-size: 18px;
    }
    
    .license-box p {
        font-size: 16px;
    }
    
    .license-content h2 {
        margin-bottom: 10px;
        font-size: 20px;
    }
    
    .license-content h3 {
        margin-bottom: 5px;
    }

    .license-content ul {
        margin: 10px 15px;
    }
}

/* license-content page css end here */

/* comprar page css start here */

.comprar-sec {
    max-width: 1250px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 10rem 0 4rem 0;
}

.comprar-content {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
}

.com-left-form {
    width: 30%;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    background: var(--lightblack-color);
    padding: 30px 25px;
    border-radius: 15px;
    color: var(--light-background);
}

.c-l-f-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 5px 0;
    border-top: 1px solid var(--gray-color);
}

.c-l-f-content:first-child {
    border: none;
    font-weight: 600;
    color: var(--white-color);
}

.c-l-f-content:last-child {
    font-weight: 600;
    color: var(--white-color);
}

.c-l-f-content p {
    width: 50%;
    font-size: 16px;
}

.c-l-f-content p:nth-child(2) {
    text-align: end;
}

.c-l-f-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    margin-top: 20px;
}

.c-l-f-btn button {
    width: 48%;
    height: 2.5rem;
    background: var(--blue-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    border-radius: 7px;
    transition: 0.3s
}

.c-l-f-btn button:hover {
    background: var(--white-color);
    color: var(--black-color);
}

form.c-l-f-content {
    border: none;
    margin-top: 10px;
}

form.c-l-f-content input {
    width: 48%;
    height: 2.5rem;
    background: var(--blue-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    border-radius: 7px;
    transition: 0.3s
}

form.c-l-f-content input:hover {
    background: var(--white-color);
    color: var(--black-color);
}


.comp-c-right {
    width: 60%;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.com-con-box {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.com-con-box img {
    width: 25%;
}

.com-con-right {
    width: 60%;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.5rem;
    margin-bottom: 50px;
}

.com-btn {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
    gap: 20px;
}

.com-con-right button {
    width: 7rem;
    height: 2.7rem;
    background: var(--lightblue-color);
    color: var(--blue-color);
    font-size: 16px;
    font-weight: 600;
    border-radius: 7px;
    transition: 0.3s;
}

.com-con-right button:hover {
    background: var(--blue-color);
    color: var(--white-color);
}

.com-btn h3 {
    font-size: 18px;
    color: var(--blue-color);
}

.com-con-right h2 {
    font-size: 20px;
    color: var(--black-color);
    margin-bottom: 8px;
}

.com-con-right p {
    color: var(--gray-color);
    font-size: 16px;
}

.com-con-right hr {
    width: 80%;
    height: 3px;
    border: none;
    background: var(--blue-color);
    margin: 15px 0;
}

@media(max-width:750px) {
    .comprar-sec {
        margin: 8rem 0 4rem 0;
    }
    
    .comprar-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .com-left-form {
        width: 100%;
    }    
    .comp-c-right {
        width: 100%;
        flex-direction: column;
        gap: 20px;
    }
    
    .com-con-box {
        flex-direction: column;
        gap: 10px;
    }
    
    .com-con-box img {
        max-width: 250px;
        width: 40%;
    }
    
    .com-con-right {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 0.5rem;
        margin-bottom: 50px;
    }
    
    .com-btn {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        align-items: center;
        margin-bottom: 10px;
        gap: 20px;
    }
}

/* comprar page css end here */

.book-sec .book-img .com-con-right {
    width: 45%;
}

.price-bold {
    color: var(--blue-color);
    font-size: 20px;
}

.question-mark {
   color: var(--white-color);
   z-index: 10;
   background: var(--blue-color);
   padding: 2px 10px;
   aspect-ratio: 1/1;
   border-radius: 50%;
}

.tools-dropdown img {
   width: 15px;
   margin-left: 5px;
}

.drop-down {
	display: none;
    position: absolute;
    top: 25px;
    background: var(--lightblack-color);
    border-radius: 8px;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 0;
    gap: 8px;
	min-width: auto;
	 white-space: nowrap;
}

.drop-down li {
    border-bottom: 1px solid var(--gray-color);
    padding-bottom: 7px;
}

.drop-down li:last-child {
    border: none;
}

.drop-down li a:hover {
    color: var(--lightblue-color);
}

.drop-down li a::before {
    display: none;
}

.drop-down li a {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
}
.tools-dropdown:hover .drop-down {
    display: flex;
}

@media(max-width:750px) {
    .book-sec .book-img .com-con-right {
        width: 100%;
    }
    .p-b-bottom {
        font-size: 14px;
    }
}

@media(max-width:1000px) {
    .navbar ul .drop-down {
        top: 25px;
        z-index: 20;
    }

    .tools-dropdown:hover .drop-down {
        display: flex;
    }
}

.checkout-page {
    width: 100%;
    height: fit-content;
    padding: 12rem 10% 8rem 10%;
    gap: 40px;
    display: flex;
    flex-direction: column;
}

.checkout-page-content {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: flex-start;
    gap: 10%;
}

.checkout-left {
    width: 40%;
}

.checkout-page h4 {
    text-transform: uppercase;
    color: var(--black-color);
    background: var(--lightblue-color);
    padding: 3px 11px;
    font-size: 18px;
    border-radius: 5px;
    margin-bottom: 0.7rem;
}

.checkout-list {
   width: 100%;
}

.ch-list-head {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: flex-start;
    border-bottom: 1px solid var(--lightblue-color);
    padding-bottom: 0.5rem;
    margin-bottom: 0.3rem;
}

.ch-list-head h3 {
    color: var(--lightblack-color);
    font-size: 18px;
}

.ch-list-head h3:nth-child(1) {
    width: 60%;
}

.ch-list-head h3:nth-child(2) {
    width: 40%;
    text-align: end;
}

.ch-list-data {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    padding: 0.4rem 0;
}

.ch-product {
    width: 60%;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.ch-product img {
    width: 15%;
}

.ch-product p {
    width: 60%;
    font-size: 14px;
}

.ch-total {
    width: 40%;
    padding-left: 10%;
    text-align: end;
}

.ch-bottom-total {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-end;
    border-top: 1px solid var(--lightblue-color);
    padding-top: 15px;
    margin-top: 5px;
}

.ch-bot-left {
    width: 55%;
}

.ch-bot-left a {
   color: var(--gray-color);
   font-size: 16px;
   transition: 0.3s;
}

.ch-bot-left a:hover {
    text-decoration: underline;
}

.ch-bot-left a img {
   width: 16px;
   rotate: 90deg;
   margin-right: 5px;
   opacity: 0.7;
}

.ch-bot-right {
    width: 40%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
}

.ch-bot-right p {
    width: 50%;
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 5px;
}

.ch-bot-right p:nth-child(2),
.ch-bot-right p:nth-child(4),
.ch-bot-right p:nth-child(6),
.ch-bot-right p:nth-child(8) {
    font-weight: 600;
    color: var(--black-color);
    font-size: 16px;
    text-align: end;
}

.ch-bot-right p:nth-child(5),
.ch-bot-right p:nth-child(6) {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--lightblue-color);
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
}

.checkout-right h3 {
    color: var(--black-color);
    margin-bottom: 20px;
}

.checkout-right {
    width: 40%;
}

.checkout-right form {
    width: 100%;
}

.checkout-right form label,
.checkout-right form input,
.checkout-right form select {
    width: 100%;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

.checkout-right form input,
.checkout-right form select {
    font-size: 16px;
    padding: 10px 15px;
    border: 1px solid var(--lightblue-color);
    border-radius: 7px;
    margin: 5px 0;
}

.checkout-right form img {
    width: 100%;
    border-radius: 8px;
    margin-top: 10px;
}

.checkout-right form a {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 10px 0;
    color: var(--gray-color);
    font-size: 16px;
}

.checkout-right form a input {
    width: fit-content;
    margin-right: 10px;
}

.checkout-right form .submit-btn {
    background: var(--blue-color);
    color: var(--white-color);
    font-weight: 600;
    transition: 0.3s;
}

.checkout-right form .submit-btn:hover {
    background: var(--black-color);
    border-color: var(--black-color);
}

@media(max-width:1200px) {
    .checkout-page {
        padding: 10rem 5% 6rem 5%;
        gap: 30px;
        display: flex;
        flex-direction: column;
    }
}

@media(max-width:1000px) {
    .checkout-page-content {
        gap: 2%;
        align-items: center;
    }
    .checkout-left {
        width: 48%;
    }
    .checkout-right {
        width: 48%;
    }
}

@media(max-width:750px) {
    .checkout-page {
        padding: 8rem 5% 5rem 5%;
    }
    .checkout-page-content {
        justify-content: flex-start;
        flex-direction: column;
        gap: 2rem;
    }
    .checkout-left {
        max-width: 500px;
        width: 100%;
    }
    
    .checkout-page h4 {
        font-size: 16px;
    }
    
    .ch-list-head h3 {
        font-size: 14px;
    }
    
    .ch-list-head h3:nth-child(1) {
        width: 60%;
    }
    
    .ch-list-head h3:nth-child(2) {
        width: 40%;
        padding-left: 3%;
    }
    
    .ch-list-data {
        padding: 0.4rem 0;
    }
    
    .ch-product {
        width: 60%;
        gap: 10px;
    }
    
    .ch-product img {
        width: 22%;
    }
    
    .ch-product p {
        width: 60%;
        font-size: 12px;
    }
    
    .ch-total {
        width: 40%;
        padding-left: 5%;
    }
    
    .ch-bot-left {
        width: 60%;
    }
    
    .ch-bot-left a {
       font-size: 13px;
    }
    
    .ch-bot-left a img {
       width: 12px;
       margin-right: 0;
    }
    
    .ch-bot-right {
        width: 40%;
    }
    
    .ch-bot-right p {
        font-size: 13px;
        margin-bottom: 4px;
    }
    
    .ch-bot-right p:nth-child(2),
    .ch-bot-right p:nth-child(4) {
        font-size: 15px;
    }
    
    .ch-bot-right p:nth-child(5),
    .ch-bot-right p:nth-child(6) {
        margin-top: 5px;
        padding-top: 5px;
        font-size: 16px;
    }
    
    .checkout-right h3 {
        font-size: 17px;
        margin-bottom: 15px;
    }
    
    .checkout-right {
        max-width: 500px;
        width: 100%;
    }
    
    .checkout-right form input,
    .checkout-right form select {
        font-size: 15px;
        padding: 8px 13px;
        border-radius: 5px;
        margin: 4px 0;
    }

    .checkout-right form img {
        width: 100%;
        border-radius: 8px;
        margin-top: 10px;
    }

    .checkout-right form a {
        margin: 8px 0;
        font-size: 14px;
    }
    
    .checkout-right form input[type="button"] {
        padding: 10px 0;
    }
}

.footer-flags {
    text-align: center;
    padding-top: 20px;
}

.footer-flags a {
    display: inline-block;
    margin: 0 10px;
}

.footer-flags img {
    width: 40px;  /* adjust size as needed */
    height: auto;
}

/* ---------- purchased product page css start here -------- */

.purchased-product {
    width: 100%;
    min-height: 50vh;
    height: fit-content;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 1rem 5% 5rem 5%;
}

.purchased-product table,
.purchased-product table tr,
.purchased-product table tr th,
.purchased-product table tr td {
    border: 1px solid var(--lightblue-color);
    border-collapse: collapse;
    text-align: center;
}

.purchased-product table {
    max-width: 850px;
    width: 100%;
}

.purchased-product table img {
    width: 70px;
}

.purchased-product table tr th,
.purchased-product table tr td {
    padding: 10px;
}

.purchased-product table tr th {
    background: var(--blue-color);
    color: var(--white-color);
}

.purchased-product table tr td:first-child {
    padding: 0 10px;
}

.purchased-product table img {
    width: 70px;
}

.purchased-product .table-btn {
    color: var(--black-color);
    padding-bottom: 2px;
    border-bottom: 2px solid var(--blue-color);
    transition: 0.2s;
}

.purchased-product .table-btn:hover {
    color: var(--blue-color);
}

@media(max-width:750px) {

.purchased-product {
    width: 95%;
    min-height: fit-content;
    overflow: auto;
    padding: 0;
    margin: 7.5rem 0 4rem 0;
    justify-content: flex-start;
    align-items: flex-start;
}

.purchased-product::-webkit-scrollbar {
    height: 10px;
  }

  .purchased-product::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(128, 128, 128, 0.467); 
    border-radius: 10px;
}
   
.purchased-product::-webkit-scrollbar-thumb {
    background: var(--blue-color); 
    border-radius: 10px;
}
  
.purchased-product::-webkit-scrollbar-thumb:hover {
    background: #205cde; 
}

.purchased-product table {
    max-width: 850px;
    width: 650px;
    font-size: 14px;
}

.purchased-product table tr th,
.purchased-product table tr td {
    padding: 10px 8px;
}

.purchased-product table tr td:first-child {
    padding: 0 8px;
}

.purchased-product table img {
    width: 50px;
}
}


 div#map iframe {
    width: 100% !important;
}
</pre></body></html>