@charset "UTF-8";
:root {
    --red: #d81e04;
    --green: #690;
    --red-contrast: #dd001e;
}

body, p, h1, h2, h3, h4, h5, h6, b, strong { 
    color: #1f1f1f;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 1.6rem;
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
b,
strong,
th {
    font-weight: 700;
}

button,
select,
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="checkbox"],
input[type="range"],
input[type="radio"] {
    cursor: pointer;
}

input,
select {
    display: block;
}

[type="checkbox"],
[type="radio"] {
    display: initial;
}

input,
button,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    border-radius: 0.8rem;
}

input[type="radio"] {
    border-radius: 100%;
}

input {
    vertical-align: top;
}

label {
    vertical-align: middle;
    margin-bottom: 4px;
    display: inline-block;
}

input:not([type="checkbox"]):not([type="radio"]),
input[type="range"],
select,
button,
textarea {
    -webkit-appearance: none;
}

textarea {
    display: block;
    margin-right: 0;
    box-sizing: border-box;
    resize: vertical;
}

select::-ms-expand {
    display: none;
}

input:disabled,
select:disabled,
button:disabled,
textarea:disabled {
    cursor: not-allowed;
}

form {
    width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img,
video {
    max-width: 100%;
    height: auto;
}

hr {
    border: none;
    border-top: 1px solid #4d4d4d;
}

table {
    border-collapse: collapse;
    margin-bottom: 10px;
    width: 100%;
    table-layout: fixed;
}

h1,
.h1 {
    font-size: 4rem;
}

h2,
.h2 {
    font-size: 2.4rem;
}

h3,
.h3 {
    font-size: 2rem;
}

h4,
.h4 {
    font-size: 1.8rem;
}

h5,
.h5 {
    font-size: 1.6rem;
}

h6,
.h6 {
    font-size: 1.6rem;
}

.button {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    user-select: none;
    transition: all 0.15s;
    will-change: auto;
    font-weight: 600;
    font-family: "Figtree Bold", sans-serif;
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: #ffffff;
    background: var(--red);
    padding: 1.1rem 1.6rem;
    margin: 0 4rem 1.6rem 0;
    min-width: 14rem;
    border: 1px solid var(--red);
    box-sizing: border-box;
    white-space: nowrap;
}

.button:hover,
.button:focus,
.button:active {
    background: #cc1c03;
}

.button.disabled,
.button:disabled {
    background: #e7e7e7;
    border: 1px solid #e7e7e7;
    pointer-events: none;
    color: #767676;
}

.button__icon {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button__icon > * path {
    fill: #e7e7e7;
}

.button__icon:hover > * path {
    fill: #767676;
}

.button__icon:focus {
    box-shadow: 0 0 0 0.2rem #fbd355;
    border-radius: 0.8rem;
}

.button.secondary {
    background: #ffffff;
    border: 1px solid var(--red);
    color: var(--red);
    border-radius: 0.8rem;
}

.button.secondary:hover,
.button.secondary:focus,
.button.secondary:active {
    background: #cc1c03;
    border: 1px solid #cc1c03;
    color: #ffffff;
}

.button.secondary.disabled,
.button.secondary:disabled {
    background: #ffffff;
    border: 1px solid #767676;
    color: #767676;
    cursor: not-allowed;
}

.button.social {
    background-color: #1877f2;
    border: unset;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0.8rem;
}

.button.social .social-icon path {
    fill: #ffffff;
}

.button.social .social-description {
    flex-grow: 1;
}

.button.social:hover,
.button.social:focus,
.button.social:active {
    background-color: #136fe5;
}

.button.social:disabled {
    background: #e7e7e7;
}

.button.block {
    margin: 0;
    width: 100%;
    border-radius: 8px;
}

.button.semi-block {
    width: 100%;
    max-width: 22rem;
}

.button.icon-right {
    padding-right: 3.4rem;
    position: relative;
    margin: 0;
}

.button.icon-right .icon {
    position: absolute;
    top: 50%;
    left: calc(100% - 1.9rem);
    transform: translate(-50%, -50%);
}

.button.icon-right .icon path {
    fill: var(--red);
}

.button.icon-right:hover .icon path,
.button.icon-right:focus .icon path,
.button.icon-right:active .icon path {
    fill: #ffffff;
}

.button.icon-right.disabled .icon path,
.button.icon-right:disabled .icon path {
    fill: #767676;
}

.link-button {
    background-color: transparent;
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: 600;
    font-family: "Figtree Bold", sans-serif;
    color: var(--red);
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.link-button--wcag {
    margin: 24px 0;
    justify-content: flex-start;
    font-family: 'Figtree', sans-serif;
    font-weight: normal;
    width: fit-content;
}

.link-button--wcag,
.link-button.link-button--wcag:hover,
.link-button.link-button--wcag:focus {
    color: #4e4e4e;
}

.link-button__icon {
    margin-top: 2px;
}

.link-button,
.link-button__icon path {
    transition: all 0.15s;
    will-change: auto;
}

.link-button__icon path {
    fill: var(--red);
}

.link-button.secondary {
    color: #ffffff;
}

.link-button.secondary .link-button__icon path {
    fill: #ffffff;
}

.link-button:hover,
.link-button:focus {
    color: #cc1c03;
}

.link-button:hover .link-button__icon path,
.link-button:focus .link-button__icon path {
    fill: #cc1c03;
}

.link-button.disabled,
.link-button:disabled {
    cursor: not-allowed;
    color: #767676;
}

.link-button.disabled .link-button__icon path,
.link-button:disabled .link-button__icon path {
    fill: #767676;
}

a.button {
    text-decoration: none;
}

.radio-button {
    display: flex;
    align-items: baseline;
}

.radio-button__input {
    width: 0;
    height: 0;
    position: absolute;
    opacity: 0;
}

.radio-button__label {
    padding: 0 0.8rem 0 calc(0.9rem + 2.2rem);
    position: relative;
    cursor: pointer;
}

.radio-button__label::before {
    content: "";
    position: absolute;
    box-sizing: border-box;
    top: 0;
    left: 0;
    width: 2.2rem;
    height: 2.2rem;
    background-color: transparent;
    border: 1px solid #4d4d4d;
    border-radius: 50%;
}

.radio-button__label::after {
    content: "";
    position: absolute;
    box-sizing: border-box;
    top: calc(2.2rem / 2);
    left: calc(2.2rem / 2);
    transform: translate(-50%, -50%);
    width: 1rem;
    height: 1rem;
    background-color: #ffffff;
    border-radius: 50%;
    opacity: 0;
}

.radio-button__label:hover::before {
    border: 1px solid #cc1c03;
}

.radio-button__input:checked + .radio-button__label:before {
    border: 1px solid var(--red);
    background-color: var(--red);
}

.radio-button__input:checked + .radio-button__label:after {
    opacity: 1;
}

.radio-button__input:focus + .radio-button__label::before {
    box-shadow: 0 0 0 0.2rem #fbd355;
}

.radio-button__input:focus:disabled + .radio-button__label::before {
    box-shadow: none;
}

.radio-button__input:disabled + .radio-button__label {
    cursor: not-allowed;
}

.radio-button__input:disabled + .radio-button__label::before {
    border: 1px solid #e7e7e7;
    background-color: #f2f2f2;
}

.radio-button__input:checked:disabled + .radio-button__label {
    color: #767676;
}

.radio-button__input:checked:disabled + .radio-button__label::before {
    border: 1px solid #e7e7e7;
    background-color: #e7e7e7;
}

.checkbox {
    display: flex;
    align-items: center;
    min-width: 2.2rem;
    min-height: 2.2rem;
}

.checkbox__input {
    width: 0;
    height: 0;
    position: absolute;
    opacity: 0;
}

.checkbox__label {
    padding: 0 0 0 calc(0.9rem + 2.2rem);
    position: relative;
    display: flex;
    cursor: pointer;
    margin: 0 0.6rem 0 0;
}

.checkbox__label::before {
    content: "";
    position: absolute;
    box-sizing: border-box;
    top: -2px;
    left: 0;
    width: 2.2rem;
    height: 2.2rem;
    background-color: transparent;
    border: 2px solid #b6b6b6;
    border-radius: 0.8rem;
}

.checkbox__label::after {
    content: url("data:image/svg+xml,%3Csvg width='15' height='11' viewBox='0 0 15 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5.94444L5 9.5L14 1.5' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    position: absolute;
    top: calc(1.9rem / 2);
    left: calc(2.2rem / 2);
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    font-weight: bold;
    color: #ffffff;
    opacity: 0;
}

.checkbox__label:hover::before {
    border: 1px solid #cc1c03;
}

.checkbox__input:checked + .checkbox__label::before {
    border: 1px solid var(--red);
    background-color: var(--red);
}

.checkbox__input:checked + .checkbox__label::after {
    opacity: 1;
}

.checkbox__input:focus + .checkbox__label::before {
    box-shadow: 0 0 0 2px #234F8F;
}

.checkbox__input:focus:disabled + .checkbox__label::before {
    box-shadow: none;
}

.checkbox__input:disabled + .checkbox__label,
.checkbox__input:checked:disabled + .checkbox__label {
    cursor: not-allowed;
    color: #767676;
}

.checkbox__input:disabled + .checkbox__label::before,
.checkbox__input:checked:disabled + .checkbox__label::before {
    border: 1px solid #e7e7e7;
}

.checkbox__input:disabled + .checkbox__label::before {
    background-color: #f2f2f2;
}

.checkbox__input:checked:disabled + .checkbox__label::before {
    background-color: #e7e7e7;
}

.switch-button__label {
    display: block;
    width: 4.8rem;
    height: 2.4rem;
    background-color: #767676;
    border-radius: 5rem;
    position: relative;
    cursor: pointer;
    transition: 0.5s;
}

.switch-button__label::after {
    content: "";
    width: 2rem;
    height: 2rem;
    background-color: #ffffff;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 0.2rem;
    transform: translateY(-50%);
    transition: 0.5s;
}

.switch-button__input {
    width: 0;
    height: 0;
    visibility: hidden;
}

.switch-button__input:checked + .switch-button__label:after {
    left: calc(100% - 2rem - 0.2rem);
}

.switch-button__input:checked + label {
    background-color: #669900;
}

.tabs__wrapper {
    margin: 0 auto 32px;
    max-width: 128rem;
    width: 100%;
    padding: 0 2.8rem;
    display: flex;
    gap: 24px;
    position: relative;
}

.tabs__wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 2.8rem;
    right: 2.8rem;
    height: 0.1rem;
    background-color: #e7e7e7;
}

.tab {
    background-color: #ffffff;
    padding-bottom: 2.8rem;
    position: relative;
    color: #1F1F1F;
    font-family: "Figtree", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
}

.tab.initial-text {
    text-transform: initial;
    font-family: "Figtree", sans-serif;
}

.tab::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.4rem;
    background-color: #1F1F1F;
    opacity: 0;
    transition: 0.15s;
}

.tab.secondary {
    text-transform: capitalize;
}

.tab:hover::after,
.tab:focus::after {
    opacity: 1;
    background-color: #4d4d4d;
}

.tab.active {
    color: var(--red);
}

.tab.active::after {
    opacity: 1;
    background-color: var(--red);
}

.input-wrapper__label {
    font-family: "Figtree", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    margin: 0 0 0.6rem;
}

.input-wrapper__checkbox-container {
    margin: 0.9rem 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.input-wrapper__checkbox-container .checkbox-container__link {
    margin-left: auto;
    white-space: nowrap;
    font-size: 1.4rem;
    color: #4e4e4e;
    font-weight: 500;
}

.input-wrapper__input {
    width: 100%;
    min-width: 18rem;
    max-width: 40rem;
    height: 4.8rem;
    color: #767676;
    background-color: #ffffff;
    border: 1px solid #e7e7e7;
    padding: 1rem 5.2rem 1rem 1.2rem;
    font-size: 1.6rem;
}

.input-wrapper__input:hover:valid,
.input-wrapper__input:focus {
    border: 1px solid #767676;
}

.input-wrapper__input:focus,
.input-wrapper__input:valid {
    color: #1F1F1F;
}

.input-wrapper__input:invalid,
.input-wrapper__input.invalid {
    border: 1px solid var(--red);
    color: #1F1F1F;
}

.input-wrapper__input:disabled,
.input-wrapper__input:disabled::placeholder {
    background-color: #f2f2f2;
    color: #4d4d4d;
}

.input-wrapper__description {
    font-size: 1.4rem;
    font-weight: 400;
    display: block;
    padding-top: 0.6rem;
    color: #767676;
}

.input-wrapper__description.error {
    color: var(--red);
}

.input-wrapper__description.error.absolute {
    position: absolute;
}

.input-wrapper__description.success {
    color: #008738;
    font-weight: 600;
}

.input-wrapper__content {
    position: relative;
}

.input-wrapper__icon {
    position: absolute;
    top: 50%;
    right: 1.3rem;
    transform: translateY(-50%);
    cursor: pointer;
    background: transparent;
}

.input-wrapper__icon .visible-off {
    display: none;
}

.input-wrapper__icon.off .visible-off {
    display: block;
}

.input-wrapper__icon.off .visible {
    display: none;
}

.input-wrapper__icon path {
    fill: #767676;
}

.input-wrapper.required .input-wrapper__label::after {
    content: "*";
    margin-left: 0.6rem;
    color: var(--red);
}

.input-wrapper.required .input-wrapper__description {
    color: #4d4d4d;
}

.input-wrapper.required .input-wrapper__description.error {
    color: var(--red);
}

.input-wrapper.required .input-wrapper__description.error.absolute {
    position: absolute;
}

.popup__wrapper.hide {
    z-index: -1;
    opacity: 0;
}

.popup__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.15s ease;
}

.popup__wrapper .popup {
    position: absolute;
    top: 20%;
    left: 5%;
    right: 5%;
    max-width: 55rem;
    margin: 0 auto;
    border-radius: 0.8rem;
}

.popup {
    background-color: #ffffff;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.popup.center {
    text-align: center;
}

.popup__icon {
    min-width: 2.4rem;
}

.popup__icon.red path {
    fill: var(--red);
}

.popup__header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding-bottom: 24px;
    margin: 0;
    font-size: 2rem;
    position: relative;
}

.popup__header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0.1rem;
    width: 100%;
    background-color: #e7e7e7;
}

.popup__header .header__text {
    display: block;
    flex-grow: 1;
    font-size: 1.8rem;
    font-family: "Figtree Bold", sans-serif;
}

.popup__header .header__button-close {
    background-color: transparent;
    padding: 0 0.5rem;
}

.popup__content {
    line-height: 2.8rem;
    margin: 0;
}

.popup__content .bold {
    font-weight: 600;
}

.popup__buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popup__buttons > * {
    margin: 0;
}

.footer {
    background-color: #f2f2f2;
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
    gap: 24px;
}

.footer__copyright {
    color: #767676;
}

.infobox {
    display: flex;
    gap: 1.6rem;
    padding: 1.6rem;
    background-color: #f2f2f2;
}

.infobox.error {
    background-color: #fff0f0;
}

.infobox.error .infobox__icon-wrapper path {
    fill: var(--red);
}

.infobox__icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 3.2rem;
    height: 3.2rem;
    background-color: #ffffff;
    border-radius: 50%;
}

.infobox__icon-wrapper .infobox__icon {
    transform: scale(0.85);
}

.infobox__message-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.8rem;
}

.infobox__message-wrapper .infobox__button {
    text-align: left;
}

.infobox__description {
    margin: 0;
    line-height: 2.8rem;
    display: flex;
    align-items: center;
}

.table {
    border: 1px solid #e7e7e7;
    width: 100%;
}

.table .table__body-td,
.table .table__header-th {
    overflow: hidden;
    text-overflow: ellipsis;
}

.table.secondary .table__body-td {
    color: #1F1F1F;
}

.table.secondary .table__body-td .info {
    display: flex;
}

.table.secondary .table__body-td .info-tag {
    margin-bottom: 1.6rem;
}

.table.secondary .table__body-td .info-label {
    color: #4d4d4d;
    font-size: 1.4rem;
    white-space: nowrap;
}

.table.secondary .table__body-td .info-description,
.table.secondary .table__body-td .info-tag {
    font-weight: 600;
    font-size: 1.6rem;
}

.notification {
    background: white;
    box-sizing: border-box;
    padding: 24px;
    line-height: 2.6rem;
    border: 1px solid #669900;
    box-shadow: 0 0.6rem 1.5rem 0 rgba(0, 0, 0, 0.15);
    display: grid;
    column-gap: 1.8rem;
    grid-template-columns: 2.2rem auto;
    grid-template-areas: "icon header" ". description";
    margin: 0 2.4rem;
}

.notification.error {
    border-color: var(--red);
}

.notification.warning {
    border-color: #f9a800;
}

.notification__header {
    grid-area: header;
    margin: 0;
    align-self: center;
    font-size: 1.6rem;
    text-align: left;
}

.notification__description {
    grid-area: description;
    margin: 0;
    margin-top: 8px;
    font-size: 1.6rem;
    color: #1F1F1F;
    text-align: left;
}

.notification__icon {
    grid-area: icon;
    align-self: center;
}

.notification__icon path {
    fill: #669900;
}

.notification.warning > .notification__icon path {
    fill: #f9a800;
}

.notification.error > .notification__icon path {
    fill: var(--red);
}

.button__icon-action {
    padding: 0.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border-radius: 0.8rem;
}

.button__icon-action > * path {
    fill: #4d4d4d;
}

.button__icon-action:hover > * path {
    fill: #767676;
}

.button__icon-action:focus {
    box-shadow: 0 0 0 0.2rem #fbd355;
}

.spinner {
    display: inline-block;
    position: relative;
    width: 8rem;
    height: 8rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner > * {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 6.4rem;
    height: 6.4rem;
    border: 0.6rem solid var(--red);
    border-radius: 50%;
    animation: spinner-animation 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--red) transparent transparent transparent;
}

.spinner > *:nth-child(1) {
    animation-delay: -0.45s;
}

.spinner > *:nth-child(2) {
    animation-delay: -0.3s;
}

.spinner > *:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes spinner-animation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.tooltip {
    display: inline-block;
    background-color: #ffffff;
    padding: 16px;
    border-radius: 0.8rem;
    position: relative;
    color: #4d4d4d;
    box-shadow: 0 0.5rem 1.5rem 0 rgba(0, 0, 0, 0.15);
}

.tooltip::after {
    content: "";
    position: absolute;
    bottom: calc(100% - (1.8rem * 2 / 3));
    left: 50%;
    width: 1.8rem;
    height: 1.8rem;
    background-color: #ffffff;
    transform: translateX(-50%) rotate(45deg);
    border-radius: 0.8rem;
}

.banner {
    background-color: #f2f2f2;
    text-align: center;
    position: relative;
}

.banner__content-wrapper {
    padding: 2.4rem 2.6rem 4.2rem;
    display: flex;
    gap: 1.6rem;
    flex-direction: column;
    align-items: center;
    background-color: #f2f2f2;
    text-align: center;
    position: relative;
}

.banner__content-wrapper .banner__header {
    margin: 0;
    font-family: "Figtree Bold", sans-serif;
    line-height: 3.6rem;
}

.banner__content-wrapper .banner__header .break {
    display: block;
}

.banner__content-wrapper .banner__description {
    margin: 0;
    max-width: 40rem;
    color: #1F1F1F;
    line-height: 2.6rem;
}

.banner__content-wrapper .banner__description p {
    margin: 0;
}

.banner__content-wrapper .link-read-more {
    font-family: "Figtree Bold", sans-serif;
    display: flex;
    align-items: center;
    color: var(--red-contrast);
    font-weight: 600;
    font-size: 16px;
}

.banner.img-background {
    padding: 0 0 2rem;
}

.banner.img-background::after {
    content: none;
}

.banner__img.--mobile {
    display: block;
}

.banner__img.--desktop {
    display: none;
}

.banner.img-background .banner__img-wrapper {
    z-index: 1;
    background-size: cover;
    background-color: #f2f2f2;
    width: 100%;
    position: relative;
}

.banner.img-background .banner__img-wrapper .banner__triangle {
    border-top: 1.2rem solid #ffffff;
    width: 50%;
    position: absolute;
    top: 0;
}

.banner.img-background .banner__img-wrapper .leftTop {
    left: 0;
    border-right: 1.2rem solid transparent;
}

.banner.img-background .banner__img-wrapper .rightBottom {
    right: 0;
    border-left: 1.2rem solid transparent;
}

.header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-height: 9.6rem;
    row-gap: 24px;
}

.header.with-additional {
    padding-bottom: 0;
}

.header__title {
    margin: 0;
}

.header__title .title__link {
    display: flex;
}

.header__title .title__link .link__icon.desktop {
    display: none;
}

.header__nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 0;
    list-style: none;
}

.header__nav-menu .menu-item .button__icon-action {
    transform: scale(1.2);
}

.header__nav-menu.additional-menu {
    justify-content: flex-start;
    padding: 0;
    display: none;
}

.header__additional-nav {
    flex-basis: 100%;
}

.invoice-profile__description {
    display: none;
}

.invoice-profile__wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.invoice-profile {
    border: 1px solid #e7e7e7;
    border-radius: 0.8rem;
    overflow: hidden;
}

.invoice-profile.active {
    border-color: var(--red);
}

.invoice-profile.disabled .checkbox__label {
    color: #4d4d4d;
}

.invoice-profile.disabled .invoice-profile__content,
.invoice-profile.disabled
.invoice-profile__content
.invoice-profile__table__body-td {
    color: #767676;
}

.invoice-profile__header {
    background-color: #f2f2f2;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    font-weight: bold;
    font-size: 1.8rem;
}

.invoice-profile__header-button {
    margin-left: auto;
}

.invoice-profile__header-button.desktop {
    display: none;
}

.invoice-profile__header-icon path {
    fill: #767676;
}

.invoice-profile__content {
    margin: 0;
    list-style-type: none;
    padding: 0 16px 16px;
}

.invoice-profile__content-item {
    display: flex;
    flex-direction: column;
}

.invoice-profile__content-item .item__button,
.invoice-profile__content-item .item__description {
    font-weight: 600;
    padding: 16px 0;
    position: relative;
    margin: 0 0 16px;
}

.invoice-profile__content-item .item__button::after,
.invoice-profile__content-item .item__description::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1rem;
    background-color: #e7e7e7;
}

.invoice-profile__content-item .item__button {
    background-color: transparent;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.invoice-profile__content-item .item__button-description {
    white-space: nowrap;
}

.invoice-profile__content-item .item__button-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--red);
}

.invoice-profile__content-item .item__button-toggle > * path {
    fill: var(--red);
}

.invoice-profile__content-item .item__summary {
    margin: 0;
    font-weight: 600;
    text-align: right;
}

.invoice-profile__content-item .item__summary.no-dataset {
    color: #767676;
}

.invoice-profile__content-item .item__no-dataset {
    margin: 0;
    padding: 16px 0;
    margin-bottom: 16px;
    color: #767676;
    position: relative;
}

.invoice-profile__content-item .item__no-dataset::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1rem;
    background-color: #e7e7e7;
}

.invoice-profile__content.without-summary {
    padding: 0 16px;
}

.invoice-profile__content.without-summary .invoice-profile__table {
    margin-bottom: 0;
}

.invoice-profile__content.without-summary
.invoice-profile__table__body-tr:last-child,
.invoice-profile__content.without-summary
.invoice-profile__table__body-tr:last-child
.invoice-profile__table__body-td {
    border-bottom: none;
}

.invoice-profile__table.hide {
    display: none;
}

.marketing-agreement__wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.marketing-agreement {
    overflow: hidden;
}

.marketing-agreement__header {
    background-color: #f2f2f2;
    padding: 1.6rem;
    display: flex;
    align-items: flex-start;
    font-weight: bold;
    font-size: 1.8rem;
}

.marketing-agreement__header-button {
    margin-left: auto;
}

.marketing-agreement__header-button.desktop {
    display: none;
}

.marketing-agreement__header-icon path {
    fill: #767676;
}

.marketing-agreement__content {
    margin: 0;
    list-style-type: none;
    padding: 0;
}

.marketing-agreement__content-item {
    display: flex;
    position: relative;
    flex-direction: column;
}

.marketing-agreement__content-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1rem;
    background-color: #e7e7e7;
}

.marketing-agreement__content-item .item__button {
    background-color: transparent;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    padding: 1.6rem 0;
    margin-bottom: 1.6rem;
}

.marketing-agreement__content-item .item__button-wrapper {
    display: flex;
    width: 100%;
}

.marketing-agreement__content-item .item__button-description {
    text-align: left;
    padding-right: 1.6rem;
}

.marketing-agreement__content-item .item__button-toggle {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
    align-self: flex-start;
    color: var(--red);
}

.marketing-agreement__content-item .item__button-toggle > * path {
    fill: var(--red);
}

.marketing-agreement__content-item .item__content {
    padding: 0 0 24px 32px;
    position: relative;
}

.marketing-agreement__content-item .item__content.hide {
    display: none;
}

.marketing-agreement .item__content {
    padding: 24px 0 24px 32px;
}

.pagination {
    display: flex;
    justify-content: space-between;
}

.pagination-button {
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    margin: 0;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 2.6rem;
}

.pagination-button .description {
    display: none;
}

.pagination-button.active,
.pagination-button:hover {
    font-weight: 600;
    color: #cc1c03;
}

.pagination-button.arrow {
    color: var(--red);
    padding: 1rem 0.1rem;
}

.pagination-button.arrow:hover {
    color: #cc1c03;
}

.pagination-button.arrow .pagination-button__icon path {
    fill: var(--red);
}

.pagination-button:focus,
.pagination-button.arrow:focus {
    box-shadow: 0 0 0 1px var(--red);
}

.ppe-list-item:last-child {
    border: 1px solid #e7e7e7;
}

.ppe-list-item {
    border: 1px solid #e7e7e7;
    border-bottom: none;
    padding: 2.4rem;
}

.ppe-list-item .hide {
    display: none;
}

.ppe-list-item .info {
    display: flex;
    flex-direction: column;
}

.ppe-list-item .info-label {
    font-size: 1.4rem;
}

.ppe-list-item .info-description {
    font-size: 1.4rem;
    font-weight: 600;
}

.ppe-list-item .info-button > * path {
    fill: var(--red);
}

.select-wrapper__label {
    font-weight: 500;
    font-size: 1.4rem;
    margin: 0;
}

.select-wrapper__description {
    font-size: 1.4rem;
    font-weight: 400;
    display: block;
    padding-left: 1.2rem;
    color: #767676;
    padding-top: 0.4rem;
}

.select-wrapper__description.error {
    color: var(--red);
}

.select-wrapper__description.success {
    color: #008738;
    font-weight: 600;
}

.select-wrapper .select__option__description {
    font-size: 1.4rem;
    color: #4d4d4d;
}

.select-wrapper .select__option__description.multi {
    padding-left: 3.2rem;
}

.select-wrapper.required .select-wrapper__label::after {
    content: "*";
    margin-left: 0.6rem;
    color: var(--red);
}

.select-wrapper.required .select-wrapper__description {
    color: #4d4d4d;
}

.select-wrapper.required .select-wrapper__description.error {
    color: var(--red);
}

.btns-dev-switcher {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 99999999999;
}

.btns-dev-switcher button {
    padding: 2px 10px;
    background-color: #fff;
    margin: 0 5px;
    border-radius: 30% 30% 0 0;
}

.btns-dev-switcher button.active {
    background-color: deepskyblue;
}

.page-container__header.max-width {
    padding: 0 24px 24px;
    max-width: 128rem;
    margin: 0 auto;
}

.page-section {
    padding: 0 2.4rem 7.6rem;
    max-width: 40rem;
    margin: 0 auto;
}

.page-section .break {
    display: block;
}

.page-section.center {
    text-align: center;
}

.page-section.center .page-section__description {
    margin: 16px auto 32px;
}

.page-section.mobile-left {
    text-align: left;
}

.page-section.mobile-left .page-section__description {
    margin-left: 0;
}

.page-section.dashboard-view .icon-wrapper {
    display: none;
}

.page-section.dashboard-view .single-form {
    position: relative;
    margin-bottom: 40px;
}

.page-section.dashboard-view .single-form__description {
    line-height: 2.8rem;
    margin: 0 0 24px;
}

.page-section.dashboard-view .single-form__header {
    font-family: "Figtree", sans-serif;
    margin: 32px 0 24px;
    line-height: 4rem;
}

.page-section.dashboard-view .single-form__address-info {
    display: flex;
    flex-direction: column;
    margin: 0 0 24px;
}

.page-section.dashboard-view .single-form__address-info-label {
    color: #4d4d4d;
    font-size: 1.4rem;
}

.page-section.dashboard-view .single-form__address-info-email,
.page-section.dashboard-view .single-form__address-info-description {
    font-weight: 600;
    font-size: 1.6rem;
}

.page-section.dashboard-view .single-form.sm-margin-bottom {
    margin-bottom: 32px;
}

.page-section.dashboard-view .single-form.line {
    padding-bottom: 32px;
}

.page-section.dashboard-view .single-form.line::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1rem;
    background-color: #e7e7e7;
    transition: 0.15s;
}

.page-section .buttons__wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px 0;
}

.page-section .buttons__wrapper > * {
    margin: 0;
}

.page-section__header {
    font-family: "Figtree Bold", sans-serif;
    margin: 0.4rem 0 2.4rem 0;
    line-height: 3.6rem;
    padding-bottom: 1px;
}

.page-section__header.margin-bottom-0 {
    margin-bottom: 1rem;
}

.page-section__step-info {
    margin: 0;
    font-family: "Figtree Bold";
    font-weight: 700;
    color: #767676;
}

.page-section__step-info .color-black {
    color: #1F1F1F;
}

.page-section__subheader {
    margin: 0;
    gap: 8px;
    line-height: 2.8rem;
}

.page-section__hint {
    margin: 0;
    display: inline-flex;
    line-height: 2.8rem;
}

.page-section__hint .link-button {
    margin-left: 8px;
}

.page-section__hint .bold {
    font-weight: 600;
}

.page-section__hint.block {
    display: block;
}

.page-section__hint.line {
    position: relative;
    padding-bottom: 24px;
}

.page-section__hint.line::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0.1rem;
    width: 100%;
    background-color: #e7e7e7;
}

.page-section__inputs-container {
    display: flex;
    flex-direction: column;
    /*gap: 24px;*/
}

.page-section__inputs-container .input-wrapper {
    margin-bottom: 36px;
    position: relative;
}

.page-section__inputs-container .input-wrapper:last-child {
    margin-bottom: 0;
}

.page-section__inputs-container.padding-top {
    padding-top: 24px;
}

.page-section__inputs-container.gap-32 {
    gap: 32px;
}

.page-section__img {
    max-height: 13rem;
}

.page-section__description {
    max-width: 40rem;
    line-height: 2.8rem;
    margin-bottom: 32px;
}

.page-section__description .bold {
    font-weight: 600;
}

.page-section__buttons-container {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
}

.page-section__buttons-container .button {
    margin-bottom: 16px;
}

.page-section__buttons-container .button:last-child {
    margin-bottom: 0;
}

.page-section__buttons-container .button-splitter {
    text-align: center;
    margin: 0 0 16px 0;
    position: relative;
}

.page-section__buttons-container .button-splitter::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    height: 0.1rem;
    background-color: #e7e7e7;
    z-index: -1;
}

.page-section__buttons-container .button-splitter__description {
    z-index: -1;
    padding: 0 1.4rem;
    background-color: #ffffff;
    color: #767676;
}

.auth-page .page-section__hint {
    margin-top: 2.4rem;
}

.slide__resp {
    display: flex;
    align-content: center;
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
    max-height: 40vh;
}

.slide__resp img {
    margin: 0 auto;
    object-fit: cover;
    width: 100%;
}

p p {
    margin: 0 !important;
}

.banner a {
    color: var(--red-contrast) !important;
}

.banner ul li {
    padding-left: 23px;
}

.banner ul li:before {
    color: var(--red);
    position: absolute;
    margin-left: -28px;
    font-size: 2rem;
    text-align: center;
    transition: all 0.25s ease-in-out;
    content: "\EA05";
    font-family: iconfont, serif;
}

.banner ol {
    list-style: none;
    counter-reset: energa-counter;
}

.banner ol li {
    counter-increment: energa-counter;
}

.banner ol li:before {
    content: counter(energa-counter) ". ";
    font-family: "Figtree Bold", sans-serif;
    color: var(--red);
    margin-right: 5px;
    text-align: right;
}

@media (max-width: 992px) {
    .table__header,
    .table__body,
    .table__header-th,
    .table__body-td,
    .table__header-tr,
    .table__body-tr {
        display: block;
    }

    .table__header-tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .table__header-tr,
    .table__body-tr {
        border-bottom: 1px solid #e7e7e7;
    }

    .table__header-tr,
    .table__header-tr:first-child,
    .table__body-tr,
    .table__body-tr:first-child {
        padding: 24px;
    }

    .table__header-tr:last-child,
    .table__body-tr:last-child {
        border-bottom: none;
    }

    .table .table__body-td {
        border: none;
        position: relative;
        padding: 24px 0 0;
        font-weight: 600;
        margin-bottom: 1.8rem;
        line-height: 2.6rem;
    }

    .table .table__body-td:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .table .table__body-td:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        white-space: nowrap;
        font-weight: 400;
        color: #4d4d4d;
    }

    .table .table__body-td[data-headerlabel]:before {
        content: attr(data-headerlabel);
    }
    .table.secondary .table__body-td {
        border-bottom: none;
        margin-bottom: 0;
        padding: 0;
    }

    .table.secondary .table__body-td .info {
        flex-direction: row;
        justify-content: space-between;
    }

    .table.secondary .table__body-td .info-tag {
        width: 100%;
    }

    .table.secondary .table__body-td .info-label {
        font-weight: normal;
    }

    .table.secondary .table__body-td .info-description {
        text-align: right;
        padding-left: 2rem;
    }
    .invoice-profile__table__header,
    .invoice-profile__table__body,
    .invoice-profile__table__header-th,
    .invoice-profile__table__body-td,
    .invoice-profile__table__header-tr,
    .invoice-profile__table__body-tr {
        display: block;
    }

    .invoice-profile__table__header-tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .invoice-profile__table__header-tr,
    .invoice-profile__table__body-tr {
        padding: 16px 0;
        border-bottom: 1px solid #e7e7e7;
    }

    .invoice-profile__table__header-tr:first-child,
    .invoice-profile__table__body-tr:first-child {
        padding-top: 0;
    }

    .invoice-profile__table__body-td {
        padding-bottom: 16px;
        border: none;
        position: relative;
        padding-left: 45%;
        text-align: right;
    }

    .invoice-profile__table__body-td:last-child {
        padding-bottom: 0;
    }

    .invoice-profile__table__body-td.break {
        display: block;
    }

    .invoice-profile__table__body-td:before {
        text-align: left;
        position: absolute;
        top: 0;
        left: 0.6rem;
        width: 45%;
        padding-right: 1rem;
        white-space: nowrap;
        font-weight: 600;
    }

    .invoice-profile__table__body-td[data-headerlabel]:before {
        content: attr(data-headerlabel);
    }
    .ppe-list-item .info {
        flex-direction: row;
        justify-content: space-between;
    }

    .ppe-list-item .info-description {
        text-align: right;
    }

    .ppe-list-item .form-wrapper__button {
        margin-top: 3.2rem;
    }
}

@media (max-device-width: 320px) {
    .button.social .social-description {
        font-size: 12px;
    }

    .input-wrapper__checkbox-container .checkbox-container__link {
        margin-left: 0;
        margin-top: 2rem;
    }
}

@media all and (min-width: 768px) {
    h1,
    .h1 {
        font-size: 5.5rem;
    }
    h2,
    .h2 {
        font-size: 3.2rem;
    }
    h3,
    .h3 {
        font-size: 2.4rem;
    }
    h4,
    .h4 {
        font-size: 2rem;
    }
    h5,
    .h5 {
        font-size: 1.8rem;
    }
    h6,
    .h6 {
        font-size: 1.4rem;
    }
}

@media (min-width: 768px) {
    .banner__img.--mobile {
        display: none;
    }

    .banner__img.--desktop {
        display: block;
    }
}

@media (min-width: 992px) {
    .radio-button__label.bigger-padding {
        padding: 0 0.8rem 0 calc(1.7rem + 2.2rem);
    }
    .checkbox__label.bigger-padding {
        padding: 0 0.8rem 0 calc(1.7rem + 2.2rem);
    }
    .popup__buttons {
        flex-direction: row;
    }

    .popup__buttons .button {
        order: 2;
    }

    .popup__buttons .button.secondary {
        order: 1;
    }
    .footer__content {
        flex-direction: row;
        min-height: 12.4rem;
        max-width: 128rem;
        margin: 0 auto;
    }

    .footer__copyright {
        margin-left: auto;
    }
    .infobox {
        padding: 2.4rem;
    }

    .infobox__icon-wrapper {
        min-width: 4rem;
        width: 4rem;
        height: 4rem;
    }

    .infobox__icon-wrapper .infobox__icon {
        transform: scale(1);
    }

    .infobox__message-wrapper {
        margin-top: 0.8rem;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        flex-grow: 1;
    }

    .infobox__message-wrapper .infobox__button {
        line-height: 2.6rem;
        white-space: nowrap;
    }

    .infobox__description {
        line-height: 2.6rem;
    }
    .table .table__header-th {
        padding: 24px;
        border-bottom: 1px solid #e7e7e7;
        text-align: left;
    }

    .table .table__header-th.email {
        width: 27rem;
    }

    .table .table__header-th.number {
        width: 15rem;
    }

    .table .table__header-th.date {
        width: 18rem;
    }

    .table .table__body-td {
        color: #4d4d4d;
        padding: 24px;
        border-bottom: 1px solid #e7e7e7;
    }
    .table.secondary .table__body-td .info {
        flex-direction: column;
    }
    .notification {
        margin: 0;
    }
    .banner__img {
        /*max-height: 18rem;*/
        /*margin-top: 1rem;*/
    }

    .banner {
        min-height: 100vh;
        gap: 2.4rem;
    }

    .banner::after {
        bottom: auto;
        left: auto;
        transform: none;
        right: 100%;
        top: 3.2rem;
        border-top: 2.2rem solid transparent;
        border-bottom: 2.2rem solid transparent;
        border-right: 2.2rem solid #f2f2f2;
    }

    .banner.img-background .banner__img-wrapper {
        width: calc(100% + 2.2rem);
        position: absolute;
        right: 0;
    }

    .banner.img-background .banner__img-wrapper .banner__triangle {
        border-top: none;
        border-left: 2.2rem solid #ffffff;
        height: 50%;
        left: 0;
    }

    .banner.img-background .banner__img-wrapper .leftTop {
        height: calc(1.5 * 3.2rem);
        border-bottom: 2.2rem solid transparent;
    }

    .banner.img-background .banner__img-wrapper .rightBottom {
        top: auto;
        height: calc(100% - (1.5 * 3.2rem));
        bottom: 0;
        border-top: 2.2rem solid transparent;
    }

    .banner.img-background .banner__content-wrapper {
        /*padding-top: calc(30vh + 2.4rem);*/
    }
    .header {
        max-width: 128rem;
        width: 100%;
        margin: 0 auto;
    }

    .header .title__link .link__icon.desktop {
        display: inline;
    }

    .header .title__link .link__icon.mobile {
        display: none;
    }

    .header__nav-menu {
        gap: 24px;
    }

    .header__nav-menu.additional-menu {
        display: flex;
    }

    .header__nav-menu .menu-item__mobile {
        display: none;
    }

    .header__nav-menu .menu-item .button__icon-action {
        transform: none;
    }
    .invoice-profile__description {
        background-color: #f2f2f2;
        display: block;
        margin-bottom: 24px;
    }

    .invoice-profile__description .content__wrapper {
        padding: 2.4rem;
        display: flex;
        align-items: center;
        max-width: 128rem;
        margin: 0 auto;
    }

    .invoice-profile__description-icon path {
        fill: #4d4d4d;
    }

    .invoice-profile__description-text {
        margin: 0 16px 0 12px;
    }

    .invoice-profile__description-text .bold {
        font-weight: 600;
    }
    .invoice-profile__header-button.desktop {
        display: flex;
        font-size: 16px;
    }

    .invoice-profile__header-button.mobile {
        display: none;
    }
    .invoice-profile__table .invoice-profile__table__header-th {
        padding-bottom: 16px;
        border-bottom: 1px solid #e7e7e7;
        text-align: left;
    }

    .invoice-profile__table .invoice-profile__table__header-th.first {
        width: 16rem;
    }

    .invoice-profile__table .invoice-profile__table__header-th.second {
        width: 12rem;
    }

    .invoice-profile__table .invoice-profile__table__header-th .flex-wrapper {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .invoice-profile__table .invoice-profile__table__body-td {
        color: #4d4d4d;
        padding: 16px 0;
        border-bottom: 1px solid #e7e7e7;
    }
    .marketing-agreement__header-button.desktop {
        display: flex;
        font-size: 1.6rem;
    }

    .marketing-agreement__header-button.mobile {
        display: none;
    }
    .pagination {
        gap: 1rem;
    }

    .pagination-button .description {
        display: inline;
        font-weight: 600;
    }
    .ppe-list-item .ppe-list__header .info-button {
        display: flex;
        justify-content: flex-end;
    }

    .ppe-list-item .ppe-list__header .info-button .description {
        display: none;
    }

    .ppe-list-item .ppe-list__header,
    .ppe-list-item .ppe-list__details-header {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }

    .ppe-list-item .form-wrapper {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }

    .ppe-list-item .form-wrapper__input {
        flex-basis: 40rem;
    }

    .ppe-list-item .form-wrapper__button {
        margin-top: 3.2rem;
    }
    .page-section .buttons__wrapper {
        flex-direction: row;
    }
    .page-container {
        display: grid;
        grid-template-columns: auto 40vw;
        grid-template-rows: auto 1fr;
        grid-template-areas: "header banner" "section banner";
    }

    .page-container.center {
        grid-template-areas: "header header" "section section ";
    }

    .page-container.with-tabs {
        grid-template-areas: "header header" "tabs tabs" "section section";
    }

    .page-container.with-tabs .page-container__header {
        width: 100%;
    }

    .page-container.with-tabs .single-form__header {
        margin-top: 0;
    }

    .page-container.with-tabs .tabs__wrapper {
        grid-area: tabs;
        margin-bottom: 0;
    }

    .page-container.dashboard-view {
        display: block;
    }

    .page-container.dashboard-view.dashboard-view__action-notification {
        display: grid;
    }

    .page-container__header {
        grid-area: header;
        max-width: 85rem;
    }

    .page-container__banner {
        grid-area: banner;
    }

    .page-section {
        grid-area: section;
        justify-self: center;
        padding: 0;
        width: 40rem;
        margin: initial;
        margin-right: 7rem;
    }

    .page-section.action-notification {
        margin-top: 5.5rem;
        width: 50rem;
    }

    .page-section .break {
        display: inline;
    }

    .page-section__step-info {
        font-size: 2rem;
    }

    .page-section__img {
        max-height: 18rem;
    }

    .page-section.center {
        align-self: flex-start;
        justify-self: center;
        margin-top: 0;
        padding: 6rem 2rem 0;
        text-align: left;
        width: 100%;
        display: grid;
        grid-template-columns: 61rem auto;
        column-gap: 7.5rem;
        max-width: 110rem;
        grid-template-areas: "header img" "content-wrapper img" "content-wrapper img";
    }

    .page-section.center .page-section__img {
        grid-area: img;
        align-self: flex-start;
        justify-self: center;
        max-height: 40rem;
    }

    .page-section.center .page-section__header {
        grid-area: header;
        align-self: flex-end;
    }

    .page-section.center .page-section__header .break {
        display: inline;
    }

    .page-section.center .page-section__description {
        grid-area: description;
        max-width: none;
        margin: 16px 0 32px;
    }

    .page-section.center .page-section__content-wrapper {
        grid-area: content-wrapper;
    }

    .page-section.center .page-section__content-wrapper .page-section__button {
        width: auto;
    }

    .page-section.dashboard-view {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 24px;
        max-width: 128rem;
        margin: 0 auto;
        width: 100%;
    }

    .page-section.dashboard-view .single-form.desktop-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .page-section.dashboard-view
    .single-form.desktop-flex
    .page-section__inputs-container {
        flex-basis: 40rem;
    }

    .page-section.dashboard-view .single-form.desktop-flex-column {
        display: flex;
        flex-direction: column;
    }

    .page-section.dashboard-view
    .single-form.desktop-flex-column
    .page-section__buttons-container {
        margin-left: auto;
    }

    .page-section.dashboard-view .editable-content {
        max-width: 78rem;
        width: 100%;
    }

    .page-section.dashboard-view
    .editable-content
    .page-section__buttons-container {
        display: inline-block;
    }

    .page-section.dashboard-view .icon-wrapper {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-top: 3rem;
    }

    .page-section.dashboard-view .icon-wrapper__img {
        max-height: 23rem;
    }
    .slide__resp {
        height: 40vh;
    }
}
