@charset "UTF-8";


/* NEW HEADER CSS */


        
    /* General styles for the header rows */
.header-row {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Constrained content within the rows */
.header-content {
    width: 95%;
    max-width: 1420px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Row 1: Red background for logo, search bar, and contact info */
.red-bg {
    background-color: #22458d;
    color: #FFF;
}
        
.grey-dark-bg {
    background-color: #333;
    color: #FFF;
}        

.logo {
    background-image: url('../images/header/tc-logo.svg');
    background-repeat: no-repeat;
    background-position: 8px 21px;
    background-size: auto 73px; /* Ensure the width fits the container and the height adjusts accordingly */
    width: 615px; /* Set a specific width */
    height: 113px; /* Set a specific height */
}
        
.search-bar input {
    padding: 10px;
    width: 300px;
}

.search-bar {
    position: relative; /* Allows positioning inside the logo container */
    top: 18px; /* Move the search bar above the strapline */
    left: 180px; /* Adjust based on layout */
    width: 370px; /* Adjust the size of the search box */
    padding: 10px;
}
        

.contact-info p {
    margin: 0;
    text-align: right;
}

.header-row.red-bg {
    height: 100px;
}

/* Row 2: Navigation bar */
.dark-grey-bg {
    background-color: #444;
    height: 37px;
    color: #FFF;
}

.navbar ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

.navbar ul li {
    display: inline-block;
}

.navbar ul li a {
    text-decoration: none;
    color: #FFF;
    font-size: 14px;    
    font-weight: bold;
}

/* Row 3: USB List Bar */




        
.contact-info {
    display: flex;               /* Use flexbox for the container */
    flex-direction: column;      /* Stack items vertically */
    align-items: flex-end;       /* Align items to the right */
}

.contact-info div {
    display: flex;
    align-items: center;         /* Aligns the icon and text vertically */
    margin-bottom: 8px;         /* Adds space between the phone and email lines */

}

.contact-info img {
    margin-right: 8px;          /* Adds space between the icon and text */
}


.email-info {
    /* Optional: Adjust specific styling for phone and email lines */
}
        
.phone-info {font-size: 24px; font-weight: bold; letter-spacing: 1px;
    
}        
        
.phone-info a {color: #FFF; text-decoration: none;}
        
.intl-phone {
            
        }  
        
        
.new-quote {
    font-size: 18px;
    color: #FFF;
    letter-spacing: 0.02em;
    
}     
        
        
        
    /* new flags drop-down container */
.flag-dropdown {
    position: relative;
    display: inline-block;
    margin: -10px;
    font-size: 0.9rem;
}

/* Button styling */
.flag-dropbtn {
    
    border: none;
    padding-right: 8px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 9px 0px 9px 0px;
    background: none;
    
}

/* Flag icon styling */
.flag-icon {
    width: 25px;
    margin-right: 10px;
    width: 25px; 
    border: 1px solid white;
}

/* Arrow styling */
.arrow {
    color: #fff;
    font-size: 12px;
}

/* Flag Dropdown content (hidden by default) */
.flag-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    width: 200px;
    right: 0;

}

/* Links inside the dropdown */
.flag-dropdown-content a {
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    
}

.flag-dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Show the dropdown menu on hover */
.flag-dropdown:hover .flag-dropdown-content {
    display: block;
}
    
    .country-name {
        color: #fff;
        padding-right: 5px;
        
    }   
        
.wallchart_request_desktop td {
    width: 500px;
    
}

.wallchart_request_desktop input[type="text"] {
    width: 100%;
    box-sizing: border-box; /* Makes sure padding doesn’t affect width */
    margin-bottom: 5px;
}       

.formitemcontainer input[type="text"] {
            padding: 2px;
            border: 1px solid #555;
            border-radius: 1px;
        }
        
        
        
/* Mobile header */
        
.mobile-header {
            position: relative;
            display: flex;
            flex-direction: column;
            background-color: #22458d;
            color: #fff;
        }

        /* First Row with Logo, Search, Call, and Hamburger */
        .mobile-header-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 7px 10px 3px 8px;
        }

        .mob-logo img {
            width: 70px;
        }
		
        .mob-logo {
            padding-top: 2px;
        }
		
        .mob-call img {
            width: 28px;
        }
		
        .mob-call {
            
        }

        .mob-menu-icon {
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }

        .mob-bar {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 3px 0;
        }

        .mob-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100vw;
            background-color: #333;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            z-index: 1;
            display: none;
        }

        .mob-menu-open .mob-menu {
            display: block;
        }

        .mob-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mob-menu li {
            margin: 10px 0;
        }

        .mob-menu a {
            text-decoration: none;
            color: #fff;
            font-size: 18px;
            display: block;
            padding: 10px;
        }

        .mob-search {
            display: flex;
            align-items: center;
        }

        input[type="text"] {
            padding: 8px;
            border: none;
            border-radius: 5px;
        }

      
		
        #mob-submitButton {
            background: #f1f1f1 url(../TCsearch/img/search.svg) no-repeat center;
            background-size: 13px;
            width: 30px;
            height: 29px;
            text-indent: -9999px;
            cursor: pointer;
            margin: 0px;
            padding: 0px;
            border-radius: 0px 5px 5px 0px;
            border-style: solid;
            border-width: 0px;
            border-color: #333;
        }
		
        .mob-searchBox1 {
            position: flex;
            top: 20px;
            z-index: 1;
            display: flex;
        }
		
        #mob-q {
            padding: 2px 0px 0px 5px;
            background-color: white;
            color: #666;
            cursor: pointer;
            border-radius: 5px 0px 0px 5px;
            border-style: solid;
            border-width: 0px;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 13px;
            height: 27px;
            line-height: 27px;
            width: 125px;
        }

        /* New Strapline Row */
        .mobile-header-strapline {
            text-align: left;
            padding: 5px 8px;
            font-size: 1.2em;
            background-color: #22458d;
            letter-spacing: 0.02em;
        }



/* Dropdown button */
.dropbtn {
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: inline-block;

}

.dropbtn:hover {
  background-color: #444;
    text-decoration: none !important;
    }
    
/*.dropbtn::after {
  content: " ▼";
  font-size: 10px;
  margin-left: 4px;
  vertical-align: middle;
}
    
    

/* Dropdown */
    
.dropdownmenu {
    position: relative;
    }
    

.dropdownmenu-content {
  display: none !important;
  position: absolute;
  background-color: #444;
  top: 100%; /* Just under the button */
  left: 0;
  min-width: 200px;
  z-index: 999;
  padding-top: 6px; /* Creates a buffer for smoother hover transition */
  line-height: 30px;
 padding-bottom: 10px !important;
}


.dropdownmenu-content li {
  display: block; /* Make sure each <li> stays on its own line */
  width: 100%; /* Ensure full width is used */
  word-wrap: break-word; /* Wrap long words to avoid overflow */
}


.dropdownmenu-content li a {
  padding: 10px 15px;
  color: #fff;
  white-space: nowrap;
}

.dropdownmenu:hover .dropdownmenu-content {
  display: block !important;
}

.dropdownmenu-content li a:hover {
  
}


hr {width: 100%;}

        
.footer-column-break {
  break-before: column; /* Forces content after this to move to the next column */
  display: block; /* Ensures it's treated as a block element */
  height: 1px; /* Prevents extra spacing */
}

.central-footer-link {
    color: #333;
    font-size: 13px;
    text-decoration: none;
    line-height: 22px;
}

.central-footer-link:hover { 
    text-decoration: underline; /* Apply hover effect directly to the link */
}




.bulletcontainer3-2col {

	max-width:100%;
	float:left;
	clear:both;
    column-count: 2;
    column-gap: 80px;

	/*border: 1px solid #E6E0DE;
	border-radius: 5px;*/
	margin:5px;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666;
	padding-left: 5px;
	text-align:left;
	background:#FFF;
}


.next-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: #005fa3; /* Deep blue */
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: background-color 0.3s ease;
    margin-bottom: 2rem;
}

.next-button:hover {
  background-color: #004a82; /* Slightly darker on hover */
}

.next-button:focus {
  outline: 3px solid #ffa500; /* High contrast focus ring */
  outline-offset: 2px;
}

.more-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #005fa3;
  color: white;
  text-decoration: none;
  font-weight: 500;
  border-radius: 0.4rem;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.more-button:hover {
  background-color: #004a82;
}
        
.info-bubble {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  background-color: #F00;
  color: white;
  font-weight: bold;
  text-align: center;
  line-height: 1.2em;
  font-family: sans-serif;
  font-size: 0.9em;
    margin-right: 10px;
}


/* Desktop view */
.mobile-header {display: none;}
        
.desktop-header {display: block;}
        
.footer-temp {display: block;}  
        
.new-quote {display: block;}
    
.flag-dropdown {display: block;}
        
        

/* Mobile view */
@media (max-width: 768px) {
    .desktop-header {
        display: none;
    }
    .mobile-header {
        display: flex; /* or block, depending on layout */
    }
    .footer-temp {
        display: none;
    }
    .grey-band-bottom {display: none;}
    .bulletcontainer3-2col {column-count: 1;}
   
    
    
}
        
        
/* Mobile view */
@media (max-width: 330px) {
    #mob-q {width: 100px;}
        }        
        
    
/*tablet portrait view  */ 
        
@media screen and (min-width: 769px) and (max-width: 1230px) {
   
    .new-quote {font-size: 15px;}
    
    .phone-info {font-size: 19px;}
    
    .intl-phone {font-size: 11px;}

}
        
   
@media screen and (max-width: 1139px) {
    .new-quote {display: none;}
    .flag-dropdown {display: none;}
}      
        
@media screen and (min-width: 769px) and (max-width: 870px) {
    
    .navbar ul li a {font-size: 13px; font-weight: normal;}

}
        
@media screen (max-width: 325px) {
    
    .mobile-header-strapline {font-size: 1.1em;}
    
}        
        
        
/* NEW FOOTER */        
/* Wrapper for the grey background */
.footer-wrapper {
    background-color: #f0f0f0;
    width: 100%;
    padding: 20px 0;
}

/* Main content area */
.footer-content {
    width: 95%;
    max-width: 1420px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative; /* Allows positioning of third column */
}

/* Footer columns */
.footer-column {
    padding: 10px;
    box-sizing: border-box;
}

/* First column */
.footer-info {
    width: 30%; /* Reduced width for the first column */
    display: flex;
    gap: 20px;
}

.footer-info .sub-column {
    
}

.footer-info h3,
.footer-contact h3,
.footer-hours h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Second column - Contact Form */
.footer-contact {
    width: 40%;
}

.footer-contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact input,
.footer-contact textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.footer-contact button {
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.footer-contact button:hover {
    background-color: #555;
}

/* Third column - address details */
.footer-hours {
    width: 25%;
    margin-left: auto;
}

.footer-hours p a:hover {
    text-decoration: underline !important;
}
        
/* New row below the footer columns */
.footer-bottom-row {
    width: 95%;
    max-width: 1420px;
    margin: 20px auto 0;
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #ccc; /* Optional: add a border to separate the rows visually */
    font-size: 1.0em;
    color: #666;
    line-height: 17px;
}
        
.footer-column .section-title {
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 10px; /* Adjust space below */
    display: block;
}     

.sub-column a {
    font-size: 13px;
    color: #333;
    text-decoration: none;
    line-height: 20px;
}        

.sub-column a:hover {
    text-decoration: underline;
} 
        
.privacy-checkbox {
    display: flex;
    align-items: center; /* Vertically center the checkbox with the label */
    margin: 10px 0;
    font-size: 0.9em;
}

.privacy-checkbox input {
    margin-right: 5px; /* Space between checkbox and label */
}
        
.privacy-checkbox input[type="checkbox"] {
    width: auto; /* Resets the width for checkboxes */
    margin-right: 5px;
}

.privacy-checkbox a {
    
}
        
        .mob-address {margin-top: 20px;}
        
        .mob-address a {font-size: 13px; text-decoration: none; line-height: 20px;}

.navbar ul li a:hover {
    text-decoration: underline;
}

.faq-section {
    font-size: 13px;
    line-height: 17px;
}

.faq-section ul {
    list-style: none;
}

.faq-section li {margin-top: 10px;
}

.quote-request {
  text-decoration: none;
  color: #fff; /* or whatever the desired text color is */
  display: block; /* Ensure the <a> behaves like a container */
}

.quote-request:hover,
.quote-request:hover * {
  color: #333;
}




/* Responsive Layout */
@media (max-width: 768px) {
    .footer-info {
        display: none; /* Hide first column on mobile */
    }
    
    .footer-contact, .footer-hours {
        width: 100%; /* Stack columns */
    }
}

@media screen and (max-width: 570px) {
    .mob-address {
        display: block; /* or your desired display property */
    }
}

@media screen and (min-width: 769px) {
    .mob-address {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-hours {
        display: none; /* Hide third column on mobile */
    }    
        }



  .article-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: system-ui, sans-serif;
    font-size: 15px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  .article-table thead {
    background-color: #f5f5f5;
  }

  .article-table th, 
  .article-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
  }

  .article-table th {
    font-weight: 600;
    color: #333;
  }

  .article-table tbody tr:hover {
    background-color: #fafafa;
  }

    
    
.responsive-image {
  width: 100%;
  height: auto;
}


.callout-box {
  background-color: #f5f5f5;
  border-left: 4px solid #669900;
  padding: 1em;
  margin-bottom: 1.5em;
  font-size: 1.1em;
  margin-top: 15px;
  line-height: 1.2em;
    max-width: 680px;
}
.callout-box strong {
  display: block;
  margin-bottom: 0.5em;
  font-size: 1.25em;
}
.callout-box p {padding-bottom: 10px;
}  


@media (min-width: 768px) {
  .responsive-image {
    width: 60%;
  }
}

.btn:hover {
    background-color: #666;
    border-color: #666;
}
                                  
.btn-cart {
    background-color: #669900;
    color: #ffffff !important;
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    text-transform: none;
    transition: background-color 0.25s ease, transform 0.15s ease;
    text-decoration: none;
}


/* Hover effect */
.btn-cart:hover {
    background-color: #557a00; /* slightly darker green */
    color: #ffffff !important;
    transform: translateY(-2px);
    cursor: pointer;
    text-decoration: none;
}

/* Active (mouse down) effect */
.btn-cart:active {
    background-color: #486600;
    transform: translateY(0);
}

.product-bottom {
    margin-top: auto;
    margin-bottom: 10px;
}

.secondlevelcontainer {
    width: 170px;
    float: left;
    box-sizing: border-box;
    border: 1px solid #E6E0DE;
    border-radius: 5px;
    margin: 5px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #666;
    padding: 5px;
    text-align: center;
    background: #FFF;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.secondlevelcontainer:hover {
    color: #333;
    background: #E6E0DE;
    text-decoration: none;
}

.secondlevelcontainer img {
    margin: 0px auto;
}

.secondlevelcontainer:hover:has(.btn-cart:hover) {
    background-color: inherit !important;
}

.productspara {margin-bottom: 7px;}

.secondlevelcontainer h3 {
    font-size: 12px;
    font-weight: 700;
     
    color: #666;       /* matches your existing text colour */
}

.secondlevelcontainer h3 {

    font-size: 12px;

    font-weight: 700;

     

    color: #666;       /* matches your existing text colour */

}









ul.bullet1 {line-height:1.6;

		 }

#summaryContainer {
  display: none; /* hidden initially */
  width: 100%;   /* stretch to wrapper width */
  box-sizing: border-box; /* include padding in width */
  background: #b3d1e6;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
  margin-top: 20px;

  position: sticky;
  top: 16px;
  z-index: 1000;
}

    

    
    


#sensorSummary {
  font-weight: 600;
  margin-top: 8px;
}

form {
  max-width: 800px;
  margin-top: 20px;
}

.form-section {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

.form-section label {
  display: block;
  margin-top: 12px;
  font-weight: 500;
}

.form-section input,
.form-section select,
.form-section textarea {
  width: 100%;
  padding: 8px 10px;
  margin-top: 4px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-size: 14px;
}

.option-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s ease;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.card.selected {
  border-color: #2563eb;
  box-shadow: 0 6px 20px rgba(37,99,235,0.2);
}

.optional-elements {
  margin-top: 12px;
  display: flex;
  gap: 16px;
}

/* Make all form elements respect box-sizing */
form * {
  box-sizing: border-box;
}

/* Fieldset styling */

/* Ensure box-sizing globally */
form * {
  box-sizing: border-box;
}

/* Fieldset / form section */
.form-section {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 16px 16px 16px; /* extra top padding for legend */
  margin-bottom: 24px;
  position: relative;
}

/* Legend styling */
.form-section legend {
  font-weight: 600;
  font-size: 16px;
  padding: 0 8px;
  display: block;
  width: auto;
  
}

/* Labels */
.form-section label {
  display: block;
  margin-top: 12px;
  font-weight: 500;
}

/* Inputs / Selects / Textareas */
.form-section input,
.form-section select,
.form-section number,
.form-section textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 18px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-size: 14px;
  display: block;
}

/* Optional: add spacing before first input in fieldset 
.form-section > label:first-of-type,
.form-section > input:first-of-type,
.form-section > select:first-of-type,
.form-section > textarea:first-of-type {
  margin-top: 0;  
}*/
    
.helper-text {
  font-size: 13px;
  color: #475569;
  margin-top: 6px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

    .form-section select {
  background: #f0f4f8; /* pale input background */
}
.form-section input[type="text"],
.form-section input[type="email"],
.form-section input[type="tel"],
.form-section input[type="number"],
.form-section textarea {
  background: #f0f4f8; /* pale blue-gray */
}
    
.card img {
        margin: 0 auto;
    }

.form-actions {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e3e6e8;
padding-bottom: 1.5rem;
  border-bottom: 1px solid #e3e6e8;
  display: flex;
  justify-content: flex-end;
}

.btn-submit {
  appearance: none;
  border: none;
  background-color: #2f6fe4;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 0.9rem 1.8rem;
  border-radius: 4px;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.05s ease,
    box-shadow 0.15s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.btn-submit:hover {
  background-color: #245dc2;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-submit:active {
  transform: translateY(1px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.btn-submit:focus-visible {
  outline: 3px solid #9ec3ff;
  outline-offset: 2px;
}
.btn-submit:disabled {
  background-color: #9aa7b4;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.quantity-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin: 24px 0 16px;
}

.quantity-row label {
  font-size: 0.95rem;
  color: #374151;
}

.quantity-row input[type="number"] {
  width: 90px;
  padding: 8px 10px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 1rem;
  background: #f8fafc;
}

.form-wrapper {
  max-width: 800px;
  
  position: relative; /* just in case */
}


    
input:disabled,
select:disabled,
textarea:disabled {
  opacity: 0.3;
;
  cursor: not-allowed;
}    
    

.clear-selection {
  grid-column: 1 / -1;
  padding: 0;
  margin-top: 0.25rem;

  background: none;
  border: none;
  color: #666;
  font-size: 0.8rem;
  text-decoration: underline;
  cursor: pointer;
  display: none; /* hide by default */
}

.clear-selection:hover {
  color: #000;
}



.card-label {padding-top:10px;}


