/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/



/**
 * Radio buttons
 * **/
.gotr_type_choice [type="radio"]:checked, 
.gotr_type_choice [type="radio"]:not(:checked), 
.gotr_type_choice [type="checkbox"]:checked, 
.gotr_type_choice [type="checkbox"]:not(:checked) {
	position: absolute;
	left: -9999px;
	top: inherit !important;
}

.gotr_type_choice [type="radio"]:not(:checked) + label:before, 
.gotr_type_choice [type="checkbox"]:not(:checked) + label:before,
.gotr_type_choice [type="radio"]:checked + label:before, 
.gotr_type_choice [type="checkbox"]:checked + label:before{
	content: "";
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #2c2c2c;
	border: 1px solid #555;
	position: absolute;
	left: 12px;
}

.gotr_type_choice [type="radio"]:checked+label:before, 
.gotr_type_choice [type="radio"]:not(:checked):hover +label:before, 
.gotr_type_choice [type="checkbox"]:checked+label:before, 
.gotr_type_choice [type="checkbox"]:not(:checked):hover +label:before {
	background-color: #444;
	border: 1px solid #61ce70;
}

.gotr_type_choice [type="radio"]:checked +label:after, 
.gotr_type_choice [type="checkbox"]:checked +label:after  {
	content: "L";
	width: 18px;
	height: 18px;
	border-radius: 50%;	
	color: #61ce70;
	position: absolute;
	left: 14px;
	top: 6px;
	font-size: 1.1em;
	transform: rotateY(135deg) rotate(329deg);
}



.gotr_type_choice [type="radio"] + label, 
.gotr_type_choice [type="checkbox"] + label {
	display: flex !important;
    align-items: center;
    justify-content: flex-start;
	border: 1px solid #555;	
	background-color: #333; /* darker background */
	border-radius: 5px;
	transition: all 0.3s ease 0s;
	margin-bottom: 15px !important;
	font-size: 1.1em;
	padding: .5em .5em .5em 40px;
	text-align: center;
	cursor: pointer;
	font-family: Open Sans,Arial,sans-serif;
	position: relative;
	color: #ddd; /* light gray text */
}

.gotr_type_choice [type="radio"]:not(:checked):hover + label, 
.gotr_type_choice [type="checkbox"]:not(:checked):hover + label {
	border: 1px solid #61ce70; 
	color: #61ce70; 
	-webkit-box-shadow: 0px 2px 2px 0px rgba(97,206,112,.5); 
	box-shadow: 0px 2px 2px 0px rgba(97,206,112,.5); 
}

.gotr_type_choice [type="radio"]:checked + label, 
.gotr_type_choice [type="checkbox"]:checked + label {
	background-color: #444; /* slightly lighter background */
	font-weight: bold;
	border: 1px solid #61ce70; 
}






/*
 * menus start here
 * @since november 2023
 * */
.main-header-menu .sub-menu {
	top: 99% !important; /*Add this so the top border of the submenu covers the menu underline*/
	width: 250px !important;
}

#ast-hf-account-menu {
	top: 1em !important;
	right: 10% !important;
}


.main-header-menu .sub-menu, #ast-hf-account-menu {
	background-color: #313131;
	border-radius: 3px;
	border-width: 2px !important;
	border-color: #313131 !important;
	border-top: 4px solid #61ce70 !important;
}

.ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link, #ast-hf-account-menu .menu-item .menu-link {
	border-bottom: 1px solid #383838 !important;
	display: flex;
  align-items: center;
  gap: 10px;
	padding: 0.9em 0.7em !important;
}

.ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link:hover, #ast-hf-account-menu .menu-item .menu-link:hover {
	background-color: #383838;
	color: white !important;
}

/*Fix weird margin problem at bottom of account menu*/
#ast-hf-account-menu .menu-item {
	bottom: 0 !important;
}

.ast-desktop .ast-builder-menu-1 .menu-item.highlight-menu-item .menu-link, #ast-hf-account-menu .menu-item.highlight-menu-item .menu-link {
	background-color: #61ce70 !important;
	color: white !important;
}

.ast-desktop .ast-builder-menu-1 .menu-item.highlight-menu-item .menu-link:hover, #ast-hf-account-menu .menu-item.highlight-menu-item .menu-link:hover {
	background-color: #47bb57 !important;
	
}







/**
 * Account Menu
 * This CSS applies to the menu on account pages
 * **/
.gotr_account_menu {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; 
    margin: 0 auto;
    margin-bottom: 50px;
    gap: 10px;
}
.gotr_account_menu li {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
}
.gotr_account_menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background-color: #414141; 
    border-radius: 10px; 
    padding: 10px 15px;
    color: #ffffff; 
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}
.gotr_account_menu li a:hover:not(li.active a) {
    background-color: #525252; 
    color: #e0e0e0; 
}      
.gotr_account_menu li.active a {
    font-weight: bold;	
    background-color: #626262; 
    color: #fff; 
}





/**
 * EDD
 * **/

/*Style upgrade link from the license overview screen*/
.edd_license_upgrade_link {
	background-color: #61ce70;
    padding: 5px 20px;
    border-radius: 3px;
	color: white !important;
}

.edd_license_upgrade_link:hover {
	background-color: #007a11;
}

