/*
 * Website Font
 */
@font-face 
  {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/Rubik-Regular.woff2') format('woff2'),
       url('../fonts/Rubik-Regular.woff') format('woff');
  font-display: swap;
  }

@font-face 
   {
   font-family: 'Rubik';
   font-style: italic;
   font-weight: normal;
   src: url('../fonts/Rubik-Italic.woff2') format('woff2'),
        url('../fonts/Rubik-Italic.woff') format('woff');
   font-display: swap;
   }

@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: bold;
  src: url('../fonts/Rubik-Bold.woff2') format('woff2'),
       url('../fonts/Rubik-Bold.woff') format('woff');
  font-display: swap;
}

:root {
     --font-family-body: 'Rubik', sans-serif;
     --font-family-headings: 'Rubik', sans-serif;
     --font-weight-headings: 700;
     --font-weight-normal: 400;
}

body, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 
  {
  font-family: var(--font-family-body);
  }

/*
 * Top container header and main menu styling
 */
.container-header 
  {
  position: relative;
  z-index: 10;
  margin-bottom: 0.25rem;
  background-color: #F2C763;
  background-image: linear-gradient(135deg, #F2C763 0%, #D7C49E);
  }

.container-header .navbar-brand
  {
  padding-bottom:0;
  }

.container-header nav 
  {
  margin-top: 0em;
  margin-left: auto;  
  }

.container-header a.brand-logo {
  pointer-events: none;
  cursor: default;
}

/* 
 * Menu items
 */
.metismenu.mod-menu .metismenu-item
  {
  margin-bottom: 0em;
  }

/* 
 * Headings 
 */
h1 {
   font-size: 3em;
   font-weight: 800;
   color: #5586F2;
   margin-bottom: 1.5rem;
   text-align: center;
}

h2 {
   font-size: 2em;
   font-weight: 800;
   color: #B81D17;
   margin-bottom: 1.1rem;
   text-align: center;
}

h3 {
   font-size: 1.5em;
   font-weight: bold;
   color: #D7C49E;
   margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.2em;
    margin-bottom: 0.6rem;
}

/* 
 * Paragraph styling
 */
p {
  font-size: 1.25em;
  color: #101820;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  text-align: left;
  }

/*
 * Buttons 
 */
.btn-primary {
    background-color: #0477BF;
    color: #fff!important;
    padding: 10px 20px;
    border: 2px solid #101820;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
}

.btn-secondary {
    background-color: #F2D0F0;
    color: #010101!important;
    padding: 10px 20px;
    border: 2px solid #101820;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
}

/*
 * Hikashop Checkout Styling
 */
span.hikashop_product_price {
	color:#5586F2;
}

/* Order bump inside cart during checkout */
body.view-cart span.hikashop_product_name {
  font-weight: 900;
}

body.view-cart a.hikabtn[data-addToCart="1"] {
  background-color: forestgreen;
  color: #fff;
  font-size: 1.25rem;
}

div.hikaradios label {
  border: 1px solid #000;
}

/* Resize the image inside the checkout process */
img.hikashop_product_checkout_cart_image {
  width: 50px;
  max-width: none;
}

/* Titles in the Hikashop registration step */
div.hikashop_checkout_login h1 {
    display: none;
}

@media only screen and (min-width: 760px) {
  .hikashop_checkout_login .hkform-horizontal .hkcontrol-label {
    text-align: right;
  }
}

/* Styles for the checkout, cart and sales page buttons */
a.hikabtn.hikabtn-success.hikabtn_checkout_next,
button.hikabtn.hikabtn-success.hikabtn_checkout_next,
a.hikabtn.hikashop_cart_proceed_to_checkout {
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin: 0.5rem auto;
  box-sizing: border-box;
  background-color: forestgreen;
  color: #fff;
  font-size: 1.5rem;
  border: none;
  white-space: normal;
}

/* Make link on product name inside cart view inert and unclickable */
.hikashop_cart_product_name a {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: inherit;
}

/* Hide table headers inside the cart view other than total price */
th.hikashop_cart_status_title,
th.hikashop_cart_status_title.title {
    display: none;
}

th.hikashop_cart_price_title,
th.hikashop_cart_price_title.title {
    display: none;
}

th.hikashop_cart_product_image_title.hikashop_cart_title,
th.hikashop_cart_product_name_title.hikashop_cart_title {
    display: none;
}

th.hikashop_cart_product_quantity_title.hikashop_cart_title,
th.hikashop_cart_product_total_title.hikashop_cart_title,
th.hikashop_cart_product_quantity_title.title{
    display: none;
}

/* Hide table definitions inside the cart view other than total price */
td[data-title="Unit price"],
td[data-title="Status"],
td[data-title="Quantity"] {
    display: none!important; /*Hide on mobile devices too */
}

@media only screen and (max-width: 768px) {
    .hikashop_checkout_cart table#hikashop_cart_product_listing > tbody > tr.hika_show_cart_total_text_2 {
        display: none;
    }
}

/* Hide the table footer inside the cart view */
#hikashop_cart_product_listing tfoot {
    display: none !important;
}

/* Hide the empty row next to total price */
td.hikashop_cart_empty_footer
  {
  display: none; 
  }

td.hikashop_order_item_files_value a {
    padding: 0.5rem;
    display: inline-block; 
}

/* Hide text that explains coupon and allows removal */
.hikashop_coupon_label {
    display: none;
}

/* Text colour of the price */
span.hikashop_checkout_cart_final_total{
  color:#5586F2;
  font-weight: bold;
}

/* Hide trash icon so items can't be deleted in cart */
.hikashop_no_print .fas.fa-trash {
    display: none;
}

/* Center the payment options table items */
table.hikashop_payment_methods_table {
    text-align: center;  
}

/* Prevent link on checkout step which is completed */
.hikashop_cart_step_finished a
  {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  }

/* Add some padding around terms & conditions notice */
div[id^="hikashop_checkout_terms_"] {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Prevent links from activating on product images */
.hikashop_product_image_main a 
  {
  pointer-events: none;
  cursor: default;
  }

.hikashop_product_main_image_subdiv > a {
  pointer-events: none;
  cursor: default;
}

.hikashop_product_main_image_thumb a {
  pointer-events: none;
  cursor: default;
}

/*
 * Hikashop Control Panel View (logged-in users)
 */
/* Prevent the image & product link inside the orders view of the cpanel */
a.hika_cpanel_product_image_link {
  pointer-events: none;
  cursor: default;
}

.hika_cpanel_product a {
  cursor: default;
  text-decoration: none;
  color: inherit;
}

/* Prevent image and product links from appearing inside the orders view */
.hika_order_product a {
  cursor: default;
  text-decoration: none;
  color: inherit;
}

a.hika_order_product_image_link
  {
  cursor: default;
  text-decoration: none;
  color: inherit;
  }

/* Prevent links from appearing on the product name in order_products view */
a span.hika_order_product_name {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

/* Prevent links from appearing on the product code inside order_products view */
a span.hikashop_order_product_code {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

a.hikashop_order_product_link {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: inherit;
}

/* Make links inert and unclickable on images inside order_products view */
a.hikashop_order_product_image {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: inherit;
}

/* Hide the shopping cart inside the control panel */
a.hika_cpanel_icon.hikashop_cpanel_cart_div {
    display: none;
}

/*
 * Hikashop Product Page Styles For Sales Page Type Layout 
*/
body.com_hikashop.view-product.layout-show h1 {
    font-size:1rem;
  text-align: left;
}

body.com_hikashop.view-product.layout-show h2 {
  max-width: 1100px;
  margin: 2rem auto 1.5rem;
  font-size: 3rem;
  color: #0477BF;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 760px) {
  body.com_hikashop.view-product.layout-show h2 {
    font-size: 2.4rem; 
  }
}
  
body.com_hikashop.view-product.layout-show h3 
  {
  font-size: 2.25em;
  font-weight: 700;
  max-width: 1000px;
  margin: 2rem auto 1.5rem;
  text-align:center;
  color: #A65151;
  }

@media (max-width: 768px) {
  body.com_hikashop.view-product.layout-show h3 {
    font-size: 1.8rem; 
  }
}

body.com_hikashop.view-product.layout-show h4 
  {
  font-size: 2rem;
  font-weight: 600;
  max-width: 1000px;
  margin: 1.5rem auto 1.25rem;
  color: #021740;
  }

@media (max-width: 768px) {
  body.com_hikashop.view-product.layout-show h4 {
    font-size: 1.6rem; 
  }
}

body.com_hikashop.view-product.layout-show p {
  font-size: 1.5rem;
  max-width: 900px;
  margin: 0 auto 1.75rem;
  margin-bottom: 2rem;
  color: #010101;
}

body.com_hikashop.view-product.layout-show ul {
  max-width: 700px;
}

/* Center and space out images */
body.com_hikashop.view-product.layout-show img {
  display: block;
  margin: 2rem auto;
  padding: 1rem;
  max-width: 100%;
  height: auto;
}

/* Font awesome lists for sales bullets */
body.com_hikashop.view-product.layout-show ul.fa-ul {
  max-width: 60vw;
  margin: 1.25rem auto 1rem;
  padding: 0;
}

@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
  body.com_hikashop.view-product.layout-show ul.fa-ul {
    max-width: 80vw;
  }
}

body.com_hikashop.view-product.layout-show ul.fa-ul li {
  margin-bottom: 1.25rem;
}

/* Section with grey background for stand out text */
body.com_hikashop.view-product.layout-show .greyblock
   {
   background-color: #efefef;
   margin-left: calc(-50vw + 50%);
   margin-right: calc(-50vw + 50%);
   display: flex;
   justify-content: center; /* Horizontal centering */
   align-items: center; /* Vertical centering */
   }

/* Hide the scrollbar in the section with grey background */
body.com_hikashop.view-product.layout-show {
   overflow-x: hidden; 
}

/* Hide the entire form on product pages except for the description */
body.com_hikashop.view-product.layout-show form[name="hikashop_product_form"] > *:not(#hikashop_product_bottom_part) {
    display: none;
}

/* 
 * TF Learn
 */

/* Headers for backend view (logged-in accounts) */
body.com_tflearn.view-path h1 {
    font-size: 2rem;
  color: #132F53;
}

body.com_tflearn.view-paths h2 {
    font-size: 1.5rem;
  color: #5586F2;
}

body.com_tflearn.view-paths h3 {
    font-size: 1.25rem;
  color: #5586F2;
}

body.com_tflearn.view-path h2 {
    font-size: 1.5rem;
  color: #5586F2;
}

body.com_tflearn.view-path h3 {
    font-size: 1.25rem;
  color: #5586F2;
}

body.com_tflearn.view-page h2 {
    font-size: 1.5rem;
  color: #5586F2;
}

body.com_tflearn.view-page h3 {
    font-size: 1.25rem;
  color: #5586F2;
}

/* 
 * Footer style
 */
footer .footer
  {
  background-color: #615550;
  background-image: linear-gradient(135deg, #615550 0%, #101820);
  /* box-shadow: 0 5px 5px rgba(0, 0, 0, 0.03) inset; */
  }

footer .grid-child
  {
  flex-direction: column; /* Stack children vertically */  
  }

footer .mod-menu 
  {
  flex-direction: row;
  }
  
footer li.nav-item
  {
  margin-left: 1rem;
  font-size: 1rem;
  }

/* Site copyright text */
footer .mod-footer 
  {
  padding: 0.5rem 0;
  position: relative;
  width: 100%;
  }