:root {
    --btn-main-color: black;
    --btn-unit-margin: 20px;
    --btn-size: var(--square-36);
    --variable-btn-stroke-thickness: 2px;

}




/*Button*/

.btn-container {
    display: flex;
    width: var(--square-36);
    height: var(--square-36);
    align-items: center;
    justify-content: center;
    border-radius: var(--variable-border-radius);
}

.inline-btn-container {
  display: flex;
  width: calc(var(--square-36) - 2 * var(--variable-border));
  height: auto;
  align-items: center;
  justify-content: center;
  border-radius: var(--variable-border-radius);
}






/*Button Icons*/

/*Grundeinstellung*/
.icon-space {
    position: relative;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;

}





/*Grösse der zur verfügung stehenden Fläche innerhalb des Containers:*/
.new-close-icon {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    position: relative;
    width: 54%;
    height: 54%;
    display: flex;
    align-items: center;
    justify-content: center;

}





.btn-stroke-thickness {
    /*strichstärke:*/
    height: var(--variable-btn-stroke-thickness);
    /*strichlänge:*/
    width: 100%;


}

.stroke-white {
  background-color: white;
}

.stroke-black {
  background-color: var(--variable-black);
}

.stroke-up {
    transform: rotate(45deg);
    position: absolute;
}


.stroke-down {
    transform: rotate(-45deg);
    position: absolute;
}


.dropdown-btn {
    cursor: pointer;
}




.hamburger-icon {
    height: calc(var(--variable-btn-stroke-thickness) * 8);
    width: 50%;
    flex-flow: column;
    justify-content: space-between;
}





.ellipse-icon {
    height: 50%;
    width: calc(var(--variable-btn-stroke-thickness) * 1.5 * 5);
    /*width: 50%;*/

    flex-direction: row;
    justify-content: space-between;
}



.vertical {
    transform: rotate(90deg);
}



.btn-point-size {
    width: calc(var(--variable-btn-stroke-thickness) * 1.5);
    height: calc(var(--variable-btn-stroke-thickness) * 1.5);
    border-radius: 50%;
    background-color: var(--btn-main-color);
}

/*angle down icon*/



.angle-down-icon {
    height: var(--zab-4);
    width: var(--zab-4);
    transform: rotate(225deg);
  top: -2px;

}


.angle-stroke-down {
    position: absolute;
   left: 0;
    top: 0;
    width: 100%;
    height: var(--variable-btn-stroke-thickness);
}

.angle-stroke-up {
    position: absolute;
    left: 0;
    top: 0;
    width: var(--variable-btn-stroke-thickness);
    height: 100%;
}

.point-icon {
    height: calc(var(--variable-btn-stroke-thickness) * 3);
    width: calc(var(--variable-btn-stroke-thickness) * 3);
}

.info-point {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--btn-main-color);
}
