:root {
    --float-btn-top: 5px;
}

.horizontal-center-open {
    left: calc(50vw + 262px);
    transform: translateX(-50%);
}

.horizontal-center-closed {
    left: 50vw;
    transform: translateX(-50%);
}

#model-number-container {
    top: 71px;
    transition: all 0.3s;
}

/*.floating-buttons-container {*/

/*}*/
.increment-btn,
.decrement-btn {
  border-radius: 20px;
  border: 1px solid #fff;
    background-color: var(--active_buttons_background_color);
    color: white;
    padding: 0px 8px;
    margin: auto 3px;
    cursor: pointer;
}

.floating-buttons-container {
    position: absolute;
    top: 10px;
    z-index: 9;
    transition: all 0.3s;
    display: flex;
    background-color: var(--buttons_background_color);
    width: fit-content;
    justify-content: space-between;
    box-shadow: 0 0 2px 1px rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(20px);
}


.float-btn.mcfi-active, .float-btn:hover {
    background-color: var(--active_buttons_background_color);
    border-radius: 10px;
}

.float-btn.mcfi-active .mc-icon-span, .float-btn:hover .mc-icon-span {
    color: var(--active_buttons_text_color);
}

.float-btn {
    padding: 10px;
    margin: 5px;
    color: var(--buttons_text_color);
    border-radius: 10px;
    background-color: rgba(95, 123, 155, 0.452);
}

.float-btn span {
    color: var(--buttons_text_color);
}

.float-btn:hover {
    cursor: pointer;
}

.mc-icon-span {
    font-size: 10px;
}

.mcfi-disabled {
    background-color: #414142;
    /*pointer-events: none;*/
    cursor: not-allowed !important;
}

.vertical-line {
    border-right: 1px solid #ffffff;
    margin: 10px 0;
}

.float-btn-menu {
    position: fixed;
    color: #FFF !important;
    text-align: center;
    z-index: 5;
    box-shadow: 0 0 2px 1px rgba(255, 255, 255, 0.2);
    width: 71px;
    height: 50px;
    background-color: #ee2934;
    margin: -1px 0 0 -1px;
}
.float-btn.in-active {
    border: 2px dashed #ffffff;
    /* πάχος, dashed, χρώμα */
    border-radius: 10px;
    /* αν το θες στρογγυλεμένο */
    background-clip: padding-box;
    /* ώστε το background να μην “σκεπάζει” το border */
}

.float-btn.out-active {
    border: 2px dashed transparent;
    
}


/* 1440px and below put the floating buttons at bottom to prevent collision with the logo (also when the sidebar its open) */
@media (max-width: 1496px) {

    .floating-buttons-container {
        top: 70px;
    }

    #model-number-container {
        top: 15px;
    }
}
@media( max-width: 1200px) {
    .float-btn-menu {
      display: none;
      bottom: 80px;
      left: 0;
      border-radius: 0 10px 10px 0;
    }

    .float-btn-menu.show {
      display: block;
    }

    .float-btn {
      padding: 5px;
      margin: 0px;
      text-align: center;
    }

  

    .floating-buttons-container {
            top: 60px;
            left: 50px;
            flex-direction: column;
            width: 90px;
            gap: 5px;
            padding: 5px;
    }

    .floating-buttons-container .vertical-line {
        display: none;
    }
}


@media (max-width: 832px) {
    #logo-container > div > a > img {
        max-width: 180px;
    }
    .lang-switcher-container {
        right: 10px;
        top: 74px;
    }

    .dropdown-menu {
        margin-left: -26px;
    }
}

@media (max-width: 444px) {
    #logo-container>div>a>img {
        max-width: 140px;
        padding: 5px;
    }
    #model-number-container {
        top: 10px;
    }


}