: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);
}


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

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

.float-btn {
    padding: 10px;
    margin: 0 10px 0 10px;
    color: var(--buttons_text_color);
}

.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;
}


/* 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: 832px) {
    #logo-container > div > a > img {
        max-width: 180px;
    }
}

@media (max-width: 444px) {
    #model-number-container {
        top: 20px;
    }


}