/*!
Theme Name: Kadence Child
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: Kadence WP
Author URI: https://www.kadencewp.com/
Description: A child theme for the Kadence Theme.
Version: 1.0.0
License: GNU General Public License v3.0 (or later)
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kadence-child
*/

/* Theme customization starts here
-------------------------------------------------------------- */

/*Hides breadcrumbs and back to course link on Learndash Pages*/
.learndash-wrapper .ld-breadcrumbs {
	display: none !important;
}
.ld-course-step-back {
display: none !important;
}

/*Reduce Hight Above Topic Titles in Learndash Focus Mode*/
.learndash-wrapper .ld-focus .ld-focus-main .ld-focus-content {
padding-top: 4em;
}

/*Adjust image rounding settings for Gutenberg Blocks images*/
.is-style-rounded img {
border-radius:10px !important;
}

/*Creates desired underline functionality for select Gutenburg Blocks*/
.typography-underlined a { text-decoration: underline; }
.typography-underlined a:hover {text-decoration: underline; }

/*Creates drop shadow functionality for select Gutenburg Blocks*/
.box-dropshadow {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);}


/*Creates different border color functionalities for select Gutenburg Blocks*/

.border-mustard-5px {
  border-style: solid;
  border-width: 5px;
	border-color: #DFAA26 /* Mustard Yellow*/
}

.border-army-5px {
  border-style: solid;
  border-width: 5px;
	border-color: #535435 /* Army Green*/
}

.border-army-2px {
  border-style: solid;
  border-width: 2px;
	border-color: #535435 /* Army Green*/
}

.border-wine-2px {
  border-style: solid;
  border-width: 2px;
	border-color: #5D212C /* Wine*/
}

.border-wine-5px {
  border-style: solid;
  border-width: 5px;
	border-color: #5D212C /* Wine*/
}

.border-olive-2px {
  border-style: solid;
  border-width: 2px;
	border-color: #A39667 /* Olive*/
}

.border-olive-5px {
  border-style: solid;
  border-width: 5px;
	border-color: #A39667 /* Olive*/
}

.border-black-2px {
  border-style: solid;
  border-width: 2px;
	border-color: black /* Black*/
}

.border-black-5px {
  border-style: solid;
  border-width: 5px;
	border-color: black /* Black*/
}

/* Custom Buttons for use in HTML sections */

.custom-button{

font-family: Roboto, sans-serif;
font-weight: 0;
font-size: 14px;
color: #fff;
background-color: #A39667;
padding: 10px 30px;
border: none;
box-shadow: none;
border-radius: 5px;
transition : 623ms;
transform: translateY(0);
display: flex;
flex-direction: row;
align-items: center;
cursor: pointer;
}

.custom-button:hover{

transition : 623ms;
padding: 10px 40px;
transform : translateY(-0px);
background-color: #535435;
color: #ffffff;
}

/* Change button color to #A39667 */
.woocommerce ul.products li.product .learn-more-button,
.woocommerce ul.products li.product .return-to-course-button {
    color: #A39667 !important;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* On hover, change button color to #535435 */
.woocommerce ul.products li.product .learn-more-button:hover,
.woocommerce ul.products li.product .return-to-course-button:hover {
    color: #535435 !important;
}

/* Fix LearnDash's Aggressive Link Styling for Custom Button */
.learndash-wrapper a.cs-custom-add-to-cart-button {
	border-bottom: 1px solid !important;
}