﻿
:root {
    --fontsize: 16px;
    --mainfontweight: 700;
    --secondaryfontweight: 500;
}

.SettingsContainer {
    min-width: 400px;
    width: 400px;
    border-radius: 12px;
    padding-left: 10px;
    display: none;
    height: 95%;
}

.Settings-btn {
    margin-left: auto;
    width: 50px;
    margin-right: 20px;
    background: transparent;
    border: transparent;
}
.Settings-toggle {
    cursor: pointer;
    display: flex;
    height: 32px;
    width: 32px;
    padding: 8px;
    background: 0;
    border: 0;
    opacity: 0.8;
    border-radius: 50%;
    position: relative;
    isolation: isolate;
    fill:var(--font-color);
}
.Settings-btn svg {
    align-self: center;
    fill: var(--clr-foreground);
    max-height:24px;
    max-width:24px;
}
.Settings {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.Settingsc {
    overflow-y: scroll;
    margin-bottom:20px;
}
    .Settingsc::-webkit-scrollbar {
        width: 20px;
    }

    .Settingsc::-webkit-scrollbar-track {
        background-color: transparent;
    }

    .Settingsc::-webkit-scrollbar-thumb {
        border-radius: 12px;
        background: linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
        border: 6px solid transparent;
        background-clip: content-box;
    }

.setting-title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 40px;
    color: var(--font-color);
}
.btn-settings {
    background: #DF7132;
    width: 100%;
    height: 51px !important;
    margin-top: auto !important;
    max-height: 51px;
    min-height:51px;
}
.settings-title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    line-height: 40px;
    color: var(--font-color);
    justify-content:center;
}
.Pos-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: auto;
    color: var(--font-color);
}
.theme-toggler {
    right: 0px;
    margin-left: 50px !important;
    margin-right: 20px !important;
}

.page {
    position: relative;
    min-height: 100vh;
    padding: 0;

    overflow: hidden;
}

.top-row {
    justify-content: center;
    height: 3rem;
    display: flex;
    align-items: center;
    color: #F9F9F9;
    margin: 0;
    padding: 0px 0px 0px 10px;
}

    .top-row img {
        width: 30px;
        height: 30px;
    }

.title-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 0 0 5px;
    letter-spacing: 0;
}

    .title-container h3 {
        font-family: Inter;
        font-size: 24px;
        font-weight: 700;
        letter-spacing: 0em;
        text-align: left;
        margin: 0;
        padding: 0;
    }

    .title-container a {
        font-family: Inter;
        font-size: 12px;
        font-weight: 400;
        line-height: 14px;
        letter-spacing: 0em;
        text-align: start;
        align-self: flex-start;
        
        margin: 0 5px 5px 0;
        padding: 0;
    }

.popup {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-inner {
    background-color: white;
    padding: 20px;
    width: 500px;
    height: 250px;
    overflow: auto;
    display: flex;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.MainContainer {
    display: flex;
    flex-flow: column;
    height: 100%;
    padding: 12px;
   
}
.title-text h3 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 43px;
    color: var(--font-color);
}
.order-container {
    display: flex;
    flex-flow: column;
    height: 100%;
}

.orders {
    
    border-radius: 12px;
    
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow-y: scroll;
    align-content: flex-start;
  
    justify-content: flex-start;
}

.orders2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    padding: 0 20px;
}


.orders::-webkit-scrollbar {
    width: 20px;
}

.orders::-webkit-scrollbar-track {
    background-color: transparent;
}

.orders::-webkit-scrollbar-thumb {
    border-radius: 12px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
    border: 6px solid transparent;
    background-clip: content-box;
}

.buttons {
  
    border-radius: 12px;
    height: fit-content;
    margin-bottom: 10px;
    display: flex;
    gap: 5px;
    align-content: center;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.button-next {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #F9F9F9;
    border: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px;
    gap: 10px;
    width: 150px;
    height: 51px;
    border-radius: 8px;
    justify-content: center;
}

.button-next {
    background: #DF7132;
}

}

.flex-child {
    flex: 1;
}

.flex-child-2 {
    flex: 4;
}

.flex-child:first-child {
    margin-right: 10px;
}

.sidebar {
    margin: 0px 0px 0px 0px;
    padding: 0 0 0 0;
    min-height: 100px;
    min-width: 380px;
}

.button-1 {
    background: #DF7132;
}

.button-2 {
    background: #E1913E;
}

.button-3 {
    background: #00C22B;
}

.button-4 {
    background: #F78359;
}

.button-5 {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)), #424D63;
}

.button-6 {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)), #424D63;
}

.button-main {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #F9F9F9;
    border: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 10px;
    min-width: 80px;
    height: 51px;
    border-radius: 8px;
    justify-content: center;
}

.form-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-bottom: 20px;
}

.container-items {
    margin-right: 12px;
}

ul {
    list-style-type: none;
}

.list-container {
    padding: 0;
    border-radius: 12px 12px 12px 12px;
    overflow: hidden;
}

.list-header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 12px 10px;
    
    height: 50px;
  
}

.item-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 6px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 19px;
   
    min-height: 48px;
}

.item-qty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4px;
    gap: 10px;
    width: 40px;
    height: 27px;
    
    border-radius: 20px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    
}

.item-name {
    padding-left: 10px !important;
}

.orders-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    width: 353px;
    height: 433px;
   
    border-radius: 12px;
    margin-left: 10px;
    margin-top: 10px;
}

.order-detail {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 16px;
    padding-left: 2px;
    gap: 10px;
  
    border-radius: 12px;
    width: 100%;
    flex-wrap: nowrap;
    margin-bottom: 10px;
}
.order-detail2 {
    margin: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px;
    padding-left: 16px;
    gap: 10px;
    row-gap: 10px;
    column-gap: 10px;
    border-radius: 12px;
    width: 256px;
    height: 169px;
    margin-right: 5px;
    margin-left: 5px;
    justify-content: flex-start;
    overflow: hidden;
    padding-bottom: 0px !important;
    flex-wrap: nowrap;
}

.name-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    
}

.detail-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 19px;
    color: var(--highlight);
}

.value-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    font-size: 29px !important;
    font-weight: 500 !important;
    overflow-wrap: anywhere;
    flex-wrap: wrap;
    width: fit-content;
    line-height: 27px;
}

.table {
    display: flex;
    justify-content: center;
    margin: 0;
}

.oitem {
  
    min-height: 48px;
    height: stretch;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    justify-content: center;
}

.order-items {
    overflow: hidden;
    width: 100%;
    height: 70%;
}

.order-button {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 37px;
    padding: 0 20px;
    margin-top: auto;
}

    .order-button span {
        font-family: 'Inter';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 19px;
       
    }

    .order-button button {
        font-family: 'Inter';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 19px;
    
        background: transparent;
        box-shadow: none;
        border: 1px solid;
        border-radius: 8px;
        height: 35px;
        width: 84px;
    }

.enroll-form {
    flex-direction: column;
    height: 100%;
    position: relative;
    display: grid;
    width: inherit;
    justify-self: center;
    align-self: center;
    padding: 10px;
    padding-bottom: 2px;
}

.oitem:hover {
    cursor: pointer;
}

.item-wrapper:hover {
    cursor: pointer;
}

.cs-toast {
    display: none;
    padding: 1.5rem;
    color: #fff;
    z-index: 999;
    position: absolute;
    width: 25rem;
    bottom: 2rem;
    border-radius: 1rem;
    right: 2rem;
}

.cs-toast-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1rem;
    font-size: 2.5rem;
}

.cs-toast-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-left: 1rem;
}

    .cs-toast-body p {
        margin-bottom: 0;
    }

.cs-toast-visible {
    display: flex;
    flex-direction: row;
    animation: fadein 1.5s;
}


.slidecontainer {
    width: 100%;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

    .slider:hover {
        opacity: 1;
    }

    .slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        background: #DF7132;
        cursor: pointer;
    }

    .slider::-moz-range-thumb {
        width: 25px;
        height: 25px;
        border-radius: 50%;
        background: #04AA6D;
        cursor: pointer;
    }
.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 21px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.toggle {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .toggle:before {
        position: absolute;
        content: "";
        height: 17px;
        width: 17px;
        left: 4px;
        bottom: 1.5px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

.tog:checked + .toggle {
    background-color: #DF7132;
}

.tog:focus + .toggle {
    box-shadow: 0 0 1px #DF7132;
}

.switch input:checked + .toggle:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

/* Rounded sliders */
.toggle.round {
    border-radius: 34px;
}

    .toggle.round:before {
        border-radius: 50%;
    }

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


@media all and (max-width:1150px) {
    .sidebar {
        display: none !important;
    }
}
