main.pinxit {
    height: 100%;
    flex: 1;

    overflow-y: auto;
}

.pinxit-padding-x {
    padding-right: 32px !important;
    padding-left: 32px !important;
}

.pinxit-padding-x {
    padding-right: 32px !important;
    padding-left: 32px !important;
}

.pinxit-padding-y {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
}

.pinxit-padding-top {
    padding-top: 32px !important;
}

.pinxit-padding-right {
    padding-right: 32px !important;
}

.pinxit-margin-top {
    margin-top: 32px !important;
}

.pinxit-margin-bottom {
    margin-bottom: 32px !important;
}

.pinxit-card {

    width: 100%;
    border-radius: 5px;
    border: 0.5px solid #C8C8C8;
    background: #FFF;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
    text-decoration: none;

}

.scrollable-frame {
    overflow: auto;
    max-height: calc(100% - 100px);
}

body.pinxit {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.btn-icon {
    display: flex;
    align-items: center;

    justify-content: space-between;
}

p, span, h1, h2, h3, h4, h5, h6, label {
    margin: 0 !important;
}

label.form-label {
    margin-bottom: 16px !important;
}

.form-label {
    color: #171717;
    font-family: Assistant, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
}


.w-30 {
    width: 30% !important;
}

.input-row {
    margin-bottom: 32px;
    gap: 32px;
}


a {
    text-decoration: none;
    color: currentColor;
}

.href {
    text-decoration: underline;
    color: var(--bs-gray-dark);
}


.btn-sm {
    border-width: 2px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.btn-lg {
    height: 40px;
    max-height: 40px;
    padding-left: 16px;
    padding-right: 16px;
    text-align: center;
    white-space: nowrap;
}

/*.btn-square {
  @include button-size($btn-padding-y, $btn-padding-x, $btn-font-size, $btn-border-radius-sm);
}*/

.card.selected {
    background: var(--bs-gray-dark);
}

.selectable {
    cursor: grab;
}

.animate-visibility {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
    overflow: hidden;
    max-height: 0;
}

.animate-visibility.active {
    opacity: 1;
    visibility: visible;
    max-height: fit-content;
}

.search-addon {
    background-color: white !important;
}

.toast-success {
    background-color: #FFFFFF !important;
    border-radius: 5px;
    border: 1px solid var(--bs-green);
}

.toast-error {
    background-color: #FFFFFF;
    border-radius: 5px;
    border: 1px solid var(--bs-yellow);
}

.toast.success {
    border-color: var(--bs-green);
}

.nav-ball {
    width: 64px;
    height: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: black;
}

.nav-ball.active {
    background-color: var(--bs-pink);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);

}

.base-shadows {
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
}

.nav-bg {
    background-image: url("/static/web/navbar-background@1x.png");
    background-repeat: no-repeat;
    background-size: cover;
}


.bg-color {
    background-color: #f9fafb;
}

.section-nav {
    border-bottom: 1px solid var(--bs-gray-light);
    min-height: 70px;
}

.form-check-input {
    width: 1rem;
    height: 1rem;
    margin: 0.25rem;
}

.form-check-input:checked[type=radio] {
    outline: solid 2px var(--bs-gray-light);
    border: solid 2px var(--bs-white);
}

.form-check-input:checked[type=radio] {
    background-image: none;
    background-color: var(--bs-yellow);
    width: 18px;
    height: 18px;
}

input[type="radio"]:checked {
    background-color: var(--bs-yellow);
}

.form-control,
.form-select,
textarea, select {
    border-radius: 5px;
    border: 1px solid #171717 !important;
}

input[type="search"] {
    border-color: transparent !important;
}

.form-check-label {
    color: #707070;
    font-family: Assistant, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}

.search-box {
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    background-color: transparent;

    height: 40px;
}

.search-box * {
    border: none;
}

.search-box > .input-group-text {
    background-color: var(--bs-yellow);
    color: #FFFFFF;
}


.btn-primary, .btn-primary:hover, .btn-primary:disabled {
    color: #FFFFFF;

}

.btn-outline-secondary {
    border-radius: 5px;
    border: 1px solid #707070;
    background: #FFF;
    color: #707070;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
}

.btn-primary:hover {
    background: var(--bs-green);
}

.modal-footer > .btn-primary {
    width: 190px;
}

.modal-footer > div > .btn-primary {
    width: 190px;
}


.secondary-cta {
    color: var(--bs-gray-dark);
    font-family: Assistant, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
    white-space: nowrap;
}

.text-dark-gray {
    color: var(--bs-gray-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
}


.show-more-templates-btn {
    text-decoration: none;
    height: 96px;
    width: 96px;
    color: #FFFFFF;
    background-color: var(--bs-yellow);
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.15);
    justify-self: end;
}

.footer {
    box-shadow: 3px 1px 3px 0px rgba(0, 0, 0, 0.15);
    margin-top: auto;
    width: 100%;
    min-height: 70px;
    z-index: 1;
    background-color: #FFFFFF;
}

.file-card {
    border-radius: 5px;
    border: 0.5px solid #C8C8C8;
    background: #FFF;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    min-height: 40px;
    color: black;
    padding: 10px 0 10px 10px;
}

.modal-header {
    background-color: #FFFFFF;
}

.catalog-modal .modal-body {
    height: 550px;
    max-height: 550px;
}


.modal-delete .modal-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 550px;
    max-height: 550px;
}

.comparison-viewer {
    /*100 vh - (navbar + footer)*/
    height: 100%;

    margin-top: 0px;
    background: black;
}

.modal-body {
    padding: 24px 32px 24px 32px;
}

.catalog-modal > .modal-dialog {
    max-width: 1080px;
}

.modal-title {
    font-family: Montserrat, sans-serif;
    font-size: 23px !important;
    font-style: normal;
    font-weight: 800;
    line-height: 32px;
}

.popover {
    z-index: 1060;
    padding: 10px;
    border-radius: 10px;
    background: white;
    border: 1px solid var(--bs-yellow);
}


.activity-instructions-container {
    line-height: 18px !important;
    max-height: 90px;
    overflow-y: auto;
}

.txt-gray {
    color: var(--bs-gray-dark);
}

.text-green {
    color: var(--bs-green);
}

.sub-nav {
    background-color: #FFFFFF;
    min-height: 48px;
    display: flex;
    justify-content: center;

    border-radius: 5px;


}

.sub-nav > .nav-item {
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-gray-dark);
    margin: 0;
}

.sub-nav > .nav-item.active, .sub-nav > .nav-item:hover {

    box-shadow: inset 0 -3px var(--bs-pink);
    color: var(--bs-pink);

}


.sub-nav > .nav-item > a:hover {

    color: var(--bs-pink) !important;

}

.handle {
    cursor: pointer;
}

.text-yellow {
    color: var(--bs-yellow);
}

.template-card-ref-id {
    border-left: 3px solid var(--bs-yellow);
    border-radius: 2px;
    padding-left: 0.3rem;
    max-height: 16px;
    display: flex;
    align-items: center;
}


.navbar-avatar {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    background-color: var(--bs-gray-dark);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.navbar-avatar.active {
    width: 52px;
    height: 52px;
    border: 2px solid var(--bs-pink);
}

.avatar-sm {
    border-radius: 100%;
    background-color: var(--bs-gray-dark);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
}

.paginator a {
    color: #A8A8A8;
    text-align: center;
    font-family: Assistant;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    margin-right: 25px;
}

.paginator a.active {
    color: var(--bs-pink);
    text-decoration: var(--bs-pink) underline;
}

.collection-card {
    min-height: 40px;
    border-radius: 5px;
    border: 2px solid #E8E8E8;
    color: #707070;
    font-family: Assistant;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    padding: 10px;
}


.nested-collection-container {
    max-width: 216px;
    width: 216px;
    display: flex;
    flex-direction: column;
    margin-top: 8px;
    gap: 8px;
}

.collection-card:hover, .collection-card.active {
    border: 2px solid var(--bs-yellow);
    background-color: #F9FAFB;
}

.loader-container {
    display: none;
}

.htmx-request .loader-container, .htmx-request.loader-container {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90%;
    background-color: #FFFFFF;
    opacity: 0.8;
    z-index: 1;
}

input.form-control {
    height: 40px;
}

label:has(+ input:required):after, label:has(+ textarea:required):after, label:has(+ select:required):after {
    content: ' *';
}

.chip {
    border: 2px solid var(--bs-gray-light);
    border-radius: 100px;
    color: var(--bs-gray-dark);
    background: var(--bs-white);
    display: flex;
    align-items: center;
    flex-grow: 0;
    gap: 8px;
    padding: 8px 16px;
    text-wrap: nowrap;
}

.chip.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

.cdoc-img {
    width: 230px;
    height: 70px;
}

.cdoc-row {
    background: #0066CC;
    border-radius: 5px;
    padding: 43px;

    display: flex;
    justify-content: space-between;
}

.cdoc-cta-card {
    border: 1px solid #FFF;
    border-radius: 5px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    position: relative;

    .divider {
        height: 2px;
        width: 100%;
        background-color: #FFFFFF;
        margin: 4px 0;
    }
}

#verify-email-modal-dialog {
    .email-icon {
        font-size: 210px;
        color: var(--bs-yellow);
        display: block;
    }
}