.rc-content-wrapper {
    padding: 1rem 0 0.5rem 1rem;
}

.rc-box {
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border: 1px solid rgba(28, 24, 54, 0.12);
    transition: all 0.3s ease-in-out;
}

.rc-box:hover {
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
}

.rc-section-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 1rem;
    gap: 1rem;
}

.rc-section-wrapper-row {
    display: flex !important;
    gap: 1rem;
}

.rc-box-white {
    background-color: var(--rc-white);
    box-shadow: 0 1px -1px var(--rc-shadow-ghost);
    transition: all 0.3s ease-in-out;
}

.rc-box-white:hover,
.rc-box-white:active,
.rc-box-white:focus {
    box-shadow: 3px 3px 10px 0 var(--rc-shadow-ghost);
    transition: all 0.3s ease-in-out;
}

.rc-box-turquoise {
    background-color: var(--rc-turquoise);
    box-shadow: 0 1px -1px var(--rc-shadow-ghost);
    transition: all 0.3s ease-in-out;
}

.rc-box-turquoise:hover,
.rc-box-turquoise:active,
.rc-box-turquoise:focus {
    box-shadow: 3px 3px 10px 0 var(--rc-turquois-shadow);
    transition: all 0.3s ease-in-out;
}


.rc-box-lavender {
    background-color: var(--rc-lavender);
    box-shadow: 0 1px -1px var(--rc-shadow-ghost);
    transition: all 0.3s ease-in-out;
}

.rc-box-lavender:hover,
.rc-box-lavender:active,
.rc-box-lavender:focus {
    box-shadow: 3px 3px 10px 0 var(--rc-lavender-shadow);
    transition: all 0.3s ease-in-out;
}

.rc-box-sand {
    background-color: var(--rc-sand);
    box-shadow: 0 1px -1px var(--rc-shadow-ghost);
    transition: all 0.3s ease-in-out;
}

.rc-box-sand:hover,
.rc-box-sand:active,
.rc-box-sand:focus {
    box-shadow: 3px 3px 10px 0 var(--rc-sand-shadow);
    transition: all 0.3s ease-in-out;
}



.rc-box-input {
    border-radius: 5px !important;
    border: none !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(7px) !important;
    -webkit-backdrop-filter: blur(7px) !important;
    min-height: 34px;
    transition: all 0.3s ease-in-out;
}

.rc-box-input:focus {
    color: var(--rc-navy) !important;
    background-color: rgba(251, 255, 241, 0.75) !important;
}

.rc-box-input:disabled {
    background-color: var(--rc-navy) !important;
    color: var(--rc-grey) !important;
    cursor: not-allowed;
}

.rc-upload {
    display: flex;
    flex-direction: column;
    height: 10rem;
    border: 1px dashed var(--rc-navy);
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
}

.rc-upload-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rc-dropdown {
    position: relative;
    z-index: 1000;
}

.rc-header-element {
    z-index: 1004 !important;
}

.rc-fill-height {
    height: 100%;
}

.rc-50-width {
    width: 50% !important;
}

.rc-full-width {
    width: 100% !important;
}

.rc-section-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rc-col-50-vh {
    max-height: 50vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.rc-section-header {
    margin: 1rem 0.1rem;
}

.rc-mar-side {
    margin: 0 1rem !important;
}

.rc-fill-space {
    flex: 1;
}

.rc-tab-header-wrapper {
    padding: 1rem;
    color: var(--rc-black);
    font-weight: bold;
    font-size: 1rem;
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--rc-shadow-ghost) !important;
    transition: all 0.3s ease-in-out;
}

.rc-tab-header-wrapper:hover {
    color: var(--rc-tr-navy-80) !important;
    transition: all 0.3s ease-in-out;
}

.rc-active-tab {
    color: var(--rc-tr-navy-90) !important;
    border-radius: 5px 5px 0 0 !important;
    border-top: 1px solid var(--rc-shadow-ghost) !important;
    border-left: 1px solid var(--rc-shadow-ghost) !important;
    border-right: 1px solid var(--rc-shadow-ghost) !important;
    border-bottom: 0 !important;
    background: linear-gradient(to bottom, white, var(--rc-white));
    transition: all 0.3s ease-in-out;
}

.rc-boolean-switch {
    display: flex;
    gap: 1rem;
}

.rc-row {
    display: flex;
}

.rc-header-section-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rc-header-section-title {
    margin-right: 1rem;
}

.rc-header-section-dropdown-title {
    min-width: 200px;
}

.rc-header-section-divider {
    flex-grow: 1;
}

.rc-dropdown-label-header {
    font-size: 0.9rem;
    font-weight: bolder;
    padding-bottom: 0.5rem;
}


.rc-button {
    text-decoration: none;
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 1rem;
}

.rc-button-primary {
    background-color: var(--rc-navy);
    border: 1px solid var(--rc-navy);
    border-radius: 5px;
    cursor: pointer;
    color: var(--rc-white);
}

.rc-button-primary:hover {
    background: transparent;
    border: 1px solid var(--rc-navy);
    border-radius: 5px;
    color: var(--rc-navy);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease-in-out;
}


.rc-button-secondary {
    background: transparent;
    border: 1px solid var(--rc-navy);
    border-radius: 5px;
    cursor: pointer;
    color: var(--rc-navy) !important;
}


.rc-button-secondary:hover {
    background-color: var(--rc-navy);
    border: 1px solid var(--rc-navy);
    border-radius: 5px;
    color: var(--rc-white) !important;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease-in-out;
}

.rc-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-wrap: wrap;
    min-height: 170px;
}

.rc-checklist-item {
    display: flex;
    gap: 0.5rem;
}

.rc-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rc-boolean-switch-alt {
    height: 27px;
    width: 50px !important;
}

.rc-filter-rm-btn {
    color: var(--rc-red);
}

.rc-filter-rm-btn:hover {
    color: var(--rc-dark-red);
    transform: scale(1.3);
    transition: all 0.3s ease-in-out;
}

.rc-start {
    justify-content: start;
}

.rc-end {
    justify-content: end;
}

.rc-between {
    justify-content: space-between;
}

.rc-center {
    justify-content: center;
}


.rc-align-baseline {
    align-items: baseline !important;
}

.rc-align-center {
    align-items: center !important;;
}

.rc-align-stretch {
    align-items: stretch !important;;
}

.rc-align-start {
    align-items: start !important;;
}

.rc-align-end {
    align-items: end !important;;
}