.tooltip {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 10px 15px;
    box-shadow: 0px 0px 3px 1.65px rgba(0, 0, 0, 0.2);
    
    font-family: sans-serif;
    font-size: 14px;
    color: #333;

    opacity: 1;
    pointer-events: none;
    z-index: 9999999;

    display: none;
    max-width: 30vw;
    height: auto;
}
.tooltip svg{
    width: 16px ;
    height: 16px;
    transform: scale(1) translateY(-1px);
    color: var(--primary);
    fill: var(--primary)
}

/* Triangle pointer */
.tooltip::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
    z-index: 2;
}

/* Shadow for triangle */
.tooltip::before {
    content: '';
    position: absolute;
    bottom: -11px; /* slightly lower than the white triangle */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(0, 0, 0, 0.05);
    z-index: 1;
}

@media (max-width: 700px) {
    .tooltip{
        max-width: 50vw;
        font-size: 2vw;
        padding: 1vw;
    }
}


.successMessage, #successMessage{
    display: none;
    position: fixed;
    top: 150px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    z-index: 1000;
}

.filterButtons{
    display: flex;
    flex-direction: row;
    justify-content: left;
    gap: 10px;
}
.filterButtons button{
    border: 1px solid rgba(0,0,0,0.22);
    color: black;
    background-color: white;
    border-radius: 20px;
    min-width: 100px;
    height: 35px;
    font-weight: 600;
    padding: 0 20px !important;

    display: flex;
    justify-content: center;
    align-items: center;
}
.filterButtons .selected{
    background-color: rgba(58, 157, 97, 0.2);
    border-color: rgba(58, 157, 97, 0.1)
}
@media (max-width: 700px) {
    .filterButtons{
        margin: auto;
        gap: 2.5vw;
        width: 100vw;
        overflow: scroll;
        padding-right: 10vw;
        padding-left: 5vw;
    }
    .filterButtons button{
        border-radius: 20vw;
        min-width: 25vw;
        width: fit-content;
        height: 8vw;
        padding: 0 2vw !important;
        font-size: 3.8vw;
    }
}


.infofield{
    width: 100%;
    background: rgba(217, 217, 217, 0.20);
    padding: 10px;
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 14px;
}
.infofield p{
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}
@media (max-width: 700px) {
    .infofield{
        padding: 4vw;
        border-radius: 3vw;
        margin-bottom: 5vw;
    }
    .infofield p{
        font-size: 3vw;
        line-height: normal;
    }
}


@media (min-width: 700px) {
    .hiddenonpc{
        display: none !important
    }
}
@media (max-width: 700px) {
    .hiddenonphone{
        display: none !important
    }

    
}

.infofield2{
    width: 100%;
    background-color: rgba(217, 217, 217, 0.3);
    padding: 15px 25px;
    border-radius: 20px;
    margin-bottom: 30px !important;
}
.infofield2 .head{
    
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.infofield2 .head svg{
    width: 20px;
    height: 20px;
    transform: scale(1);
    margin: 0;
}
.infofield2 h1{
    font-size: 25px;
    font-weight: 600;
}
.infofield2 p{
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 600;
    
}
.infofield2 a{
    color: black !important;
    text-decoration: underline;
}
@media (max-width: 700px) {
    .infofield2{
        width: 100%;
        padding: 3vw;
        border-radius: 3vw;
    }
    .infofield2 .head svg{
        width: 3vw;
        height: 3vw;
    }
    .infofield2 h1{
        font-size: 4vw;
    }

    .infofield2 p{
        font-size: 3vw;
        margin-bottom: 3vw;
    }
}
.infofield2>*:last-child{
    margin-bottom: 0;
}

body, main{
    font-family: Inter ;
}
@media (max-width: 700px) {
    body, main{
        overflow-x: hidden !important;
        padding-bottom: 3vw;
    }
}
@media (min-width: 700px) {
    body{
        max-width: 100vw;
        overflow-x: hidden !important;
    }
}
body{
}
main{
}

.dashboard_popup{
    position: fixed;
    width: 250px;
    height: auto;
    border-radius: 20px;
    border-top-right-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
    z-index: 9999999999999999;
    background-color: white;
    overflow: visible;

    right: 130px;
    top: 85px
}
.dashboard_popup p{
    margin: 0;
    padding: 10px 20px;
    transition: 0.3s;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
}
.dashboard_popup p:hover{
    background-color: rgba(0, 0, 0, 0.05);
}
.dashboard_popup p:first-child{
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.dashboard_popup p:last-child{
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.dashboard_popup p:first-child:hover{
    background-color: white;
    cursor: normal;
}
.dashboard_popup a{
    color: black;
    text-decoration: none;
}
.dashboard_popup::after{
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
    width: 150px;
    height: 40px;
    top: -40px;
    right: -10px;
    z-index: 9999999999999;
}



.go_back {
    cursor: pointer;
    margin: 20px 0 !important;
    width: auto;
    height: fit-content;
    display: flex !important;
    justify-content: left;
    align-items: center !important;
    flex-direction: row !important;
    gap: 12px;
    border: none !important;
    box-shadow: none !important;
    margin-bottom: 30px !important; 
}

.go_back svg {
    width: 22px; 
    height: 22px;
    padding: none;

    transform: scale(1) !important;
    scale: 1 !important;
}
.go_back h1 {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 25px !important; 
    font-weight: 800 !important;
}
@media (max-width: 700px){
    .go_back{
        margin: 5vw 0 !important;
    }
    .go_back svg {
        width: 5vw; 
        height: 5vw;
    }
    .go_back h1 {
        font-size: 5vw !important;
    }
}


.standard_form{
    width: 800px !important;
    
    display: flex;
    flex-direction: row;
    gap: 20px !important;
    
    
}
.standard_form span {
    margin: 0;
    font-size: 15px !important;
    font-weight: 700 !important;
}
.standard_form .inp {
    margin-bottom: 20px !important;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    width: 100%;
    padding-left: 10px;
}
.standard_form .inp {
    color: rgba(0, 0, 0, 0.9) !important
}
.inp.checkbox{
    width: 20px;
}
.standard_form >div {
    width: 50%;
    display: flex;
    flex-direction: column;
}
.standard_form .techpackinfo div {
    color: var(--primary);
    font-size: 13px;
    width: auto;
    font-weight: 600;

    max-width: 70%;
}
.standard_form > div > button:not(.inp) {
    height: 44px;
    width: 100% !important;
    max-width: 100vw !important;
    border-radius: 30px;
    font-weight: 500 !important;
    margin-top: 10px;
    min-width: 200px;
    max-width: fit-content;
    height: 40px;
    font-size: 17px;
    margin-top: 30px;
    background-color: var(--primary);
    border: none;
    color: white;
}

@media (max-width: 700px){
    .standard_form {
        width: 100% !important;
        flex-direction: column;
        gap: 0 !important
    }
    .standard_form>div{
        width: 100%;
    }
    .standard_form .techpackinfo{
        gap: 2vw;
        margin: 2vw 0;
        margin-bottom: 5vw;
    }
    .standard_form .techpackinfo div{
        font-size: 3vw;
    }
    .standard_form .techpackinfo button{    
        font-size: 3vw;
        padding: 1vw;
        max-width: 30vw;
    }
    .standard_form main{
        padding-top: 10vw ;
    }

    .standard_form h1{
        margin: 0 0 3vw 0;
        font-size: 6vw;
    }
    .standard_form span{
        margin-bottom: 1vw !important;
        font-size: 3.9vw !important;

    }
    .standard_form .inp{
        margin-bottom: 5vw !important;
        height: 10vw;
        border-radius: 1.5vw;
        padding-left: 3vw !important;
        font-size: 4vw;
        padding-left: 1vw;
    }
    .standard_form .inp::placeholder{
        font-size: 4vw !important;
        font-weight: 500 !important;        
    }
    


    .standard_form > div > button:not(.inp){
        margin-top: 5vw;
        height: 10vw !important;
        padding: 0 !important;
        font-size: 5vw;
    }
}

@media (min-width: 700px) {
    .hiddenonpc{
        display: none !important
    }
}

@media (max-width: 700px) {
    .hiddenonphone{
        display: none !important
    }
}

h1{
    text-align: left !important;
    padding: 0 !important;
}
.main_heading{
    font-size: 30px !important;
    margin: 30px !important;
}
@media (max-width: 700px) {
    h1 {
        font-size: 4vw;
    }
    .main_heading{
        font-size: 6vw !important;
        margin: 5vw !important;

    }
}

.create_new_button {
    border: 2px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: none !important;
    background-color: #D9D9D9 !important;
    transition: 0.3s;
    border-radius: 35px !important;

    height: 100px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    padding: 0 20px;

    max-width: 100%;
}

.create_new_button h1 {
    font-size: 24px !important;
    font-weight: 700 !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
}

.create_new_button .plus {
    font-size: 40px !important;
    text-align: right !important;
}

.create_new_button:hover {
    background-color: #d9d9d993 !important;
}
@media (max-width: 700px) {
    .create_new_button {
        border-width: 0.1vw !important;
        border-radius: 6vw !important;
        justify-content: center;

        height: 15vw;
        gap: 3vw
        
    }
    
    .create_new_button h1 {
        font-size: 4.5vw !important;
    }
    
    .create_new_button .plus {
        font-size: 6vw !important;
        transform: translateY(-0.3vw);
        text-align: right !important;
        display: flex;
        align-items: center;
    }

    .inquirysite .create_new_button{
        width: 90vw;
        margin-left: 5vw 
    }
}


.loginpopup_bg{
display: none;

    background-color: rgba(0, 0, 0, 0.3);
    z-index: 909999999;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: start;
    padding-top: 300px;
}
.loginpopup{
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
    width: 400px;
    max-width: 90vw;
    padding: 30px;
}
.loginpopup svg{
    transform: scale(1);
    width: 20px;
    height: 20px;
}
.loginpopup h1{
    font-size: 25px;
    margin: 0;
}
.loginpopup p{
    font-size: 18px;
}
.loginpopup .buttons{
    width: 100%;
    gap: 10px;
    display: flex;
    flex-direction: column;

}
.loginpopup .buttons button{
    width: 100%;
    border-radius: 30px;

    font-weight: 600;
    font-size: 20px;
    min-height: 50px;
    transition: 0.3s;
}
.loginpopup .buttons button:hover{
    transform: scale(1.03);
}
.loginpopup .buttons button:first-child{
    background-color: white;
    color: var(--primary);
    border: 1px solid var(--primary);
}
.loginpopup .buttons button:last-child{
    background-color: var(--primary);
    color: white;
}
@media (max-width: 700px) {
    .loginpopup_bg{
        padding-top: 0;
        align-items: center;
    }
    .loginpopup{
        gap: 4vw;
        border-radius: 5vw;
        padding: 7vw;
    }
    .loginpopup svg{
        width: 5vw;
        height: 5vw;
    }
    .loginpopup h1{
        font-size: 5vw;
    }
    .loginpopup p{
        font-size: 4vw;
    }
    .loginpopup .buttons{
        gap: 2vw;
    }
    .loginpopup .buttons button{
        width: 100%;
        border-radius: 50vw;
        font-size: 4vw;
        min-height: 11vw;
    }
}


.header_links{

    z-index: -1;
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;


    width: 100vw;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    padding-right: 300px;
    padding-left: 300px;
}
.header_links p>a{
    display: flex;
    align-items: center;
    justify-content: center;
}
.header_links p>a{
    font-size: 15px !important;
    z-index: 500;
}
.header_links li a{
    font-size: 20px !important;
}
.header_links *{
    font-weight: 700 !important;
    color: black !important;
    text-decoration: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important
}

.header_links ul{
    position: absolute;
    background-color: white;
    border-radius: 20px;
    border-top-left-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transform: translateX(0) translateY(10px);
}
.header_links ul li{

    list-style: none;
    padding: 10px 20px !important;
    transition: 0.3s;
    cursor:pointer;

    display: flex;
    flex-direction: row;
    align-items: center;

}
.header_links ul li:hover{
    background-color: rgba(0, 0, 0, 0.05);
}
.header_links ul::before{
    z-index: -500;
    content: "";
    position: absolute;
    width: 100px;
    height: 15px;
    top: -15px;
    left: 0;

    
}

.header_links ul li a{
    font-weight: 500 !important;

}



 #cookie-overlay {
      display: none;
      position: fixed;
      z-index: 9998;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(0, 0, 0, 0.5);

      z-index: 999999999

    }

    /* Vollbreiter Cookie-Banner */
    #cookie-banner {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #fff;
      z-index: 9999;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
      padding: 20px 0;
      font-family: Arial, sans-serif;

      z-index: 999999999999
    }

    /* Innenliegender Container */
    .cookie-container {
      max-width: 600px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .cookie-container h2 {
      margin: 0 0 10px;
      font-size: 25px;
      font-weight: 600;
    }

    .cookie-container p {
      margin: 0 0 25px;
      font-size: 17px;
    }

    .cookie-buttons {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .link-essential {
      font-size: 17px;
      color: #666;
      text-decoration: underline;
      cursor: pointer;
      margin-top: 10px;
    }

    .btn-accept-all {
      background-color: var(--primary);
      color: white;
      padding: 10px 18px;
      font-size: 20px;
      font-weight: 600;
      border: none;
      border-radius: 30px;
      cursor: pointer;
    }

    @media (max-width: 600px) {
      .cookie-buttons {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 10px;
      }
    }

.invisible{
    opacity: 0;
}