.showroom-toggle-box {
    background-color: #5a5a5a;
    border-radius: 15px;
    padding: 20px;
    width: fit-content;
    color: white;
    font-family: 'Poppins';
    position: absolute;
    top: 65px;
    z-index: 4;
    min-width: 500px;
    left: auto;
    right: 0;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 20px;
    max-width: 500px;
}
.showroom-toggle-box {
  display: none;
}

.showroom-toggle-box .title {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    color: white;
    font-family: 'Poppins-SemiBold';
    font-size: 16px;
    padding-left: 10px;
}

.toggle-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    max-width: 100%;
    flex-direction: row;
    width: 100%;
}

.toggle-item {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 50%;
    align-items: center;
    margin-bottom: 15px;
    flex-direction: row-reverse;
}

.toggle-label {
    font-size: 14px;
    white-space: nowrap;
    margin-left: 10px;
}

/* Toggle Switch Style */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
  margin-bottom: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #CDCDCD;
  border-radius: 20px;
  transition: 0.4s;
}

.toggle-slider::before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: 3px;
  top: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: #B8AFA1;
}
.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(25px); /* 50 - 25 = 25px shift */
}

.toggle-item:nth-child(odd) {
    padding-right: 10px;
}
.toggle-item:nth-child(even) {
    padding-left: 10px;
}

.click-vise-icon{
width: 100px;
    max-width: 100px;
    align-self: center;
    order: 99999;
}
.showroom-login-required{
    background-color: #5a5a5a;
    border-radius: 15px;
    padding: 20px;
    min-width: 400px;
    border-radius: 20px;
    color: white;
    font-family: 'Poppins';
    position: absolute;
    top: 65px;
    z-index: 4;
    min-width: 500px;
    left: auto;
    right: 0;
    box-shadow: 0px 3px 6px #00000029;
    display: none;
    font-size: 14px;
    width: auto;
    min-width: 400px;
    border-radius: 20px;
    padding: 15px;
}
.showroom-login-required .main{
    display: flex !important;
    align-items: center;
    flex-direction: row;
    gap: 16px;
}

.showroom-login-message {
    line-height: 1.5;
}
.showroom-login-icon {
    font-size: 25px;
}
.showroom-login-message span {
    font-size: 12px;
    line-height: normal;
}
button#showroom-save-btn {
    display: flex;
    padding: 10px;
    background-color: var(--primary);
    box-shadow: none;
    padding: 5px 20px;
    font-size: 14px;
    border-radius: 30px;
    color: white;
    justify-content: center;
    margin-top: 10px;
    text-transform: uppercase;
    font-family: 'Poppins-Bold';
}
div#showroom-save-message {
    font-size: 12px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    margin-top: 10px;
}
.toggle-list .row {
    width: 100%;
    padding: 0 15px;
    display: flex;
    justify-content: flex-start;
}
button#showroom-save-btn:hover {
    background-color: var(--secondary);
    color: white;
}

@media (max-width:767px) {
    .toggle-list {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .toggle-item:nth-child(even) {
        padding-left: 0px;
    }
    .showroom-toggle-box {
        right: 5px !important;
        min-width: 250px;
    }
    .toggle-item {
        width: 100%;
    }
    .toggle-list .row {
        width: 100%;
        padding: 0 0px;
    }
    .showroom-toggle-box .title {
        padding-left: 0px;
        text-align: left;
    }
    button#showroom-save-btn {
        width: 100%;
        margin-top: 0;
    }
    .toggle-item:nth-child(odd) {
        padding-right: 0px;
    }
    .toggle-list .row {
        margin: 0;
    }
}

#main-sub-cate {
    display: none;
}