.vm.page-container {
    margin: 0px auto;
    padding-top: 30px;
    padding-bottom: 0px;
    width: 100%;
    max-width: 960px;
    box-sizing: border-box;
}

.vm.bo_content {
    margin-bottom: 0px;
}

.vm button.disabled {
    cursor: not-allowed;
}

.admin_page {
    padding-top: 80px !important;
}

.vm.border-gray {
    border: 1px #D9D9D9 solid;
}

.vm.border-gray-rounded {
    border: 1px #D9D9D9 solid;
    border-radius: 8px;
}

.vm.border-x-0 {
    border-left: 0px;
    border-right: 0px;
}

.vm.border-b-0 {
    border-bottom: 0px;
}

.vm.text-sm {
    font-size: 14px;
}

.vm.font-weight-500 {
    font-weight: 500;
}

.vm.font-weight-700 {
    font-weight: 700;
}

.vm.step-card {
    padding: 0px;
}

.vm.card-footer {
    justify-content: flex-end;
    display: flex;
    column-gap: 10px;
    border-top: 1px solid #E4E8ED;
    padding: 20px;
}


.d-sm-inline-block {
    display: none;
}

.d-sm-none {
    display: inline-block;
}

.vm.number-input {
    width: 50px;
    height: 35px;
    background-color: #ffffff;
    font-size: 14px;
    font-family: Nunito;
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
}


/** Popup **/

body.vm-popup-open-body {
    overflow: hidden;
}

.vm.popup-exit-btn {
    cursor: pointer;
}

.vm.icon {
    font-size: 16px;
}

.vm.popup-overlay {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
    z-index: 100000004;
}

.vm.popup-container {
    display: none;
    position: fixed;
    width: 950px;
    max-height: calc(100vh - 210px);
    top: 70px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    z-index: 100000005;
}

.vm.popup-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-content: center;
    text-align: center;
    width: 100%;
    background-color: #E8E9EB;
    padding: 20px;
    padding-bottom: 15px;
    border-radius: 3px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    box-sizing: border-box;
}

.vm.popup-header-title {
    text-align: left;
    font-weight: 700;
    font-size: 20px;
}

.vm.popup-content {
    display: flex;
    flex-direction: column;
}

.vm.popup-content main {
    flex-grow: 1;
    display: flex;
    overflow-y: auto;
    flex-direction: column;
    background-color: white;
    min-height: 0;
    max-height: 600px;
}

/** Small Popup Variant */
.vm.popup-small.popup-container {
    width: 450px;
}

.vm.popup-small main {
    flex-grow: 0;
}

.vm.popup-content footer {
    padding: 10px;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    background-color: #E8E9EB;
}


.vm .bo_heading_content {
    font-size: 16px;
}

.vm label {
    font-size: 16px;
}

.vm .completed-page-header {
    display: flex;
    gap: 4px;
    flex-direction: column;
    background-color: white;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px #D9D9D9 solid;
}

.vm.selection-notice-alert {
    margin-bottom: 10px;
    border: 1px solid #F2C31D;
    background-color: #FFFCEF;
    padding: 10px;
    border-radius: 10px;
}

/** End Popup */
@media screen and (max-width: 950px) {
    .vm.selection-notice-alert {
        margin: 10px;
        margin-top: 15px;
        border: 1px solid #F2C31D;
        background-color: #FFFCEF;
        padding: 10px;
        
        border-radius: 10px;
    }

    .vm.mobile-padding {
        padding: 10px;
    }

    .vm .completed-page-header {
        display: flex;
        gap: 4px;
        flex-direction: column;
        background-color: white;
        padding: 20px;
        margin-bottom: 10px;
        border-radius: 0px;
        border: 1px #D9D9D9 solid;
    }

    .vm.card-footer {
        justify-content: stretch;
        column-gap: 10px;
    }

    .vm.card-footer>* {
        flex: 1;
        max-width: none !important;
    }

    .vm.page-container {
        padding-top: 0px;
    }

    .vm .bo_heading_content {
        font-size: 14px;
    }

    .vm label {
        font-size: 14px;
    }

    .vm.popup-container {
        top: 0px;
        width: 100%;
        max-height: 100vh;
        margin-left: 0;
        margin-right: 0;
    }

    .vm.popup-small.popup-container {
        top: 30%;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }


    .vm.popup-content main {
        max-height: none;
    }

    .vm.popup-content {
        height: 90vh;
        min-height: initial;
        /* Reset min-height from desktop/previous rules */
        /* Ensure flex properties are set for children distribution */
        display: flex;
        flex-direction: column;
    }

    .d-sm-inline-block {
        display: inline-block;
    }

    .d-sm-none {
        display: none;
    }

    .vm.step-card {
        padding: 10px;
    }

    .vm.popup-header-title {
        font-size: 20px;
    }
}
