/* =================================== */
/* ============ OVERRIDE ============= */
/* =================================== */

.invert-filter{
    filter: invert(1);
}

.accordion-button:not(.collapsed){
    border: none !important;
    color: var(--color-black) !important;
    box-shadow: none !important;
    
}

.accordion-button:not(.collapsed)::after{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
}

/* =================================== */
/* ============ ALLGEMEIN ============ */
/* =================================== */

.background-cover {
    background-size: cover;
}

.background-contain {
    background-size: contain;
}

.background-inherit{
    background-size: inherit;
}

.background-no-repeat {
    background-repeat: no-repeat;
}

.background-center-center {
    background-position: center center;
}

.background-center-top {
    background-position: center top;
}

.background-right-top {
    background-position: right top;
}

.background-center-right{
    background-position: center right;
}

.background-center-left{
    background-position: center left;
}

.max-width {
    max-width: 1440px;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-default {
    cursor: default;
}

.image-hover .image-scale{
    transition: all 0.3s;
}

.image-hover:hover .image-scale{
    transform: scale(1.1);
}

.hyphens{
    hyphens: auto;
}

.vh-50{
    height: 50vh;
}

/* Header */

.hamburger-menu-background{
    height: 65px;
    width: 65px;
}

.hamburger-menu{
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='12' viewBox='0 0 30 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='2.19956' height='28.9609' transform='translate(29.58 0.041748) rotate(90)' fill='%23010101'/%3E%3Crect x='29.58' y='0.041748' width='2.19956' height='28.9609' transform='rotate(90 29.58 0.041748)' fill='black'/%3E%3Crect width='2.19956' height='28.9609' transform='translate(29.58 9.2066) rotate(90)' fill='%23010101'/%3E%3Crect x='29.58' y='9.2066' width='2.19956' height='28.9609' transform='rotate(90 29.58 9.2066)' fill='black'/%3E%3C/svg%3E%0A");
    width: 1.875rem;
    height: 1.25rem;
}

.header-logo{
    max-height: 60px;
    height: 100%;
}

/* Entfernungen */

.entfernungen-grid{
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr; 
    gap: 1em 1em; 
}

.ort-info{
    opacity: 0;
    transition: all 0.3s;
}

.ort-container:hover .ort-info{
    opacity: 100;
    transition: all 0.3s;
}

/* Lage */

.lage-nav.active{
    color: var(--color-gold) !important;
}

/* Isometrie */

.grundrisse-table{
    border-bottom: 1px solid var(--color-gold);
}

#myTable, 
#myTable th, 
#myTable td {
    border: none;
    border-collapse: collapse;

}

#myTable{
    overflow-x: auto;
    white-space: nowrap;
}
/* Kontakt */

form input, form textarea{
    background-color: #515453;
}

/* Customize the label (the container) */
.container-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
  
/* Hide the browser's default checkbox */
.container-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
  
/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: transparent;
    border: 1px solid var(--color-gold);
}
  
/* On mouse-over, add a grey background color */
.container-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}
  
/* When the checkbox is checked, add a blue background */
.container-checkbox input:checked ~ .checkmark {
    background-color: var(--color-gold);
}
  
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
  
/* Show the checkmark when checked */
.container-checkbox input:checked ~ .checkmark:after {
    display: block;
}
  
/* Style the checkmark/indicator */
.container-checkbox .checkmark:after {
    left: 9px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Footer */

.footer-border{
    border-bottom: 1px solid #686E6D;
}

@media only screen and (max-width: 1500px) and (min-width: 1400px)  {

}

@media (max-width: 1600px) {

}

@media (max-width: 1440px) {

}

@media (max-width: 1200px) {

}

@media (max-width: 992px) {

    .entfernungen-grid{
        display: grid; 
        grid-template-columns: 1fr; 
        gap: 1em 0em; 
    }
    
}

@media (max-width: 768px) {

}

@media (max-width: 576px) {

    .hero-image{
        height: 50vh;
    }

    
}
