/*
 Theme Name:   MAK-System
 Theme URI:    https://arttia.co.uk
 Description:  MAK-System child theme
 Author:       Arttia Creative Limited
 Author URI:   https://arttia.co.uk
 Template:     generatepress
 Version:      0.1
*/

/**
Arttia Custom
 */
 
 p .close-bottom {
     margin-bottom:0.4em;
 }
 

.site-footer a {
    text-decoration: none;
}

.top-bar a {
    text-decoration: none;
}

.footer-bar a {
    text-decoration: none;
}

.top-bar .inside-top-bar .widget {
    padding: 0;
    display: inline-block;
    margin-bottom: -10px;
}

/*

.main-navigation .main-nav ul li[class*="current-menu-"] > a:after,
.main-navigation .main-nav ul li:hover > a:after,
.main-navigation .main-nav ul li.sfHover:hover > a:after {
    content: "";
    display: block;
    width: 100%;
    border-bottom: 2px solid #148783;
}

*/

.footer-widgets .widget ul li {
    list-style-type: disc;
    background-color: none;
}

/* 
Mobile menu height adjustments
*/


@media (max-width: 768px) {
    .main-navigation .main-nav ul li a {
        line-height: 50px;
    }
}

.top-bar {
    border-bottom: 1px solid #8D9093;
}

.footer-link-special:hover {
    color: #8D9093;
}

/*red button in the top header*/

.red-button-topbar {
    background-color: red; /* Red background */
    color: white; /* White text */
    border: none; /* No border */
    padding: 8px 20px; /* Padding around the text */
    border-radius: 40px; /* Rounded corners */
    font-size: 0.8rem !important; /* Font size */
    cursor: pointer; /* Cursor changes to a hand icon when hovered over */
    display: inline-flex; /* Use flexbox for alignment */
    align-items: center; /* Align items vertically */
    justify-content: center; /* Center items horizontally */
    transition: background-color 0.3s; /* Smooth transition for background color */
}

.red-button-topbar:hover {
    background-color: #8D9093; /* Background color on hover */
}

.red-button-topbar .fa-circle-right {
    margin-left: 10px; /* Space between the text and the icon */
}

/* Equal height buttons centered https://www.beaverjunction.com/bottom-aligned-buttons-on-columns/ */
.equal-height-buttons{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex: 1 1 0;
    }

/* Equal height buttons left https://www.beaverjunction.com/bottom-aligned-buttons-on-columns/ */
.equal-height-buttons-left{
    display: flex;
    justify-content: ;left;
    align-items: flex-end;
    flex: 1 1 0;
    }
    
    
    /* Equal height paragraph */
    .equal-height-para-left{
        display: flex;
        justify-content: ;left;
        align-items: flex-end;
        flex: 1 1 0;
        }




/* Coloured bullet points */
/* EXAMPLE ONE*

(Thanks to Jason Brothers for pointing out that text
falling under the bullet points are not indented.
These examples now have text-indent:-25px;
and margin-left: 25px; to make that happen.
Some adjustment may be needed)

*/

.fl-content .color-bullets-one UL
{
list-style: none;
padding:0;
margin:0 0 0 25px;
text-indent:-25px;
line-height: 1.6;

}
.fl-content .color-bullets-one LI::before
{
content: "⚫";
margin-right: 8px;
color: #FFC719;
font-size: 20px;
}


.fl-menu ul, .fl-menu li {
    list-style: bullet;
    margin: 0;
    padding: 0;
}


