/*#prisberegner {
    overflow: hidden;
}*/

.barsre_pb .gform_confirmation_wrapper {
	display: none !important;
}

/* Heading */
.barsre_pb_heading {
    color: #fff !important;
    font-family: "Quicksand", Sans-serif !important;
    font-weight: 500 !important;
    text-shadow: 0px 3px 15px rgba(0, 0, 0, 0.5);
    padding-bottom: 65px;
}

/* Form */
.mkr_company_info {
    display: flex; /* Ensure its visible by default */
    border-radius: 20px;
    width: 100%;
    overflow: hidden;
}

.mkr_company_info_form {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    padding: 30px;
    width: 100%;
    max-width: 600px;
    height: 250px;
    justify-content: space-between;
    gap: 15px;
}

.mkr_company_info_form .smtp_error_message {
    display: none !important;
}

.mkr_company_info_image {
    background-image: url(https://aveo.dk/wp-content/uploads/DSC01040jpg.webp);
    background-size: cover;
    background-position: center;
    height: 250px;
    width: 100%;
    border-radius: 20px;
    margin-left: -20px;
    overflow: hidden;
    box-shadow: 0 5px 30px -5px rgba(0, 0, 0, 0.5);
}

.mkr_company_info_image_overlay {
    background-color: #57a580c2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    display: flex;
    align-items: start;
}

.mkr_company_info_form_btn_con {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media screen and (max-width: 525px) {
    .mkr_company_info_form_btn_con {
        flex-direction: column;
        align-items: start;
    }
}

.mkr_company_info_usp {
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.mkr_company_info_usp i {
    margin-right: 10px;
}

.mkr_company_info_image_overlay img {
    filter: invert(1);
    width: 175px;
}

.mkr_no_company_btn {
    font-size: 20px;
    padding: 12px 30px;
    border-radius: 1000px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    box-shadow: 0px 5px 15px -3px rgba(0, 0, 0, 0.5);
}

.mkr_company_info .company_info_submit_button {
    background-color: #57A580;
    color: white;
    font-size: 20px;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 1000px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    max-width: 150px;
    box-shadow: 0px 5px 15px -3px rgba(0, 0, 0, 0.5);
}

.mkr_company_info .company_info_submit_button i {
    margin-left: 10px;
    margin-top: 2px;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}

.mkr_pb_company_info .aveo_prisberegner_input_firmanavn input {
    border-radius: 20px !important;
    border: none !important;
    background-color: #F4F4F4 !important;
}

.mkr_pb_company_info .aveo_prisberegner_suggestion_box {
    margin-top: -25px;
}

.mkr_pb_company_info .aveo_prisberegner_input_firmanavn label {
    display: none;
}

.mkr_pb_company_info {
    max-height: 38px !important;
}

.mkr_company_info .gform_footer {
    display: none !important;
}

.mkr_company_info_title {
    font-family: "Quicksand", Sans-serif !important;
    font-size: 24px !important;
    margin: 0 !important;
}

.mkr_company_info_desc {
    font-size: 18px !important;
    margin: 0 !important;
}

.barsre_single_pb_wrapper {
    display: none; /* Hide the radio button section initially */
}

.barsre_pb_form {
    position: relative;
}

.barsre_pb_form * {
    -webkit-user-select: none; /* Chrome, Safari, Opera */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Internet Explorer/Edge */
    user-select: none; 
}

.barsre_pb_form .gform_heading,
.barsre_pb_form .gfield--type-product {
    display: none !important;
}

.barsre_single_pb .gform_fields {
    grid-row-gap: 0 !important;
}

.barsre_single_pb .gfield:not(.barsre_form_active_fieldset) {
    display: none;
}

.barsre_single_pb .barsre_form_active_fieldset .gfield {
    display: block !important;
}

.barsre_pb_form .back {
    animation: barsre-fade-in-from-right 0.5s ease-out !important;
}

@keyframes barsre-fade-in-from-right {
    from {
        opacity: 0;
        transform: translateX(-30px);
    } to {
        opacity: 1;
        transform: translateX(0px);
    }
}

/* CTA sign */
.barsre_pb_form .CTA-box {
    position: absolute;
    right: 0;
    top: -60px;
    background-color: white;
    padding: 10px 25px 9px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px -5px rgba(0,0,0,0.5);
    display: flex;
    gap: 12px;
}

.barsre_pb_form .CTA-box i {
    transform: scaleX(-1) translateY(4px);
    opacity: 0.5;
}

/* Radio btns */
.barsre_single_pb fieldset.gfield {
    margin-top: 0 !important;
    margin: 0 !important;
    animation: barsre-fade-in-from-left 0.5s ease-out;
}

@keyframes barsre-fade-in-from-left {
    from {
        opacity: 0;
        transform: translateX(30px);
    } to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.barsre_single_pb .gfield--input-type-radio .gfield_label {
    position: relative;
    font-weight: 400 !important;
    font-size: 32px !important;
    text-shadow: 1px 3px 6px rgba(10,10,10,0.3);
    line-height: 100%;
    padding-bottom: 4px !important;
    margin: 0 !important;
    color: white !important;
    padding-left: 75px !important;
    max-width: 900px !important;
}

.barsre_single_pb .gfield--input-type-radio .gfield_label::before {
    content: "\f059";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    font-size: 55px;
    line-height: 55px;
    position: absolute;
    top: 2px;
    left: 0;
}

.barsre_single_pb .gfield--input-type-radio .gfield_description {
    opacity: 0.7;
    font-size: 18px !important;
    font-weight: 500;
    margin: 0px !important;
    line-height: 110% !important;
    color: white !important;
    padding-left: 75px !important;
    padding-bottom: 30px !important;
}

.barsre_single_pb .gfield--input-type-radio .gfield_radio {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px !important;
}

.barsre_single_pb .gfield--input-type-radio .gfield_radio .gchoice {
    background-color: #57A580;
    box-shadow: 0 5px 30px -5px rgba(0,0,0,0.5);
    border-radius: 20px;
    transition: 0.3s ease-in-out;
    display: block;
}

.barsre_single_pb .gfield--input-type-radio .gfield_radio .gchoice.hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 30px -5px rgba(0,0,0,0.75);
}

.barsre_single_pb .gfield--input-type-radio .gfield_radio .gchoice .gfield-choice-input {
    display: none !important;
}

.barsre_single_pb .gfield--input-type-radio .gfield_radio .gchoice .gform-field-label {    
    color: white;
    font-size: 28px;
    font-family: "Quicksand" !important;
    font-weight: 400 !important;
    max-width: 100%;
    text-align: center;
    min-height: 240px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;	
    padding: 0 35px;
    cursor: pointer;
}

.barsre_single_pb .gfield--input-type-radio .gfield_radio .gchoice .gform-field-label .icon {
    max-width: 70px;
    max-height: 50px;
    display: block;
    margin: 0 auto 20px;
    filter: invert(1);
    pointer-events: none;
}

.barsre_single_pb .gfield--input-type-radio .gfield_radio .gchoice .gform-field-label .ginput_price {
    display: none !important;
}

.barsre_single_pb .gform_footer {
    visibility: hidden;
    height: 0;
    opacity: 0;
    margin: 0 !important;
}

/* contact form */
.barsre_single_pb .contact {
    margin: 0 !important;
    display: grid;
    grid-template-columns: 6fr 4fr;
    border-radius: 20px;
    box-shadow: 0 5px 30px -5px rgba(0,0,0,0.5);
    background-color: white !important;
    overflow: hidden;
    animation: barsre-fade-in-from-left 0.5s ease-out;
}

.barsre_single_pb .contact .content {
    padding: 29px 50px;
}

.barsre_single_pb .contact .content .title {
    font-size: 24px;
    padding-bottom: 15px;
}

.barsre_single_pb .contact .content .gfield {
    margin-top: 0 !important;
}

.barsre_single_pb .contact .content .fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 20px;
}

.barsre_single_pb .contact .content .fields .gfield input {
    width: 100% !important;
    background-color: #f4f4f4;
    border: none;
    font-size: 18px;
    color: #666 !important;
    padding: 12px 25px;
    border-radius: 1000px;
    line-height: 1em !important;
}

.barsre_single_pb .contact .content .fields .gfield input.wrong::placeholder {
    color: #932f2f !important;
}

.barsre_single_pb .contact .content .submit {
    display: inline-block;
    background-color: #57A580;
    color: white;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    padding: 12px 30px 12px 35px;
    border-radius: 1000px;
    box-shadow: 0 2px 10px -2px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: 0.3s ease-out;
}

.barsre_single_pb .contact .content .submit:hover {
    background-color: #418967;
}

.barsre_single_pb .contact .content .submit i {
    padding-left: 15px;
}

.barsre_single_pb .contact .image {
    background-image: url(https://aveo.dk/wp-content/uploads/DSC08630-copy.webp);
    background-size: cover;
    background-position: center;
}

.barsre_single_pb .contact.denied {
    animation: barsre_form_contact_denied 0.75s ease-out;
}

@keyframes barsre_form_contact_denied {
    0% { transform: translateX(0px); }
    10% { transform: translateX(10px); }
    20% { transform: translateX(-10px); }
    30% { transform: translateX(10px); }
    40% { transform: translateX(-10px); }
    50% { transform: translateX(10px); }
    60% { transform: translateX(-10px); }
    70% { transform: translateX(10px); }
    80% { transform: translateX(-10px); }
    90% { transform: translateX(10px); }
    100% { transform: translateX(0px); }
}

.barsre_single_pb .contact.allready_in {
    animation: none;
}

/* numbers */
.barsre_form_bottom {
    display: flex;
    flex-direction: row;
    padding-top: 30px;	
    align-items: center;
}

.barsre_form_bottom .btn_con {
    transition: 0.5s ease-out;
    max-width: 170px;
}

.barsre_form_bottom .btn_hide {
    max-width: 0px;
    overflow: hidden;
}

.barsre_form_bottom .btn_con .back_btn {
    color: rgb(255 255 255 / 50%);
    transition: 0.3s ease-out;
    font-size: 20px;
    background-color: rgb(255 255 255 / 13%);
    padding: 0 15px;
    border-radius: 1000px;
    height: 45px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 15px;
    width: 150px;
    animation: barsre_form_back_btn 0.5s ease-out;
    white-space: nowrap;
}

@keyframes barsre_form_back_btn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    } to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.barsre_form_bottom .btn_con .back_btn:hover {
    color: rgb(255 255 255 / 100%);
    background-color: rgb(255 255 255 / 30%);
    cursor: pointer;
}

.barsre_form_bottom .back_btn i {
    padding-right: 10px;
    font-size: 1.2em;
}

.barsre_form_bottom .numbers {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.barsre_form_bottom .single {
    height: 45px;
    width: 45px;
    color: white;
    border: solid 1px #fff;
    border-radius: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px 0 0 2px;
    opacity: 0.3;
}

.barsre_form_bottom .single.active {
    background-color: #ffff;
    color: #1F446A;
    opacity: 0.7;
}

.barsre_form_bottom .single.done {
    background-color: #ffff;
    color: #1F446A;
}

.barsre_form_bottom .goal {
    color: white;
    transition: 0.3s ease-out;
    font-size: 20px;
    padding-left: 15px;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    opacity: 0.5;
    animation: barsre_form_bottom_goal 3s ease;
    animation-iteration-count: infinite;
}

@keyframes barsre_form_bottom_goal {
    0% { opacity: 0.5; }
    30% { opacity: 0.5; }
    50% { opacity: 1; }
    70% { opacity: 0.5; }
    100% { opacity: 0.5; }
}

.barsre_form_bottom .goal i {
    margin-right: 10px;
}

/* Credits */
.barsre_pb .credits {
    display: none;
    animation: barsre-fade-in-from-left 0.5s ease-out;
}

.barsre_pb .credits.barsre_form_active_fieldset {
    display: block !important;
}

.barsre_pb .credits .top {
    display: grid;
    grid-template-columns: 47fr 53fr;
    background-color: white;
    box-shadow: 0 5px 30px -5px rgba(0,0,0,0.1);
    border-radius: 20px;
    margin-bottom: 75px;
}

.barsre_pb .credits .top .box {
    padding: 35px 50px;
}

.barsre_pb .credits .top .box .heading {
    font-size: 36px;
    margin-bottom: 10px !important;
    color: #333;
}

.barsre_pb .credits .top .box .description {
    line-height: 125%;
    color: #444;
}

.barsre_pb .credits .top .box .price {
    text-align: right;
    border: 1px solid rgb(0,0,0,0.2);
    border-radius: 10px;
    padding: 12px 20px;
    line-height: 1;
    margin: 10px 0 !important;
    color: #444;
}

.barsre_pb .credits .top .box .price .number {
    font-size: 42px;
    font-weight: 500;
}

.barsre_pb .credits .top .box .note {
    font-size: 16px;
    line-height: 1.3em;
    color: #444;
}

.barsre_pb .credits .top .right {
    background-image: url(https://aveo.dk/wp-content/uploads/DSC01040jpg.webp);
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px -5px rgba(0,0,0,0.5);
}

.barsre_pb .credits .top .right .overlay {
    background-color: #57a580c2;
    height: 100%;
}

.barsre_pb .credits .top .right .overlay .heading {
    color: white;
    font-weight: 500;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.barsre_pb .credits .top .right .overlay .description {
    color: white;
    font-weight: 500;
    text-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.barsre_pb .credits .top .right .overlay .price {
    border: 1px solid rgb(255,255,255,0.5);
    color: white;
    text-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.barsre_pb .credits .top .right .overlay .note {
    color: white;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.barsre_pb .credits .top .right .overlay .code {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.barsre_pb .credits .top .right .overlay .code .border {
    display: flex;
    flex-direction: row;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 5px 15px 3px;
    gap: 15px;
    color: white;
    border-radius: 10px;
    text-shadow: 0 3px 5px rgba(0,0,0,0.3);
    align-items: center;
}

.barsre_pb .credits .top .right .overlay .code .border .code_result {
    font-weight: 900;
}

.barsre_pb .credits .top .right .overlay .code .note .deadline_result {
    font-weight: 900;
    display: inline-block;
}

.barsre_pb .credits .top.marketing {
    box-shadow: 0 5px 30px -5px rgba(0,0,0,0.5);
}

.barsre_pb .credits .top.marketing .right {
    border-radius: 0 20px 20px 0;
    box-shadow: none;
    background-image: url(https://aveo.dk/wp-content/uploads/DSC08420-1.webp);
}

.barsre_pb .credits .top.marketing .right * {
    display: none;
}

.barsre_pb .credits .bottom {
    display: grid;
    grid-template-columns: 2fr 4fr;
    gap: 100px;
}

.barsre_pb .credits .bottom .left {
    color: white;
}

.barsre_pb .credits .bottom .left .heading {
    font-size: 44px;
    font-weight: 500;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
    padding-bottom: 20px;
    line-height: 1em;
}

.barsre_pb .credits .bottom .left .desc {
    font-weight: 500;
    line-height: 1.6em;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
    padding-bottom: 50px;
}

.barsre_pb .credits .bottom .left .btn {
    background-color: #57A580;
    color: white;
    line-height: 120%;
    padding: 12px 35px;
    border-radius: 1000px;
    box-shadow: 0 5px 15px -3px rgba(0,0,0,0.5);
    transition: 0.3s ease-out;
}

.barsre_pb .credits .bottom .left .btn:hover {
    background-color: #418967;
}

.barsre_pb .credits .bottom .right {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;	
    max-height: 0px;
}

.barsre_pb .credits .bottom .right .case {
    height: 500px;
    background-size: cover;
    background-position: top center;
    border-radius: 10px;
    box-shadow: 0 5px 30px -5px rgba(0,0,0,0.5);
}

.barsre_pb .credits .bottom .right .case_1 { 
    background-image: url(https://aveo.dk/wp-content/uploads/screencapture-new-aveosupport-dk-case-vestkyst-adventures-nordic-surf-travel-2023-10-03-12_45_05.webp); 
    margin-right: -50px;
    transform: translateY(40px);
    z-index: 1;
}

.barsre_pb .credits .bottom .right .case_2 { 
    background-image: url(https://aveo.dk/wp-content/uploads/screencapture-new-aveosupport-dk-case-spectre-2023-10-03-12_44_09.webp); 
    margin: 0 -25px;
    z-index: 2;
}

.barsre_pb .credits .bottom .right .case_3 { 
    background-image: url(https://aveo.dk/wp-content/uploads/screencapture-new-aveosupport-dk-case-danish-sports-travel-2023-10-03-12_43_48-1.webp); 
    margin-left: -50px;
    transform: translateY(-40px);
    z-index: 3;
}

/* Responsive */
@media screen and (max-width: 1099px) {
    .barsre_pb_form .CTA-box {
        top: -60px;
        right: auto;
        left: 0;
    }
    
    .barsre_single_pb .gfield--input-type-radio .gfield_label {
        font-size: 26px !important;
        padding-top: 4px !important;
        padding-bottom: 0 !important;
        line-height: 1.1em;
    }
    
    .barsre_single_pb .gfield--input-type-radio .gfield_description {
        padding-bottom: 20px !important;
    }
    
    .barsre_single_pb .gfield--input-type-radio .gfield_radio {
        gap: 15px;
    }
    
    .barsre_single_pb .gfield--input-type-radio .gfield_radio .gchoice .gform-field-label {
        font-size: 24px;
        line-height: 1.1;
        padding: 0 15px;
    }
    
    .barsre_single_pb .contact {
        grid-template-columns: 1fr;
        margin-top: -70px !important;
    }
    
    .barsre_single_pb .contact .content {
        padding: 30px;
    }
    
    .barsre_single_pb .contact .image {
        display: none;
    }
    
    .barsre_form_bottom .btn_con {
        max-width: 180px;
    }
    
    .barsre_form_bottom .btn_con .back_btn {
        width: 160px;
    }
    
    .barsre_form_bottom .single {
        width: 35px;
        padding: 2px 0 0 1px;
    }
    
    .barsre_single_pb .contact {
        margin-top: -100px !important;
        height: fit-content !important;
        grid-template-columns: 1fr;
    }
    
    .barsre_pb .credits .bottom {
        display: none !important;
    }
    
    .barsre_pb .credits .top {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 766px) {
    .barsre_pb_form .CTA-box {
        top: -60px;
    }
    
    .barsre_single_pb .gfield--input-type-radio .gfield_label {
        padding-left: 50px !important;
        padding-top: 0px !important;	
        font-size: 22px !important;
        font-weight: 500 !important;
        padding-bottom: 7px !IMPORTANT;
    }
    
    .barsre_single_pb .gfield--input-type-radio .gfield_description {
        padding-left: 50px !important;
        font-size: 16px !important;	
        padding-top: 2px;
    }
    
    .barsre_single_pb .gfield--input-type-radio .gfield_label::before {
        font-size: 35px;
        line-height: 35px;
    }
    
    .barsre_single_pb .gfield--input-type-radio .gfield_radio {
        grid-template-columns: 1fr;
    }
    
    .barsre_single_pb .gfield--input-type-radio .gfield_radio .gchoice .gform-field-label {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 20px;
        justify-content: flex-start;
        min-height: 100px;
        padding: 0 25px;
        text-align: left;
    }
    
    .barsre_single_pb .gfield--input-type-radio .gfield_radio .gchoice .gform-field-label .icon {
        display: inline-block;
        margin: 0;
        max-width: 50px;
        max-height: 40px;
    }
    
    .barsre_form_bottom {	
        padding-top: 15px;
    }
    
    .barsre_form_bottom .numbers,
    .barsre_form_bottom .goal {
        display: none !important;
    }
    
    .barsre_single_pb .contact {
        margin-top: -55px !important;
    }
    
    .barsre_single_pb .contact .content .title {
        line-height: 1.3;
        font-size: 20px;
    }
    
    .barsre_single_pb .contact .content .fields {
        padding-bottom: 15px;
    }
    
    .barsre_single_pb .contact .content .submit {
        padding: 12px 20px 12px 25px;
        text-align: center;
        width: 100%;
        font-size: 18px;
    }
    
    .barsre_pb .credits .top .box {
        padding: 30px;
    }
    
    .barsre_pb .credits .top .box .heading {
        font-size: 28px;
        margin-bottom: 8px !important;
    }
    
    .barsre_pb .credits .top .box .description {
        font-size: 16px;
    }
    
    .barsre_pb .credits .top .box .price {
        padding: 8px 20px;
    }
    
    .barsre_pb .credits .top .box .price .number {
        font-size: 36px;
    }
    
    .barsre_pb .credits .top .right .overlay .code {
        flex-direction: column;
        gap: 8px;
    }
    .mkr_company_info_form {
        height: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .mkr_company_info {
        flex-direction: column;
    }
    .mkr_company_info_form {
        border-radius: 20px;
    }
    .mkr_company_info_image {
        display: none;
    }
    
}

/* Mkr cvr api addition*/ 
.suggestions {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 100%;
    max-width: 540px;
    z-index: 1000;
    background-color: #f4f4f4;
    border-radius: 20px;
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: 300px;
    box-shadow: 0 2px 15px -5px rgba(0, 0, 0, 0.2);
    margin-top: -6px;
}

@media only screen and (max-width: 1099px) {
    .suggestions {
        width: 94%
    }
}

.suggestions::-webkit-scrollbar {
    width: 3px;
}

.suggestions .suggestion_top_bar {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    font-weight: 500;
    position: sticky;
    top: 0;
    background-color: #f4f4f4;
}

.suggestions .suggestion {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s ease-out;
}

.suggestions .suggestion:hover {
    background-color: #ddd;
}

.suggestions .suggestion div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.suggestions .suggestion div span:nth-child(2) {
    font-size: 12px;
}

.suggestions .suggestion.selected {
    background-color: #ddd;
}

.suggestions .suggestion:focus {
    outline: none;
}	

.suggestions::-webkit-scrollbar {
    width: 10px;
   /* Make the scrollbar wider */
}

.suggestions::-webkit-scrollbar-track {
    background-color: transparent;
   /* Or another color */
    border-radius: 10px;
   /* Optional: round the scrollbar track */
    margin: 2px;
   /* Create space around the track to simulate padding */
}

.suggestions::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
   /* Add a thumb color */
    border-radius: 10px;
   /* Round the scrollbar thumb */
    border: 3px solid transparent;
   /* Add space inside the scrollbar */
    background-clip: padding-box;
   /* Ensure the thumb doesnt overlap the border */
}

.barsre_single_pb .barsre_form_active_fieldset .gfield.aveo_prisberegner_suggestion_box {
    margin-top: -8px !important;
}

/* Multi-form specific styles */
.barsre_multi_pb { 
    display: none; 
}

.barsre_choosen_form .barsre_single_pb { 
    display: block !important; 
}

.barsre_choosen_form {
    display: block !important;
}

.barsre_single_pb.multi.none {
    display: none !important;
}

.barsre_single_pb.multi fieldset {
    border: none;
    padding: 0px;
    margin: 0;
}
