

:root {

    --smooth: all 0.3s ease-in-out;
    --font: 'SFProDisplay', sans-serif;
    --fontStudioo: 'STUDIOO SUPER', sans-serif;
    --orange: #F85812;
    --darkgreen: #284630;
    --neongreen:#95CD4D;
    --green:#86AF91;
    --ww:#FAF4DF;
    --white:#FEFCF6;
    --gray:#E6DCC8;
    --peach:#C38A72;
    --invert:invert(90);
    --gradient: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.0) 100%);
    --ring: 2px solid rgba(0, 0, 0, 0.1);

}





@media all and (max-width: 480px) and (min-width: 10px) {}

* {
    margin: 0;
    padding: 0;

}

::selection {
    background: #BABABA;
    color: #f1f1f1 !important;
    /* WebKit/Blink Browsers */
}

::-moz-selection {
    background: #BABABA;
    color: #f1f1f1 !important;
    /* Gecko Browsers */
}

h1, h2, h3, h4, h5 {
    font-family: var(--fontBold);
    font-weight: normal;
    letter-spacing: -1px;
}

h1 {
    font-size: clamp(35px, 13vmin, 180px);
    line-height: clamp(35px, 12vmin, 180px);
}

h2 {
    font-size: clamp(35px, 7vmin, 180px);
    line-height: clamp(35px, 7vmin, 180px);
}

h3 {
    letter-spacing: 0px;
}

h4 {}

h6 {}

p {
    font-size:17px ;
    line-height:21px ;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: var(--secondary);
}

.small_h1 {
    font-size: clamp(15px, 10vw,70px);
    font-family: var(--font);
}

html, body {
    background-color: var(--ww);
    height: 100vh;
    width: 100%;
    font-family: var(--font), sans-serif;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
    line-height: 23px;
    color: var(--darkgreen);
    -webkit-text-size-adjust: none;
    font-weight:normal !important;
}


.admin_btn_container {
    display: flex;
    flex-direction: row;
    gap:20px;
    margin-bottom: 30px;
}

.admin_btn {
    padding: 10px 12px;
    box-sizing: border-box;
    background-color: var(--orange);
    color:var(--ww);
    border-radius: 100px;
}


header {
    width: 100%;
    height:80px;
    position: relative;
    top: 0;
    left: 0;
    padding: 0px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.header_dash {
background-color: var(--darkgreen);
padding: 0px;
height: 55px;
z-index: 99;
display: flex;
padding: 0px 30px;
width: 100vw;
box-sizing: border-box;
}

.header_wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 99;
}

.header_wrapper_dash {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    padding-right: 15px;
box-sizing: border-box;
}

.user_btn {
color: var(--ww);
font-size: 15px;
font-weight: 700;
position: relative;
display: flex;
align-items: center;
cursor: pointer;
}

.user_btn:after {
    content:"";
    margin-left: 10px;
    width: 8px;
    height: 6px;
    background-image: url('http://studioo.dk/wp-content/uploads/2024/06/arrow-downsvg.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: block;


}

.user_btn:before {
    content:"";
    margin-right: 5px;
    width: 15px;
    height: 15px;
    background-image: url('http://studioo.dk/wp-content/uploads/2024/06/profile-icon.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: block;

}



.user_btn_ul {
display: flex;
background-color: var(--white);
flex-direction: column;
box-sizing: border-box;
position: fixed;
line-height: 34px;
right: 30px;
top: 70px;
box-shadow: 0px 4px 23px 7px rgba(0, 0, 0, 0.10);
z-index: 99;
visibility: hidden;
border-radius: 5px;
}



.user_btn_ul:after {
content: "";
width: 10px;
height: 10px;
background-color: var(--white);
transform: rotate(45deg);
position: absolute;
top: -5px;
right: 15px;
z-index: -1;
}


.user_btn_ul li {
padding: 0px 30px;
cursor: pointer;
}

.user_btn_ul li:hover {
    background-color: var(--darkgreen);
    color: var(--ww);
}

.user_btn_ul li:nth-child(1):hover {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.user_btn_ul li:nth-child(3):hover {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}


.show_list {
    visibility: visible;
}



.logo {
    position: fixed;

  

}


.header_wrapper .logo img {
    height: 32px;

}

.header_wrapper_dash .logo_neg img {
    height: 20px;

}


.header_wrapper .contact_btn {
    font-weight: bold;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    letter-spacing: -2%;
    line-height: 17px;
    color: var(--ww);
    left:30px;
  
}



.contact_btn:after {
    content: "👋";
    position: absolute;
    right: -25px;
    top: 0;
    transition: transform 0.3s ease;
}

.contact_btn:hover:after {
    animation: wave 0.3s ease 3;
}

@keyframes wave {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-15deg); }
    100% { transform: rotate(0deg); }
}


.login_btn_header {
    position: fixed;
    left:30px;
    top:-10px;
}


/*====== NAV BTN ====== */

.nav-button {
    display: flex;
    position: fixed;
    flex-direction: column;
    justify-content: center ;
    align-items: center;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-color: var(--ww);
    border:1px solid var(--gray);
    border-radius: 50%;
    transition: background-color 0.3s;
    right: 30px;
    z-index: 105;
    transition: border 0.5s ease-in-out;
    -webkit-transition: border 0.5s ease-in-out;
    -moz-transition: border 0.5s ease-in-out;



}



.bar {
    width: 19px;
    height: 2px;
    background-color: #ff5500;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.center-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: initial;
  width: 19px;
}

.bar1 {
    transform-origin: top left;
  margin-bottom:3px;
}

.bar4 {
    transform-origin: bottom left;
  margin-top:3px;
}

.bar-container {
    display: flex;
    justify-content: space-between;
    width: 30px;
}

.bar2 {
    width: 7px;
}

.bar3 {
  width:9px;
}

.change .bar1 {
    transform: rotate(45deg) translate(2px, -4px);
}

.change .bar2 {
    transform: translateX(-5px);
    opacity: 0;
}

.change .bar3 {
    transform: translateX(5px);
    opacity: 0;
}

.change .bar4 {
    transform: rotate(-45deg) translate(2px, 4px);
}


/*====== NAV CONTAINER ===== */


.nav_container {
    width:100%;
    height:100%;
    position: fixed;
    display: flex;
    flex-direction: row;
    top:-100%;
    left:0px;
    z-index: 99;

}



.nav_vid {
    width:50%;
    height:100%;
    position: relative;
    overflow: hidden;
    left: 0;
    transition: all 0.9s ease-in-out 0.15s;
    -webkit-transition: all 0.9s ease-in-out 0.15s;
    -moz-transition: all 0.9s ease-in-out 0.15s;
    transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    visibility: hidden;
}


.video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

.nav_menu {
    height:100%;
    width: 50%;
    background-color: var(--darkgreen);
    position: absolute;
    right: 0;
    transition: all 0.7s ease-in-out;
    -webkit-transition: all 0.7s ease-in-out;
    -moz-transition: all 0.7s ease-in-out;
    transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding-top: clamp(100px,5vw,150px);
    padding-bottom: clamp(70px,3vw,120px);
    padding-left: clamp(70px,5vw,120px);
    box-sizing: border-box;
    color: var(--ww);
    visibility: hidden;
}


.open {
    transform: translate(0, 100%);
    -moz-transform: translate(0, 100%);
    -webkit-transform: translate(0, 100%);
    visibility: visible;
}


.booking {
    padding: 15px 25px;
    display: flex;
    width: fit-content;
    background-color: var(--orange);
    outline: none;
    border:none;
    border-radius: 100px;
    font-size: clamp(16px,1vw,24px);
    color:var(--ww);
    font-weight: 500;
    position: relative;
    justify-content: center;
    align-items: center;
    cursor: pointer;

}

.booking:after {
    content: "";
    height: 9px;
    width: 7px;
    background-image: url('http://studioo.dk/wp-content/uploads/2024/06/arrow-right-small.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-left: 10px;


}




.menu_mail_container {
    display: flex;
    flex-direction: column;
    position: relative;
}

.menu_mail_container p {
    font-size: clamp(16px,1vw,24px);
    color: var(--peach);
    font-weight: 500;
    margin-bottom: clamp(5px,1vw,15px);
    line-height: clamp(16px,1vw,24px);
}


.menu_mail_container a {
    font-size: clamp(25px,1.5vw,32px);
    color:var(--ww);
    display: block;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    text-decoration: underline;
    width: fit-content;
    margin-bottom: 10px;
}

.menu_mail_container a:hover {
    color:var(--peach);
}


.menu_social_container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 290px;
    font-weight: 500;
    margin-top: 50px;
}

.some {
    color: var(--green);
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
}

.some:hover {
    color: var(--peach);
}


.nav_menu_bottom_container {
    position: relative;
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    transition: all 0.7s ease-in-out 0.7s;
    -webkit-transition: all 0.7s ease-in-out 0.7s;
    -moz-transition: all 0.7s ease-in-out 0.7s;
    opacity: 0;
}


.fade-in-show {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    opacity: 1;
}



/* ===== MENU ====== */

.menu .menu-item {
    font-size: clamp(16px,6vw,150px);
    line-height: clamp(16px,6.1vw,150px);
    font-family: var(--fontStudioo);
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    width: fit-content;
    overflow: hidden;
}

.menu .menu-item:hover {
    color: var(--orange);
}

.menu .current-menu-item {
    text-decoration: underline;
    color: #3C6246;

}
.menu .current-menu-item:hover {
    color: #3C6246;
}

.menu .current-menu-item a {
    cursor: not-allowed;
}

.menu-item-a {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    -webkit-transition: opacity 0.5s, transform 1s;
    -moz-transition: opacity 0.5s, transform 1s;
    transition: opacity 0.5s, transform 1s;
}

.menu-item-link-show {
    opacity: 1;
    transform: translateY(0);
    -webkit-transition: opacity 0.5s, transform 1s;
    -moz-transition: opacity 0.5s, transform 1s;
    transition: opacity 0.5s, transform 1s;
}





@media only screen and (max-width: 500px) { 
    .nav_vid {
        display: none;
    }

    .nav_menu {
        width: 100%;
    }

    .menu-item-a {
        font-size: clamp(16px, 15vw, 55px);
        line-height: clamp(16px, 15.1vw, 55px);
    }

    .header_wrapper .logo img {
        height:32px;
    }

    .header_wrapper .contact_btn {
        display: none;
    }

    .header_wrapper {
        justify-content: flex-start;
    }

}






/* ==== SCROLL CONTENT ====== */



.scrollContainer {
    position: relative;
    top: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.container {
    position: relative;
    top:-80px;
}

html.has-scroll-smooth {
    margin-top: 0px !important;
}

.c-scrollbar {
    z-index: 99;
}

section.container {
    box-sizing: border-box;
}

.content {
    width: 100%;
    height: fit-content;
}

.content.maegler-content {
transform: translate(0px, 55px);
}

.row_wrapper {
    
    width: 100%;
}

.full_width {
    width:100%;
}

/* ======== LOG IN ====== */

.login_container {
height: 100vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;

}


.login-logo_content {
display: flex;
height: 38px;
position: relative;
margin-bottom: 30px;
width: 100%;
max-width: 333px;
}

.login_container {
height: 100vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}


.logo_login {
height: 100%;
}


.logo_login img {
height: 100%;
}

.reset_container {
height: 100vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}


.maegler_container {
width: 100%;
height: fit-content;
display: flex;
justify-content: center;
background-color: #f9f9f9;
box-sizing: border-box;
position: relative;
min-height: calc(100vh + 55px);
padding: 100px 0px 0px 0px;


}

.maegler_content {
 height: fit-content;   
 position: relative;
 width:70%;
 max-width: 1300px;
 margin-bottom: 80px;
}

.maegler_content h1 {
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    line-height: 36px;
}




/* ===== FORMIDABLE FORMS CSS ========= */

.view-title {
    font-size:10px;
    color:#BDBDBD;
    line-height:13px;
    font-weight:bold;
    
}

.frm3 a {
    text-decoration:underline;
        color:#86AF91;
}


.frm3 a:hover {

        color:#284630;
}

.frm-grid-view > div {
    border-radius:10px!important;

}

.frm_grid_container {
    display:flex!important;
    position:relative;
    justify-content:space-between;
}

.frm_grid_container .frm3:nth-child(1){
    width:40%;
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:center;

}

.frm_grid_container .frm3:nth-child(1):after, .frm3:nth-child(2):after,.frm3:nth-child(3):after {
    content:"";
    height:70%;
    width:1px;
    position:absolute;
    right:0px;
    background-color:#e3e3e3;
}


.frm_grid_container .frm3:nth-child(2){
    width:20%;
        position:relative;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.frm_grid_container .frm3:nth-child(3){
    width:30%;
        position:relative;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.frm_grid_container .frm3:nth-child(4){
    width:10%;
        position:relative;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.frm-grid-view {
    justify-content:center;
    flex-direction:column;

}

.frm-grid-view > div {
        padding:10px 40px 10px 20px!important;
}

/*= ====== PAKKER ====== */




.landbo_syd_pakker > .frm_opt_container div:nth-child(1) {
text-align: center;
width: calc(20% - 20px);
position: relative;
}



.landbo_syd_pakker > .frm_opt_container div:nth-child(2) {
text-align: center;
width: calc(20% - 20px);
position: relative;
}


.landbo_syd_pakker > .frm_opt_container div:nth-child(3) {
text-align: center;
width: calc(20% - 20px);
position: relative;
}



.landbo_syd_pakker > .frm_opt_container div:nth-child(4) {
text-align: center;
width: calc(20% - 20px);
position: relative;
}


.landbo_syd_pakker > .frm_opt_container div:nth-child(5) {
text-align: center;
width: calc(20% - 21px);
position: relative;
}




.landbo_syd_pakker {
padding: 50px;
background-color: #ebebeb;
border-radius: 20px;
width: 100%;
box-sizing: border-box;
}


.landbo_syd_pakker .frm_opt_container {
    display: flex!important;
    width: 100%;
    gap: 30px;
    justify-content: space-evenly;
}

.pakke_content {
width: 100%!important;
display: flex!important;
flex-direction: column;
}


.pakke_content .frm_pos_top {
    border-top:none!important;
}

.landbo_syd_pakker .frm_opt_container .frm_radio label {
display: flex;
white-space: normal;
flex-direction: column-reverse;
justify-content: center;
align-items: center;
gap: 15px;
background-color: white;
border-radius: 20px;
width: 100%;
aspect-ratio: 3/4;
cursor: pointer;
font-weight: 700;
box-sizing: border-box;
font-size: 18px;
padding: 0px 30px;
}


.landbo_syd_pakker .frm_opt_container .frm_radio label:hover {
    border: 1px solid var(--darkgreen);
}



.landbo_syd_pakker .frm_opt_container .frm_radio.checked label {
  /* Din styling her */
 
  background-color: var(--darkgreen);
  color: var(--white);
  box-sizing: border-box;
}



.frm_radio.checked label input:before{
content: '';
width: 14px!important;
height: 14px!important;
border-radius: 70%!important;
transition: none!important;
box-shadow: none!important;
display: block!important;
background-color: #95cd4d;
margin: 0!important;
transform: scale(0.7)!important;

}


.frm_radio.checked label input[type=radio] {
    display: inline-flex!important;
    justify-content: center;
    align-items: center;

}

.add_on_half h3 {
text-align: left!important;
padding-bottom: 10px!important;
}


.pricing {
display: flex;
flex-direction: column;
width: 100%;
align-items: end;
font-weight: 700;
}

.pricing .frm_total_formatted span {
    font-size: 26px;
}

.pricing .frm_total_formatted  {
    font-size: 26px!important;
}


.frm_flex, .frm_full_row {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: end;
margin-bottom: 50px;
}


.frm_prev_page {
    background-color: #ebebeb!important;
    border-color: #ebebeb!important;
    box-shadow: none!important;
    color: var(--darkgreen)!important;

}


.pakker_link {
display: flex;
justify-content: end;
margin: -50px 0px 0px 0px;
position: relative;
right: 20px;
color: var(--darkgreen) ;
box-sizing: border-box;
}

.pakker_link_bb {
display: flex;
justify-content: center;
margin: -50px 0px 0px 0px;
position: relative;
color: var(--darkgreen) ;
box-sizing: border-box;
}


.show_packages {
    cursor: pointer;
}

.show_packages:hover {
    color: var(--neongreen);
    text-decoration: underline;
}




/*===== PAKKE 1 ==== */




.landbo_syd_pakker > .frm_opt_container .frm_radio:nth-child(1) label:after {
    content:"";
    height:60px;
    width: 60px;
    position: relative;
    background-image: url('http://studioo.dk/wp-content/uploads/2024/06/basic-dark-green_1.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 5px;
}


.landbo_syd_pakker > .frm_opt_container .frm_radio.checked:nth-child(1) label:after {
    content:"";
    height:60px;
    width: 60px;
    position: relative;
    background-image: url('http://studioo.dk/wp-content/uploads/2024/06/basic-neon-green_2.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 5px;
}


/*===== PAKKE 2 ==== */



.landbo_syd_pakker > .frm_opt_container .frm_radio:nth-child(2) label:after {
    content:"";
    height:60px;
    width: 60px;
    position: relative;
    background-image: url('http://studioo.dk/wp-content/uploads/2024/06/small-dark-green_1.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 5px;
}


.landbo_syd_pakker > .frm_opt_container .frm_radio.checked:nth-child(2) label:after {
    content:"";
    height:60px;
    width: 60px;
    position: relative;
    background-image: url('http://studioo.dk/wp-content/uploads/2024/06/small-neon-green_1.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 5px;
}





/*===== PAKKE 3 ==== */




.landbo_syd_pakker > .frm_opt_container .frm_radio:nth-child(3) label:after {
    content:"";
    height:60px;
    width: 60px;
    position: relative;
    background-image: url('http://studioo.dk/wp-content/uploads/2024/06/medium-dark-green_1.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 5px;
}


.landbo_syd_pakker > .frm_opt_container .frm_radio.checked:nth-child(3) label:after {
    content:"";
    height:60px;
    width: 60px;
    position: relative;
    background-image: url('http://studioo.dk/wp-content/uploads/2024/06/medium-neon-green_1.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 5px;
}




/*===== PAKKE 4 ==== */




.landbo_syd_pakker > .frm_opt_container .frm_radio:nth-child(4) label:after {
    content:"";
    height:60px;
    width: 60px;
    position: relative;
    background-image: url('http://studioo.dk/wp-content/uploads/2024/06/large-dark-green_1.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 5px;
}


.landbo_syd_pakker > .frm_opt_container .frm_radio.checked:nth-child(4) label:after {
    content:"";
    height:60px;
    width: 60px;
    position: relative;
    background-image: url('http://studioo.dk/wp-content/uploads/2024/06/large-neon-green_1.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 5px;
}




.landbo_syd_pakker > .frm_opt_container .frm_radio:nth-child(5) label:after {
    content:"";
    height:60px;
    width: 60px;
    position: relative;
    background-image: url('http://studioo.dk/wp-content/uploads/2025/05/season_1.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 5px;
}


.landbo_syd_pakker > .frm_opt_container .frm_radio.checked:nth-child(5) label:after {
    content:"";
    height:60px;
    width: 60px;
    position: relative;
    background-image: url('http://studioo.dk/wp-content/uploads/2025/05/season_1.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 5px;
}



/* ========== Packages views =========== */



.packages_view_container {
    width: 100vw;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    background: rgba(0,0,0,0.75);
    z-index: 100;
    top: 0px;
    left: 0px;
}


.packages_view_content {
background-color: white;
padding: 50px;
box-sizing: border-box;
border-radius: 20px;
display: flex;
justify-content: center;
align-items: center;
width: 90%;
max-width: fit-content;
}





.show_flex {
    display: flex;
}




.close {
display: flex;
position: absolute;
top: 130px;
right: 110px;
background-image: url('http://studioo.dk/wp-content/uploads/2024/06/close_icon.svg');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 56px;
width: 56px;
cursor:pointer;
}


.packages_ul {
display: flex;
gap: 30px;
flex-direction: row;
justify-content: space-between;
align-items: start;
}

.packages_ul h3 {
    font-weight: 700;
}


.packages_ul li {
display: block;
padding: 30px;
box-sizing: border-box;
background-color: #f5f5f5;
border-radius: 15px;
}


.packages_ul li > ul {
    margin-top: 10px;
}

.packages_ul li > ul li {
display: block;
padding: 0px;
line-height: 23px;
}



/* ========= ADD-ON ======== */


.add_on_container {
padding: 20px;
box-sizing: border-box;
background-color: white;
border-radius: 20px;
display: flex!important;
flex-direction: column;
justify-content: center;
align-items: center;
border:1px solid var(--darkgreen);
margin-bottom: 50px!important;
aspect-ratio: 3/3;
}


.add_on_container_text {
padding: 20px;
box-sizing: border-box;
background-color: white;
border-radius: 20px;
display: flex!important;
flex-direction: column;
justify-content: center;
align-items: center;
border:1px solid var(--darkgreen);
margin-bottom: 50px!important;
aspect-ratio: 3/1;
}

.add_on_container_text h3 {
    width: 100%!important;
    display: block!important;
    max-width: 333px!important;
}

.frm_pos_top.frm_section_spacing {
border-top: 0px!important;
margin-bottom: 0px!important;
text-align: center;
}


.add_on_container .form-field > .frm_data_container {
display: none;
}

#field_p6h3w_label {
font-weight: 700;
font-size: 21px;
line-height: 31px;
}

#frm_checkbox_726-0 {
margin: 10px 0px;
}


.add_on_number {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;

}


.add_on_number input {
background-color: transparent!important;
border: none!important;
box-shadow: none!important;
color: var(--darkgreen)!important;
font-size: 46px!important;
font-weight: 700!important;
width: 100px!important;
text-align: center;
text-decoration: underline;
}

input::-webkit-inner-spin-button {
    right: 0px;
}

/*

input::-webkit-textfield-decoration-container {
display: flex;
align-items: center;
content: none;
writing-mode: inherit;

}

input::-webkit-textfield-decoration-container {
writing-mode: inherit;
transform: translateX(10px);
}
*/

.frm_inline_box {
background-color: transparent!important;
border: none!important;
box-shadow: none!important;
color: var(--darkgreen)!important;
}





.pakke_content .frm_pos_top {
    margin-bottom: 20px!important;
}

.pakke_content h3 {
    margin-left: 10px!important;
}

.explainer_text_content {
   padding-left: 10px;
   box-sizing: border-box;
}

.explainer_text_content h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--darkgreen);
    font-family: var(--font);
    letter-spacing: 0;
    line-height: 26px;
    margin-bottom: 5px;
}



.with_frm_style select {
width: 100%;
width: var(--auto-width);
max-width: 100%;
background-position-y: calc(50% + 3px);
background-color: white;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
box-shadow: none;
position: relative;
cursor: pointer;
}


.label_dropdown {
position: relative;
}


.label_dropdown:after {
    content: "";
    height: 32px;
    width: 32px;
    position: absolute;
    display: block;
    top: 26px;
    right: 0px;
    background-image: url('http://studioo.dk/wp-content/uploads/2024/06/drop_down_arrow.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.frm_description {
    font-size: 13px!important;
    margin-top: 10px;
    line-height: 17px;
}

.two_col_padding {
    padding: 15px;
    box-sizing: border-box;
}


.with_frm_style .frm-summary-page-wrapper {
padding: 50px;
margin: 25px 0 50px;
border: 1px solid #BFC3C8;
border-color: var(--darkgreen)!important;
border-radius: 4px;
border-radius: 20px!important;
background-color: white;
}

.oversigt_h3  {
    font-size: 26px!important;
    font-weight: 700!important;
    color: var(--darkgreen)!important;
}






/* ======= HERO ====== */

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}


.hero_wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll_line {
    height:160px;
    position: absolute;
    bottom: 0;
    width:1px;
    background: rgba(250, 244, 223, 0.30);
    overflow: hidden;

}

.scroll_line::after {
  content: "";
  position: absolute;
  top: -80px; /* Start udenfor toppen */
  left: 0;
  width: 1px;
  height: 80px;
  background: rgba(250, 244, 223, 0.70);
  animation: scrollLineAnim 1.5s linear infinite;
}

@keyframes scrollLineAnim {
  0% {
    top: -80px;
  }
  100% {
    top: 160px;
  }
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}



.hero_content {
    z-index: 1;
    color: white;
    padding: 0px 0px;
    box-sizing: border-box;
    width: 95%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}


.hero_headline_container {
    overflow: hidden;
    height: fit-content;
    width: 100%;
}

.hero_headline_container h1 {
    font-family: var(--fontStudioo);
    text-transform: uppercase;
    font-size:clamp(16px, 12.4vw, 310px);
    line-height: clamp(16px, 12.4vw, 310px);
    position: relative;
    color: var(--ww);
    text-align: center;
    width: 100%;
    white-space: nowrap;
    flex-grow: 1;
    margin-left: -2px;
}



.hero_play_video_container {
width: 100%;
position: relative;
display: flex;
flex-direction: row;
justify-content: center;
height: 100px;


}

.hero_play_btn {
    position: relative;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.hero_play_btn .play_btn_text {

  animation: drej 15s linear infinite;
  display: inline-block;
  position: absolute;
}

/* Selve animationen */
@keyframes drej {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.play {
    position: absolute;
    width: 70px;
    height:70px;
    border-radius: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-backdrop-filter: blur(20px);
backdrop-filter: blur(20px);
background-color: #ffffff1a;
will-change: backdrop-filter;
}

.play img {
    margin-left: 5px;
}




.col_50 {
    width: 50%;
}


/* ========= LIGHTBOX ============== */

#videoLightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
}

#videoLightbox.active {
  display: flex;
}

.lightbox_content {
  position: relative;
  width: 50%;
  aspect-ratio: 16 / 9;
}

.video_wrapper {
    height: 60vh;
}

.video_wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video_wrapper:hover iframe {
  pointer-events: auto;
}

.close_lightbox {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
}


/*======= HERO TXT INFO ======= */

.hero_txt_container {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-start;
position: absolute;
bottom: 15%;
width:95%;
padding: 0px 10px;
box-sizing: border-box;
}

.hero_txt p {
    font-size: clamp(17px, 1.2vw, 27px);
    line-height: clamp(21px, 1.45vw, 32px);;
    max-width: 600px;
    font-weight: 500;

}


@media only screen and (max-width: 490px) {




    .video-container {
        height: 100lvh;
    }

    .hero_wrapper {
        align-items: flex-start;
        padding-top: 15vh;
        box-sizing: border-box;
    }



    .hero_headline_container h1 {
        font-size: 19vw;
        white-space: wrap;
        line-height: 19vw;
        letter-spacing: 0;
        margin-bottom: 20px;
    }


    .hero_txt_container {
        flex-direction: column;
        position: relative;
        margin-top: 50px;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .hero_txt_container .booking {
        margin-top: 30px;
    }

    .scroll_line {
        height: 90px;
    }
}



/* ====== CANVAS ======= */

.canvas-container {
    width: 40%;
    overflow: hidden;
    margin-bottom: 10px; /* Juster efter behov */
}

#canvas {
    display: block;
    width: 100%; /* Får canvas til at fylde hele bredden af containeren */
    height: auto; /* Bevarer billedets forhold */
    border: 1px solid #ccc; /* Til testning - kan fjernes efter behov */
}


/* =======  ADMIN FORM ======= */

.admin_form {
padding: 50px;
box-sizing: border-box;
background-color: white;
border: 1px solid var(--darkgreen);
border-radius: 20px;
}


.admin_single_form {
width: calc(50% - 2%);
}


@media all and (max-width: 60   0px) {
  .admin_single_form {
width: 100%;
}  
}




/* ======== Bestilling ændringer ====== */ 

.frm_dropzone .dz-message {
border: 2px dashed #dfdfdf;
background: #ffffff;
padding: 20px;
border-radius: 5px;
cursor: pointer;
display: none;
font-size: 20px;
text-align: center;
margin: 0;
width: 100%!important;
aspect-ratio: 16 / 9;
display: flex!important;
flex-direction: column;
justify-content: center;
align-items: center;
}

.frm_dropzone.frm_single_upload {
max-width: 100%!important;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}

.frm_dropzone .dz-message {

aspect-ratio: 16/9;
}









/* ========== FRONT PAGE =============== */










/* ======= Tilfreds ======== */

.tilfreds_container {
    width:100%;
    height:100vh;
    padding: 0% 5%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tilfred_content {
width: 100%;
max-width: 970px;
}
































