/*
 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
*/

.red-dot::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: red;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
    position: relative;
    bottom: 5px;
}

.red-arrow::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid red;
    margin-left: 5px; /* Avstand til elementet */
    vertical-align: middle; /* Justerer pilen vertikalt */
}

.black-arrow::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid black;
    margin-left: 5px; /* Avstand til elementet */
    vertical-align: middle; /* Justerer pilen vertikalt */
}

.fluentform{
    width: 100%;
}

/*
header{
    padding-top:50px;
    padding-bottom: 50px;
}
*/
.gb-highlight{
    color:#FF0000;
}

header .gp-icon svg {
    height: 9px;
    width: 9px;
    top: 0px;
    position: relative;
    fill: currentColor;
}

#primary-menu li .icon-arrow{
    transition: 0.3s;
    transform: rotate(0deg);
}

#primary-menu li:hover .icon-arrow{
    transform: rotate(-90deg);
    transition: 0.3s;
}


#primary-menu li .sub-menu{
    
    height: 0;
    transition: 0.5s;
}

#primary-menu li:hover .sub-menu{
   
    height: auto;
    transition: 0.5s;
}
