/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

.frontbild {
    min-height: calc(100vh - 92px);
    min-height: calc(100svh - 92px);
}

/* footer always at bottom */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.container.grid-container {
    width: 100%;
}
.site-footer {
    margin-top: auto;
}

/* Beställ knapp i menyn */
.main-navigation .main-nav ul li.bestall_knapp_menu > a {
    background: #000000 !important;
    color: #ffffff !important;
    display: inline-block;
    padding: 1.5rem;
  }
@media screen and (max-width: 820px) {
    .main-navigation .main-nav ul li.bestall_knapp_menu > a {
        background:#000000 !important;
        color: #ffffff !important;
        display: inline-block;
        padding: 0.05rem 2rem;
        margin-left: 20px;
        margin-top: 1rem;
      }
  }

.gb-text.bestall_knapp {
    background: #000000 !important;
    color: #ffffff !important;
    display: inline-block;
}

/* cookies banner */
.banner {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    opacity: 0; 
    transition: opacity 0.5s ease-out; 
}
    
.banner-show {
    animation: slideIn 0.5s forwards; 
}

@keyframes slideIn {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0); 
        opacity: 1;
    }
}

.banner-hidden {
    display: none !important;
}

.banner-button {
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 5px;
    cursor: pointer;
}

/* Gravity forms */
.gform-theme--framework .gf_progressbar .percentbar_blue {background-color: #000000;}
.gform-theme--framework .gf_progressbar {background-color: #ffffff;}
.gfield_required {color: #000000; font-weight: 700;}
.gfield_validation_message {color: #c5560d !important;}
.gform-theme--framework .gform_validation_errors .gform_submission_error {color: #c5560d !important;}
#gform_1_validation_container {display: none !important;}
.gfield_required, .formclick, .gfield_description a {color: #000000 !important; font-weight: 700 !important;}


/* Dagens bibelvers */
.verse-link {margin: 0;}
.bible-verse-of-the-day {font-size: 1.5rem;}
.verse-info {
    font-weight: 700; 
    margin-top: 0px;
}
.vers {margin: 0;}
.verse-reference {margin: 0; padding-top: 10px;}
.verse-version {
    display: flex;
    margin: 0; 
    font-size: 14px;
    justify-content: space-between; /* This makes the content spread out */
    align-items: center; /* Aligns items vertically in the container */
}
.verse-link {
    margin-left: auto; 
}
.verse-link a {
    color: #000000; 
    font-size: 14px;
}
.verse-info2 {
    padding-top: 40px;
    display: flex;
}

@media (max-width: 600px) {
    .verse-info2 {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
    }
    .verse-link {
        margin-left: 0;
        margin-right: auto;
    }
}