/* ===================================================================================

* Theme Name: Hostix Child
* Theme URI: https://themexriver.com/wp/hostix
* Author: ThemeXriver
* Author URI: https://themeforest.net/user/themexriver
* Description: Business Consulting WordPress Theme
* Version: 1.0.0
* Template: hostix
* Text Domain: hostix-child
* License: GNU General Public License version 3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
* Tags: one-column, right-sidebar, left-sidebar, custom-menu, featured-images, post-formats, sticky-post, translation-ready
* Tested up to: 6.6
* Requires PHP: 7.4

* We encourage you to create Child theme for any modifications you will want to do.

* Why use Child theme?

* Because of hostix updates we may provide for this theme that will overwrite your
* modifications and all your custom work.

* If you are not familiar with Child Themes, you can read about it here:
* http://codex.wordpress.org/Child_Themes
* http://wp.tutsplus.com/tutorials/theme-development/child-themes-basics-and-creating-child-themes-in-wordpress/

====================================================================================== */

/* Domain Checker */
.wp24-dc {
    font-family: 'Segoe UI', system-ui, sans-serif;
    max-width: 800px; /* Changed from 600px to 800px for wider desktop screens */
    margin: 0 auto;
}

#dc-form-1 div {
    display: flex;
    justify-content: center; /* center children horizontally */
    align-items: center;
    gap: 4px; /* Reduced from 8px to 4px for smaller gaps between elements */
    align-items: center;
    flex-wrap: wrap;
}



#dc-form-1 span {
    font-weight: 700;
    color: #333;
    font-size: 20px;
}

#dc-domain-1 {
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 18px;
    transition: all 0.3s ease;
    background: #fff;
    width: 400px !important; /* Slightly increased from 250px to 280px */
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

#dc-domain-1:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0,124,186,0.1);
}

/* Custom dropdown with arrow */
#dc-tld-1 {
    padding: 12px 40px 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 20px;
	font-weight: 600;
   
    background-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

#dc-tld-1:focus {
    outline: none;
    border-color: #007cba;
}

#dc-submit-1 {
    padding: 12px 24px;
    background-color: #227bbf;
background-image: linear-gradient(135deg, #227bbf 0%, #4aa3e0 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#dc-submit-1:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

#dc-submit-1:active {
    transform: translateY(0);
}

.dc-spinner {
    padding: 12px 24px;
    background-color: #227bbf;
background-image: linear-gradient(135deg, #227bbf 0%, #4aa3e0 100%);
    border: 0px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    cursor: not-allowed;
    position: relative;
}

.dc-spinner::after {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid var(--border-color, #000);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-left: 8px;
}

/* Results table styling */
#dc-result-1 {
    margin-top: 20px;
}

.table {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

.table-row {
    display: table-row;
    border-radius: 8px;
    margin-bottom: 8px;
    background: #f8f9fa;
    border: 1px solid #e1e5e9;
    transition: all 0.3s ease;
}



.table-row:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


.table-cell {
    display: table-cell;
    padding: 10px 8px !important;
    vertical-align: middle;
    border: none;
}


#wp24-dc-1 .woocommerce-Price-amount{
	font-size: 17px;
	font-weight: 600;
	padding-left: 3px;
}

.table-cell-domain {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    width: 35%;
	padding-left: 20px !important;
}

.table-cell-domain a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.table-cell-domain a:hover {
    color: #007cba;
}

.table-cell-status {
    font-size: 14px;
    width: 20%;
    font-weight: 700;
}

/* Available domain status */
.available .table-cell-status {
    color: #10b981 !important;
    font-weight: 700;
}

/* Registered domain status */
.registered .table-cell-status {
    color: #ef4444 !important;
    font-weight: 700;
}

.table-cell-purchase,
.table-cell-transfer {
    width: 30%;
    text-align: center;
    white-space: nowrap; /* Prevent price from wrapping */
}

.table-cell-whois {
    width: 15%;
    text-align: right;
    font-size: 12px;
}

/* Buy Now button - Smaller padding */
.dc-add-to-cart {
    padding: 6px 12px !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
    margin-right: 8px; /* Space between button and price */
}

.table-cell strong{
	padding-left: 2px;
}

.dc-add-to-cart:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
}

/* Transfer Now button - different color and smaller */
.table-cell-transfer .dc-add-to-cart {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
    padding: 6px 12px;
    font-size: 12px;
}

.table-cell-transfer .dc-add-to-cart:hover {
    box-shadow: 0 4px 6px rgba(245, 158, 11, 0.4);
}

/* Price styling - ensure it stays on same line */
.woocommerce-Price-amount {
    font-weight: 600;
    color: #1f2937;
    font-size: 13px;
    display: inline; /* Ensure it stays inline */
    white-space: nowrap; /* Prevent price from wrapping */
}

.woocommerce-Price-currencySymbol {
    color: #6b7280;
}

/* Whois link */
.table-cell-whois a {
    color: #6b7280;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.table-cell-whois a:hover {
    color: #007cba;
    text-decoration: underline;
}

#dc-domain-1::placeholder {
    color: rgba(51, 51, 51, 0.45); /* light/transparent placeholder */
    font-weight: 400;
    font-style: normal; /* change to italic if you prefer a more "placeholder" look */
}
#dc-domain-1::-webkit-input-placeholder { color: rgba(51,51,51,0.45); }
#dc-domain-1:-ms-input-placeholder { color: rgba(51,51,51,0.45); }
#dc-domain-1::-ms-input-placeholder { color: rgba(51,51,51,0.45); }

/* Optional: if you prefer an even lighter hint */
#dc-domain-1::placeholder.alt-light { color: rgba(51,51,51,0.28); }

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.wp24-dc form input[type="text"]{
	margin: 0px !important;
}

#dc-tld-1{
	height: 50px;
}


.wp24-dc form select{
	    margin: 0 10px 0 0px !important;
}
/* Responsive design */
@media (max-width: 768px) {
    .wp24-dc {
        max-width: 100%; /* Ensure full width on mobile */
        padding: 0 16px; /* Add some padding on mobile */
    }
    
    #dc-form-1 div {
        flex-direction: column;
        align-items: stretch;
        gap: 8px; /* Keep original gap on mobile for better touch targets */
    }
    
    #dc-domain-1 {
        width: 100% !important;
    }
    
    #dc-form-1 span {
        align-self: flex-start;
        margin-bottom: 4px;
    }
    
    .table-row {
        display: block;
        padding: 12px;
    }
    
    .table-cell {
        display: block;
        padding: 8px 0;
        width: 100% !important;
        text-align: left !important;
        white-space: normal; /* Allow wrapping on mobile */
    }
    
    .table-cell-purchase,
    .table-cell-transfer {
        text-align: left !important;
        margin: 8px 0;
        white-space: normal; /* Allow wrapping on mobile */
    }
    
    .table-cell-whois {
        text-align: left !important;
    }
    
    /* On mobile, keep button and price together but allow to wrap if needed */
    .dc-add-to-cart {
        margin-right: 6px;
        margin-bottom: 4px;
    }
}

/* Modern scrollbar for dropdown */
#dc-tld-1::-webkit-scrollbar {
    width: 8px;
}

#dc-tld-1::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

#dc-tld-1::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

#dc-tld-1::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Hide native dropdown arrow in Firefox */
#dc-tld-1 {
    text-indent: 0.01px;
    text-overflow: '';
}

#dc-tld-1:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

/* Additional media query for larger screens */
@media (min-width: 1200px) {
    .wp24-dc {
        max-width: 900px; /* Even wider on very large screens */
    }
}

/*********/

.main-header .sticky-header .logo img{
	    width: 165px !important;
}


.cta-section .button-box .theme-btn{
	border-radius: 10px;
}

.page-title{
	    padding: 160px 0px 70px;
}


.woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--downloads{
	display: none;
}

.woocommerce-MyAccount-navigation ul li a{
	color: #000000 !important; 
}

.woocommerce-MyAccount-navigation ul li:hover a{
	color: #ffffff !important; 
}


.woocommerce-MyAccount-navigation ul li{
	border-color: #2e93ee;
}

.woocommerce-MyAccount-navigation ul li:before{
	background: #2e93ee;
	height: 49.5px;
	border-radius: 5px;
}

.woocommerce-MyAccount-navigation ul li{
	border-radius: 5px;
}

.woocommerce a{
	color: #2e93ee !important;
}

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

.woocommerce .button{
	color: #fff !important;
}

.scroll-to-top{
	border-radius: 50px;
	color: #000;
}

.scroll-to-top:hover{
	background: #2e93ee !important;
}

.offcanvas__logo img{
	max-width: 50%;
	
}


.main-footer .footer-bottom{
	padding-top: 0px !important;
	padding-bottom: 0px !important;
}


.main-footer{
	padding-top: 40px !important;
}

.main-footer .logo{
	padding-top: 20px;
}

footer a:hover{
	text-decoration: none !important;
}


.footer-bottom .d-flex.justify-content-between {
  justify-content: center !important;
}

.footer-bottom .copyright .row {
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  text-align: center !important;
}


.footer-bottom .PRR_image {
  display: block !important;
	margin-bottom: 20px;
	margin-top: 10px;
  width: 100% !important;
  height: auto !important;
}



.main-footer .footer-column{
	 flex: 0 0 50% !important;
        max-width: 50% !important;
}


.main-footer .widgets-section{
	padding-bottom: 0px;
}


.main-footer .footer-bottom{
	border-top: 1px solid rgba(var(--black-color-rgb), 0.10) !important;
}



/* Preloader */ 
.pl__ring--a{
	stroke: #2e93ee;
}

.pl__ring--b{
	stroke: #2e93ee;
}

.pl__ring--c{
	stroke: #2e93ee;
}

.pl__ring--d{
	stroke: #2e93ee;
}



/*****/



.nav-outer {
  margin-left: auto !important;
}

.navbar-collapse {
  display: flex !important;
  justify-content: flex-end !important;
}

#open_offcanvas .bars-outer span:nth-child(5){
	background-color: #2e93ee;
}

#open_offcanvas .bars-outer span:nth-child(9){
	background-color: #2e93ee;
}

.close_offcanvas:hover {
    color: #2e93ee !important;
    border-color: #2e93ee !important;
}


.side__navbar-wrapper.mean-container .mean-nav ul li a:hover {
    color: #2e93ee !important;
}


.entry-content a {
	text-decoration: none !important;
	color: #2e93ee !important
}

u {
    text-decoration: none;
}

.btn-style-one:before{
	background: #2e93ee;
}


input{
	border-radius: 10px;
}

textarea{
	border-radius: 10px;
}




.main-header .main-menu .navigation > .falang-parent-menu-item > a > span{
	display: none;
}




.main-footer .page-list .falang-parent-menu-item{
	display: none !important;
}



.woocommerce table.my_account_orders .button{
	background-color: #2e93ee;
	bottom: 10px;
}

.woocommerce-Address-title h2{
	font-size: 30px;
}

.woocommerce-account .addresses .title .edit{
	float: left;
	padding-bottom: 10px;
}



legend {
        font-size: 1rem;
}

.button{
	background-color: #2e93ee !important;
}

input{
	border-radius: 10px !important;
}

.woocommerce form .show-password-input, .woocommerce-page form .show-password-input{
	padding-bottom: 20px !important;
}

.woocommerce-EditAccountForm 
p:last-child{
	 height: 100px;
	overflow: visible;
}


form p:last-child{
		 height: 100px;
	overflow: visible;
}


.woocommerce h2{
	    font-size: 1.3rem;
}


.woocommerce-message{
	border: 0px !important;
	border-radius: 10px !important;
}


.woocommerce-info{
		border: 0px !important;
	border-radius: 10px !important;
}


.select2-container--default .select2-selection--single{
	border-radius: 10px !important;
}




.select2-container .select2-selection--single .select2-selection__rendered{
	bottom: 20px !important;
}




.woocommerce-account .woocommerce-MyAccount-content{
	padding-top: 0px;
}

.select2-container .select2-selection--single .select2-selection__arrow{
	top: -20px;
}



.select2-container .select2-selection--single .select2-selection__rendered{
line-height: 5px !important;
}



.select2-container{
	height: 60px !important;
}


.page-title {
    padding: 120px 0px 70px !important;
}

.woocommerce-MyAccount-content > p:nth-of-type(1),
.woocommerce-MyAccount-content > p:nth-of-type(2) {
    display: none !important;
}


.main-header .main-menu .navigation li:hover > ul{
	border-radius: 7px;
}





.main-header .main-menu .navigation > li:hover > ul > li:hover a{
	color: #2e93ee !important;
}


.main-header .main-menu .navigation > li:hover > ul > li:hover a{
	color: #2e93ee !important;
}


.main-header .main-menu .navigation li ul li:hover > a::before{
		filter: invert(28%) sepia(90%) saturate(500%) hue-rotate(170deg) brightness(95%);
}



.sidebar-page-container{ 
	padding: 40px 0px 60px;
}


/* Remove product thumbnail from cart table */
.woocommerce-cart-form__contents .product-thumbnail {
    display: none !important;
}

.woocommerce-cart-form__contents thead th.product-thumbnail {
    display: none !important;
}

.woocommerce-cart-form__contents tbody td.product-thumbnail {
    display: none !important;
}

/* Optional: Adjust the layout to use the extra space */
.woocommerce-cart-form__contents .product-name {
    padding-left: 20px !important;
}




td.product-name dl.variation{
	height: 60px !important;
}


:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button{
	top: -10px !important;
}



.woocommerce form.checkout label{
	margin-bottom: 0px !important;
}



.woocommerce .form-row.validate-required{
	margin-top: 0px !important;
	height: 90px;
}

.woocommerce form .form-row{
	margin-top: 0px !important;
	height: 90px;
}




.woocommerce-additional-fields h3{
	font-size: 23px !important;
}


.woocommerce-terms-and-conditions-wrapper .validate-required{
	height: 30px !important;
}


.woocommerce-checkout-payment .reage-card{
	height: 75px;
}


input::placeholder{
	opacity: 0.5 !important;
}




.woocommerce-error{
			border: 0px !important;
	border-radius: 10px !important;
}


.woocommerce-error li{
	padding-left: 20px !important;
	margin-bottom: 5px !important;
}

.checkout-inline-error-message{
	margin: 0px !important;
	line-height: 10px !important;
	top: -15px;
}




.annual-price-suffix {
    font-size: 0.9em !important;
    opacity: 0.7 !important;
}
.order-total .annual-price-suffix {
    font-size: 12px !important;
    opacity: 0.7 !important;
}





/* Responsive */

@media only screen and (max-width: 767px) {
	
  .navbar-collapse {
    display: block !important;
  }
  .navbar-collapse .navigation {
    display: block;
  }


    .offcanvas__right {
        margin: auto !important;
	text-align: center;
			bottom: 0px !important;
    }
	
		.main-footer .footer-column{
	 flex: 0 0 100% !important;
        max-width: 100% !important;
		margin-bottom: 0px;
}
	
	.main-footer h5{
		margin-bottom: 15px;
	}
}





.page-title{
	background-image: url("/wp-content/uploads/2025/10/BG_reage_title.png");
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
}


.in-faq-contact-form input[type=checkbox]{
	height: 15px;
	margin-bottom: 0px;
}

.wpcf7-acceptance input{
	display: inline-flex !important;
	width: 3%;
	margin-right: 5px !important;
}

.wpcf7-acceptance span{
	width: 100%;

}

.wpcf7-acceptance .wpcf7-list-item{
	width: 100%;
	margin-left: 0px;
	margin-bottom: 20px;
}


.in-faq-contact-form input{
	margin-bottom: 5px !important;
}


.in-faq-contact-form textarea{
	margin-bottom: 5px !important;
}


.wpcf7-not-valid-tip{
	margin-bottom: 10px !important;
}


.wpcf7-response-output{
	border-radius: 5px;
}



.wpcf7-acceptance .wpcf7-list-item label{
	width: 100%;
}

.wpcf7-acceptance a{
	color: #2e93ee;
}




.in-faq-contact-info-wrap a {
	color: #000;
}
.in-faq-contact-info-wrap a:hover{
	color: #2e93ee;
}


.in-faq-contact-info-title h3{
	padding-bottom: 5px;
}

.in-faq-contact-info-title p{
	margin-bottom: 0px !important;
}

.in-faq-contact-info{
	margin-top: 20px;
}

.in-faq-contact-info .info-item-area .inner-text{
	max-width: 300px;
}


.in-contact-page-content{
	border-top: 4px solid #2e93ee !important;
	    padding: 50px 60px;
}




.in-faq-contact-info .info-item-area:nth-child(1) .inner-icon {
  background: #10c180 !important;
}

.in-faq-contact-info .info-item-area:nth-child(3) .inner-icon {
  background: #9464ff !important;
}

.table-cell-purchase a{
	color: #ffffff !important;
}


.table-cell-transfer a{
	color: #ffffff !important;
}

.table-cell-domain a{
	color: #000000 !important;
}



.table-cell-domain a:hover{
	color: #00a2e1 !important;
}










     /* Scoped styles for domain pricing section only */
        .domain-pricing-section {
           
            --dp-accent: #e74c3c;
            --dp-light: #f5f7fa;
            --dp-dark: #333;
            --dp-gray: #666;
            --dp-white: #fff;
            --dp-shadow: rgba(0, 0, 0, 0.1);
            
        
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            box-sizing: border-box;
        }
        
        .domain-pricing-section * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        .domain-pricing-section .pricing-container {
            max-width: 1500px;
            width: 100%;
            text-align: center !important;
        }
        
        .domain-pricing-section .section-title {
            margin-bottom: 50px;
            color: var(--dp-dark);
        }
        
        .domain-pricing-section .section-title h1 {
            font-size: 1rem !important;
            margin-bottom: 15px;
            background: linear-gradient(90deg, var(--dp-primary), var(--dp-secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .domain-pricing-section .section-title p {
            font-size: 1rem !important;
            color: var(--dp-gray);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .domain-pricing-section .pricing-table {
          display: flex;
  flex-wrap: wrap;          /* allow multiple rows */
  justify-content: center;  /* center items on each row (including last row) */
  gap: 30px;
  padding: 0; 
        }
        
        .domain-pricing-section .domain-card {
            background: var(--dp-white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px var(--dp-shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
					flex: 0 1 350px;    /* don't grow, can shrink a bit, base width 350px */
  max-width: 350px; 
        }
        
        .domain-pricing-section .domain-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .domain-pricing-section .domain-header {
            padding: 25px 20px;
            color: var(--dp-white);
            position: relative;
            overflow: hidden;
        }
        
        .domain-pricing-section .domain-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
					display: none;
        }
        
        .domain-pricing-section .domain-header > * {
            position: relative;
            z-index: 2;
        }
        
        .domain-pricing-section .domain-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 5px;
					font-family: 'Cabin', sans-serif;
					color: #ffffff;
}
        
        .domain-pricing-section .domain-desc {
            font-size: 0.7rem;
            opacity: 0.9;
					font-family: 'Cabin', sans-serif;
					font-weight: 400;
					overflow: visible !important;
					color: #fff;
					padding-top: 5px;
        }
        
        .domain-pricing-section .domain-pricing {
            padding: 25px 20px;
        }
        
        .domain-pricing-section .price-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #eee;
        }
        
        .domain-pricing-section .price-item:last-child {
            margin-bottom: 0;
            border-bottom: none;
        }
        
        .domain-pricing-section .price-type {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            color: var(--dp-gray);
        }
        
        .domain-pricing-section .price-type i {
            font-size: 0.8rem;
            color: var(--dp-primary);
        }
        
        .domain-pricing-section .price-value {
            font-weight: 700;
            color: var(--dp-secondary);
            font-size: 0.7rem;
        }
        
        .domain-pricing-section .domain-card.featured {
            transform: scale(1.05);
            z-index: 1;
        }
        
        .domain-pricing-section .domain-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .domain-pricing-section .featured-tag {
          position: absolute;
    top: 25px;
    right: -40px;
    background: var(--dp-accent);
    color: var(--dp-white);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.6rem;
    font-weight: 600;
    z-index: 3;
        }
        
        .domain-pricing-section .domain-card.featured .domain-header::before {
            background: linear-gradient(135deg, var(--dp-accent), #c0392b);
        }
        
        @media (max-width: 768px) {
            .domain-pricing-section .pricing-table {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
            
            .domain-pricing-section .domain-card.featured {
                transform: scale(1);
            }
            
            .domain-pricing-section .domain-card.featured:hover {
                transform: translateY(-10px);
            }
        }


:root{
  --color-card-1: #10C180;
  --color-card-2: #4A6FFF;
  --color-card-3: #fed000;
  --color-card-4: #9B6BFF;
  --color-card-5: #8abacf;

  --dark-text: #111;
  --dark-blue: #0b2540;
}

.domain-pricing-section .pricing-table > .domain-card:nth-child(1) .domain-header{
  background: var(--color-card-1) !important;
  color: #fff;
}
.domain-pricing-section .pricing-table > .domain-card:nth-child(2) .domain-header{
  background: var(--color-card-2);
  color: #fff;
}
.domain-pricing-section .pricing-table > .domain-card:nth-child(3) .domain-header{
  background: var(--color-card-3);
  color: var(--dark-text);
}
.domain-pricing-section .pricing-table > .domain-card:nth-child(4) .domain-header{
  background: var(--color-card-4);
  color: #fff;
}
.domain-pricing-section .pricing-table > .domain-card:nth-child(5) .domain-header{
  background: var(--color-card-5);
  color: var(--dark-blue);
}

/* small polish */
.domain-header .domain-name{ margin: 0; font-size: 1.25rem; }
.domain-header .domain-desc{ margin: 0; font-size: .9rem; opacity: .95; }


/* small polish for smooth color change */
.domain-pricing-section .price-type i {
  transition: color .18s ease;
}

/* order: Registo, Transferência, Renovação */
.domain-pricing-section .domain-pricing .price-item:nth-child(1) .price-type i {
  color: #0fbc7c; /* green */
}
.domain-pricing-section .domain-pricing .price-item:nth-child(2) .price-type i {
  color: #456dff; /* blue */
}
.domain-pricing-section .domain-pricing .price-item:nth-child(3) .price-type i {
  color: #9b6aff; /* purple */
}



.domain-info-box-two .name-box:nth-child(1) .title{
	color: #10C180;
}


.domain-info-box-two .name-box:nth-child(2) .title{
	color: #4A6FFF;
}


.domain-info-box-two .name-box:nth-child(3) .title{
	color: #e6c647;
}


.domain-info-box-two .name-box:nth-child(4) .title{
	color: #9B6BFF;
}

.domain-info-box-two .name-box:nth-child(5) .title{
	color: #8abacf;
}




.business-section .color-two{
	display: none !important;
}

.business-section .color-one{
	display: none !important;
}
.business-section .row {

  align-items: center;
}

.business-section .image-column .image{
	max-width: 300px;
}



.wp24-dc .added_to_cart{
	color: #000000 !important;
	font-weight: 700;
}


.feature-block .icon img{
	max-width: 30px;
}

.panel-tabs .tab-btns .tab-btn.active-btn{
	    background-color: #19bf81;
}


.elementor-428 .elementor-element.elementor-element-68c5441 .panel-tabs .tab-btns .tab-btn:after{
	background-image: url(https://dominios.reagesoft.pt/wp-content/uploads/2025/10/icon-11.png);
}



.banner-section-three h1 span{
	  position: relative;
    background: linear-gradient(90deg, #247dd7 0%, #6441A5 50%, #FC466B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.tab .content {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100%;
}

.image {
max-width: 65%;
	margin-top: 75px;
}



.panel-tabs .tab-btns .tab-btn{
	text-transform: none !important;
}


.elementor-428 .elementor-element.elementor-element-fc4e16b .banner-section-three h1{
	text-transform: none !important;
}


.woocommerce form .form-row label{
	line-height: 2.3;
}


fieldset{
	padding-top: 20px;
}


.elementor-2292 .elementor-element.elementor-element-435e1aa3 .in-faq-contact-info-title h3{
	font-size: 30px !important;
}

/* Responsive */


/* Laptop */
@media only screen and (max-width: 1367px) {
	.banner-section-three .content-column .inner-column{
		padding-left: 20px !important;
	}
	
	
	
	.banner-section-three .image{
		    max-width: 70%;
    margin-top: 40px;
	}
	
	
	.cta-section{
	margin-left: 40px;
		margin-right: 40px;
	}
	
	
	.page-title {
    padding: 110px 0px 60px !important;
}
	
	.business-section .image-column .image{
		margin-top: 10px !important;
	}
	
}




/* Tablet */
@media only screen and (max-width: 1025px) {
	.remote-assistance-btn{
		display: none !important;
		
	}
	
	.offcanvas__area{
		    z-index: 99999 !important;
	}
	
	
	.banner-section-three .text{
		font-size: 20px;
		line-height: 1.5em;
	}
	
	
	#custom-top-bar{
		display: none !important;
	}
	
	

.banner-section-three .image-column .inner-column {
  display: flex;
  justify-content: center; 
  align-items: center;    
  height: 100%; 
}


.banner-section-three .image-column .image img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
	
	
	
	
	.panel-tabs .tabs-content .tab.active-tab .image{
		    max-width: 35%;
    margin-top: 35px;
	}

	
	.business-section .image-column .image{
		max-width: 200px;
	}
	
	.domain-pricing-section .domain-card{
		flex: 0 1 300px;
	}
	
	    .elementor-2851 .elementor-element.elementor-element-4ff17e4 {
       padding: 0px 10px 0px 10px;
    }
	
	
	#hp-cloud-plans-2025 .cloud-card{
		width: 100% !important;
	}
	
	
	#hp-cloud-plans-2025 .cloud-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
	
	
	#hp-cloud-plans-2025 .cloud-badge{
		    font-size: 0.75rem !important;
	}
	
	#hp-cloud-plans-2025 .cloud-title{
		font-size: 1.3rem !important;
	}
	
	
	#hp-cloud-plans-2025 .cloud-description{
		font-size: 0.7rem !important;
	}
	
	
	#hp-cloud-plans-2025 .cloud-cta{
		    font-size: 0.7rem !important;
	}
	
	#hp-cloud-plans-2025 .cloud-features li{
		font-size: 0.8rem !important;
	}
	
}
	
	




/* Mobile */
@media only screen and (max-width: 850px) {
	
	.elementor-428 .elementor-element.elementor-element-fc4e16b .banner-section-three h1{
		    font-size: 25px !important;
    line-height: 33px !important;
	}
	
	.banner-section-three .content-column .inner-column{
		padding-left: 0px !important;
	}
	
	
	    .banner-section-three .text {
        font-size: 15px;
        line-height: 1.3em;
    }
	
	.banner-section-three .slide {
    padding: 100px 0px 250px;
}
	
	.banner-section-three .content-column{
		margin-bottom: -30px;
	}
	
	
	.banner-section-three .image{
		margin-top: 10px;
	margin-bottom: 15px;
	}
	
	.panel-tabs .tabs-content .tab.active-tab .image{
		max-width: 60%;
	}
	
	
	.in-faq-contact-info .info-item-area{
		display: block !important;
		padding-top: 20px;
	}
	
	.in-faq-contact-info .info-item-area .inner-icon{
		width: 50px;
    height: 50px;
		margin-bottom: 15px;
	}
	
	.in-faq-contact-info .info-item-area .inner-icon i{
		font-size: 20px;
	}
	
	
.wpcf7-acceptance input {
    display: inline-flex !important
;
    width: 8%;
    margin-right: 5px !important;
}

	
	.woocommerce-privacy-policy-text{
		height: auto;
	}
	
	
	.woocommerce-privacy-policy-text p{
			height: auto !important;
	}
	
	
	.woocommerce-checkout-payment{
		height: auto !important;
	}
	
	.woocommerce-terms-and-conditions-wrapper .validate-required{
    height: auto !important;
}

	
	.woocommerce-terms-and-conditions .woocommerce form .form-row label {
    line-height: 1.1;
}
	
	/* === Unclip checkout layout: allow checkout content to grow ===
   Target only the WooCommerce checkout page by using the body class
   so we don't change other pages that might intentionally use overflow:hidden.
*/
body.woocommerce-checkout .entry-content,
body.woocommerce-checkout #page,
body.woocommerce-checkout .site.page-wrapper,
body.woocommerce-checkout .page-wrapper {
  overflow: visible !important;
  max-height: none !important;
}

/* Make right column layout stable and ensure payment area sits at the bottom */
body.woocommerce-checkout .checkout-grid-container {
  align-items: flex-start;
}

body.woocommerce-checkout .checkout-right-column {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  position: relative !important;
}

/* Push payment/place-order to the bottom of the right column */
body.woocommerce-checkout #payment-section {
  margin-top: auto !important;
}

/* Ensure the submit button sits above any fixed footer/cookie bar */
body.woocommerce-checkout #place_order {
  position: relative !important;
 
}

/* Optional: reserve space at the bottom if you have a fixed footer/cookie bar */
body.woocommerce-checkout {
  padding-bottom: 100px; /* adjust to the height of your footer/cookie bar */
}

	
body.woocommerce-checkout .woocommerce-checkout-payment {
  height: calc(100vh - 180px) !important; /* adjust 220px to leave room for header/footer */
  overflow: auto !important;
}
	
	.mobile-menu-links{
		background: #ffffff  !important;
	}
	
	
	
	.woocommerce-account .woocommerce-MyAccount-content{
		padding: 0px !important;
	}
	
	
	
}


/*****/