
:root {
    --rz-base-900: #2F444E;
    --rz-base-800: #354248;
    --rz-primary: #0A7A8E;
    --rz-secondary: var(--rz-base-900);
    --rz-info: #f9c809;
    --rz-on-info: var(--rz-base-900);
    --rz-text-font-family: Montserrat, sans-serif;
    --rz-text-h1-font-size: 40px;
    --rz-text-h2-font-size: 35px;
    --rz-text-h3-font-size: 25px;
    --rz-text-h4-font-size: 20px;
    --rz-text-body1-font-size: 16px;
    --rz-root-font-size: 16px;
    --rz-body-font-size: 16px;
    --rz-text-h1-font-weight: 700;
    --rz-text-h2-font-weight: 700;
    --rz-text-h3-font-weight: 700;
    --rz-text-h4-font-weight: 700;
    --rz-body-line-height: normal;
    --rz-text-body1-line-height: normal;
    --rz-text-body1-letter-spacing: normal;
    --rz-text-body2-letter-spacing: normal;
    --rz-text-h1-letter-spacing: normal;
    --rz-text-h2-letter-spacing: normal;
    --rz-text-h3-letter-spacing: normal;
    --rz-text-h4-letter-spacing: normal;
    --rz-text-h5-letter-spacing: normal;
    --rz-text-h6-letter-spacing: normal;
    --rz-text-h2-margin-bottom: 1.25rem;
    --rz-text-h3-margin-bottom: 1rem;
    --rz-button-border-radius: 20px;
    --rz-alert-border-radius: 20px;
    --rz-body-background-color: #FFFFFF;
    --rz-link-hover-text-decoration: none;
    --rz-icon-font-family: 'Material Symbols Outlined';
}

body {
    background: none;
    font-family: var(--rz-text-font-family);
    color: var(--rz-text-color);
    font-size: var(--rz-body-font-size);
    line-height: var(--rz-body-line-height);
    background-color: var(--rz-body-background-color);
}

.white-arch{
    margin: -150px -5% 5em;
    width: 110%;
    height: 200px;
    overflow: hidden;
    border-radius: 0 0 70% 70%;
    background-color: white;
}

.content-section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.rz-body {
    --rz-body-padding: 0;
    --rz-layout-body-padding: 0;
}

.rz-dropdown, .rz-textbox {
    padding-left: 1rem;
    border-radius: 30px;
    height: auto;
}

.rz-button.rz-link {
    padding: 0;
    margin: 0;
    text-transform: none;
    min-height: 0;
    background: none !important;
}

.rz-button.rz-link .rz-button-text {
    color: var(--rz-link-color);
    font-size: var(--rz-body-font-size);
    font-weight: var(--bs-body-font-weight);
}

.rz-button.rz-link:hover .rz-button-text {
    color: var(--rz-link-hover-text-color);
}

.rz-button:not(.rz-spinner-button, .rz-button-icon-only, .rz-link) {
    min-width: 120px;
    padding: 0.5rem 1rem;
    text-transform: lowercase;
}

.rz-button:not(.rz-state-disabled):hover {
    background-color: var(--rz-info);
    color: var(--rz-secondary)
}

.rz-alert .rz-alert-icon {
    font-size: 2rem;
    margin-top: auto;
    margin-bottom: auto;
}

a {
    color: var(--rz-link-color);
}

a:hover,
a:focus {
    color: var(--rz-link-hover-color);
}

.text-link-on-light {
    color: var(--rz-primary);
    font-weight: 500;
}

.text-link-on-dark {
    color: var(--rz-info);
    font-weight: 500;
}

.check-list li::marker {
    content: "\2713";
}

.check-list li {
    padding-left: 0.5rem;
}

.content {
    padding-top: 1.1rem;
}

.hidden {
    visibility: hidden;
    display: none;
}

.validation-message {
    display: inline-block;
    color: #f9777f;
    font-size: 0.75rem;
}


.section-spacer {
    height: 20px;
}

.spacer {
    height: 40px;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.rz-fieldset-content {
    padding-bottom: 0.25rem !important;
}


.relative-spinner {
    border: 5px solid silver;
    border-top: 5px solid #337AB7;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 700ms linear infinite;
    top: 0%;
    left: 48%;
    position: relative;
    z-index: 999999;
}

.spinner {
    border: 5px solid silver;
    border-top: 5px solid #337AB7;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 700ms linear infinite;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    position: absolute;
    z-index: 999999;
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.text-underline {
    text-decoration: underline;
}

.white-background{
    background-color: white;
}

.grey-background {
    background-color: #c0c0c0;
}
.light-background{
    background-color: var(--rz-primary);
    color: white;
}

.dark-background {
    background-color: var(--rz-secondary);
    color:white;
    
}

.dropArea {
    border: 2px dashed steelblue;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: lightblue;
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    min-height: 120px;
}

.dropArea:hover {
    background-color: lightskyblue;
    color: #333;
}

.dropArea input[type=file] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.dropAreaDrug {
    background-color: lightseagreen;
}

.create-campaign-wrapper .rz-radio-button-list-horizontal {
    display: flex;
    outline: none !important;
}

.create-campaign-wrapper .advanced-option {
    border: solid 1px #dadfe2;
    max-width: 750px;
    margin: 15px auto 0;
}

.create-campaign-wrapper .advanced-option-header {
    display: flex;
    padding: 5px 20px;
    justify-content: space-between;
}

.create-campaign-wrapper .advanced-option-content {
    border-top: solid 1px #dadfe2;
    padding: 20px;
}

.create-campaign-wrapper .advanced-option .row {
    margin-bottom: 5px;
}

.packaging-upload-form,
.client-data-upload-form {
    max-width: 600px;
    margin: 0 auto;
}

.packaging-upload-form .dropArea,
.client-data-upload-form .dropArea {
    flex-direction: column;
    padding: 40px 0;
}

.packaging-result-grid ul,
.client-data-result-grid ul {
    margin-bottom: 0;
    padding-left: 15px;
}

.packaging-result-grid .rz-cell-data,
.client-data-result-grid .rz-cell-data {
    text-overflow: unset !important;
    white-space: normal !important;
}

.packaging-result-grid .rz-column-title,
.client-data-result-grid .rz-cell-data {
    text-transform: unset !important;
}

.packaging.spinner {
    top: -50px;
}

.download-button {
    display: inline-block;
    text-decoration: none !important;
}

.period-wrapper {
    display: flex;
}

.period-wrapper .period-group {
    width: 100px;
}

.dropdown-wrapper {
    display: flex;
    margin-bottom: 15px;
}

.dropdown-wrapper .default-dropdown {
    width: 50%;
    display: flex;
    align-items: center;
}

.dropdown-wrapper.department .default-dropdown {
    width: 30%;
}

.dropdown-wrapper .button-wrapper {
    min-width: 170px;
}

.dropdown-wrapper .default-dropdown .title {
    width: 160px;
    text-align: right;
    padding-right: 5px;
}

.dropdown-wrapper .default-dropdown .rz-dropdown {
    width: calc(100% - 160px);
}

.sk-center {
    margin-top: 200px !important;
}


.sidebar-menu {
}

.sidebar-menu::-webkit-scrollbar {
    width: 8px;
}

.sidebar-menu::-webkit-scrollbar-thumb {
    border: 2px solid rgba(0, 0, 0, 0) !important;
}

@media (min-width: 641px) {
    .main {
        width: calc(100% - 250px);
    }
}

.table-packaging-default {
    margin-bottom: 20px;
}

.table-packaging-default table,
.table-packaging-default table tr td .rz-dropdown {
    width: 100%;
}

.table-packaging-default div.col-md-6:nth-child(2) {
    padding-left: 60px;
}

.table-packaging-default table tr td:first-child {
    width: 160px;
}

.table-packaging-default table tr td.cell-button {
    vertical-align: bottom;
    height: 125px;
}

@media (max-width: 765px) {
    .table-packaging-default div.col-md-6:nth-child(2) {
        padding-left: 15px;
    }

    .table-packaging-default table tr td.cell-button {
        height: auto;
        text-align: right;
    }
}

.period-vertical, .period-vertical .rz-dropdown {
    width: 250px;
}

.product-detail fieldset {
    border: 1px solid silver;
}

.product-detail fieldset .fieldset-content {
    padding: 10px;
}

.product-detail fieldset > legend {
    padding: 0px 10px;
    margin-left: 10px;
    width: auto;
    font-size: 16px;
    font-weight: bold;
}

.product-detail fieldset .d-flex label {
    font-size: 14px;
    margin-bottom: 0.5rem;
}

.product-detail fieldset .d-flex p {
    font-size: 14px;
    margin-bottom: 0;
    position: relative;
}

.product-detail fieldset .d-flex p .spinner {
    top: -15px;
    right: 0;
    left: auto;
    width: 20px;
    height: 20px;
    border: 2px solid silver;
    border-top: 2px solid #337AB7;
}

.rz-panel {
    padding-top: 0px;
    background-color: whitesmoke !important;
    border: 1px solid black;
    margin-bottom: 20px;
}

.rz-panel-content {
    margin-top: 10px;
    background-color: whitesmoke !important;

}

.rz-panel-titlebar {
    background-color: #0A7A8E !important;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
    padding-left: 15px !important;
    padding-top: 8px;
    padding-bottom: 8px;
    font-weight: bold;
    color: white;
    border-bottom: 1px solid black;
}

.rz-steps-number {
    font-size: medium;
}

.owl-carousel, .owl-item, .owl-stage, .owl-stage-outer {
    display: flex;
}

.leader-img-container {
    background-image: url(/images/perfect-circle-animated.svg);
    background-position: center;
    background-repeat: no-repeat;
    width: 150px;
    height: 150px;
}
.steps-img-container {
    width: 150px;
    height: 150px;
    background-image: url(/images/perfect-circle.svg);
}

.perfect-circle-container-small {
    width: 50px;
    height: 50px;
    background-image: url(/images/perfect-circle.svg);
}

.perfect-circle-container-medium {
    width: 75px;
    height: 75px;
    background-image: url(/images/perfect-circle.svg);
}

.perfect-circle-container-large {
    width: 100px;
    height: 100px;
    background-image: url(/images/perfect-circle.svg);
}

.perfect-circle-container-x-large {
    width: 125px;
    height: 125px;
    background-image: url(/images/perfect-circle.svg);
}

.perfect-circle-container-xx-large {
    width: 150px;
    height: 150px;
    background-image: url(/images/perfect-circle.svg);
}


.yellow-bottom-container-small {
    width: 50px;
    height: 50px;
    background-image: url(/images/yellow-bottom.svg);
}

.yellow-bottom-container-medium {
    width: 75px;
    height: 75px;
    background-image: url(/images/yellow-bottom.svg);
}

.yellow-bottom-container-large {
    width: 100px;
    height: 100px;
    background-image: url(/images/yellow-bottom.svg);
}

.yellow-bottom-container-x-large {
    width: 125px;
    height: 125px;
    background-image: url(/images/yellow-bottom.svg);
}

.yellow-bottom-container-xx-large {
    width: 150px;
    height: 150px;
    background-image: url(/images/yellow-bottom.svg);
}


.yellow-left-container-small {
    width: 50px;
    height: 50px;
    background-image: url(/images/yellow-left.svg);
}

.yellow-left-container-medium {
    width: 75px;
    height: 75px;
    background-image: url(/images/yellow-left.svg);
}

.yellow-left-container-large {
    width: 100px;
    height: 100px;
    background-image: url(/images/yellow-left.svg);
}

.yellow-left-container-x-large {
    width: 125px;
    height: 125px;
    background-image: url(/images/yellow-left.svg);
}

.yellow-left-container-xx-large {
    width: 150px;
    height: 150px;
    background-image: url(/images/yellow-left.svg);
}


.blue-bottom-left-container-small {
    width: 50px;
    height: 50px;
    background-image: url(/images/blue-bottom-left.svg);
}

.blue-bottom-left-container-medium {
    width: 75px;
    height: 75px;
    background-image: url(/images/blue-bottom-left.svg);
}

.blue-bottom-left-container-large {
    width: 100px;
    height: 100px;
    background-image: url(/images/blue-bottom-left.svg);
}

.blue-bottom-left-container-x-large {
    width: 125px;
    height: 125px;
    background-image: url(/images/blue-bottom-left.svg);
}

.blue-bottom-left-container-xx-large {
    width: 150px;
    height: 150px;
    background-image: url(/images/blue-bottom-left.svg);
}


.blue-top-left-container-small {
    width: 50px;
    height: 50px;
    background-image: url(/images/blue-top-left.svg);
}

.blue-top-left-container-medium {
    width: 75px;
    height: 75px;
    background-image: url(/images/blue-top-left.svg);
}

.blue-top-left-container-large {
    width: 100px;
    height: 100px;
    background-image: url(/images/blue-top-left.svg);
}

.blue-top-left-container-x-large {
    width: 125px;
    height: 125px;
    background-image: url(/images/blue-top-left.svg);
}

.blue-top-left-container-xx-large {
    width: 150px;
    height: 150px;
    background-image: url(/images/blue-top-left.svg);
}


.steps-circle {
    border-radius: 50%;
    width: 75%;
    height: 75%;
}

.heading-circle {
    border-radius: 50%;
    width: 50%;
    height: 50%;
}

.larger-text{
    font-size:120%;
}

.hero{
    background: url(/images/hero.png);
    width: 100%;
    height: 30em;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.white-text{
    color:white;
}
.hero-text{
    color:white;
    font-size:350%;
    font-weight: bolder;
}


.x-small, x-small{
    font-size: .75em;
}
