.open-toolbar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 4.6875rem;
    left: .9375rem;
    height: 2.5rem;
    padding: 0 1rem;
    border-radius: 1.3rem;
    background-color: #5E94FF;
    color: #FFFFFF;
    z-index: 5;
    cursor: pointer;
}
.toolbar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 260px;
    background-color: #242938;
    z-index: 6;
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}
.toolbar_closed {
    left: -260px;
}
.ps__rail-x,
.ps__rail-y {
    background-color: transparent !important;
}
.toolbar__header {
    width: 100%;
    height: 4.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 .2rem 0 1.2rem;
    background-color: #363636;
    color: #FFFFFF;
}
.toolbar__header__label {
    font-size: 1.3rem;
    font-weight: 600;
}
.toolbar__header__icon {
    transition: all 0.1s cubic-bezier(.25, .8, .25, 1);
    padding: .8rem 1rem;
}
.toolbar__header__icon:hover {
    cursor: pointer;
    color: #5E94FF;
}
.toolbar__content {
    padding: .8rem;
    max-height: calc(100vh - 4.25rem);
}
.toolbar__content * {
    font-size: .8rem;
}
.toolbar__content__section {
    padding: .8rem 0;
}
.toolbar__content__section__title {
    position: relative;
}
.toolbar__content__section__title__label {
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    color: #E6E9ED;
    background-color: #242938;
    padding-right: .7rem;
    font-weight: 600;
}
.toolbar__content__section__title:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, .3);
}
.toolbar__content__section__content {
    padding-top: .8rem;
}
.career-section__active__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .6rem;
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: .25rem;
    background-color: #6a6a6a;
    color: #ffffff;
    margin-bottom: .4rem;
    transition: all 0.1s cubic-bezier(.25, .8, .25, 1);
    line-height: 1.1rem;
}
.career-section__active__card:hover {
    background-color: #989898;
}
.career-section__active__card_seo:hover {
    cursor: pointer;
}
.career-section__active__card__tool {
    display: none;
    color: #CCD1D9;
}
.career-section__active__card:hover .career-section__active__card__tool {
    display: block;
}
.career-section__active__card__tool > * {
    line-height: 1rem;
    padding: 0 .2rem;
}
.career-section__active__card__tool > *:hover {
    color: #ffffff;
    cursor: pointer;
}
#section-order .career-section__active__card:hover {
    cursor: grab;
}
.career-section__add {
    position: relative;
    text-align: center;
}
.career-section__add__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    padding: 0;
    border: 1px solid #5E94FF;
    border-radius: 50%;
    background-color: #5E94FF;
    color: #ffffff;
    font-weight: 600;
    outline: none;
}
.career-section__add__button:active {
    box-shadow: 0 0 0 0.2rem rgba(0,213,230,.25);
}
.career-section__add__button__icon {
    font-size: 1.2rem;
}
.career-section__add__chooser {
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    top: -999px;
    left: -999px;
    width: 35rem;
    border-radius: .25rem;
    background-color: #191919;
    z-index: 3;
}
.career-section__add__chooser__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: calc(100% / 4);
    height: 5rem;
    border-width: 0 1px 1px 0;
    border-style: solid;
    border-color: rgba(255, 255, 255, .15);
    background-color: #191919;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    outline: none;
}
.career-section__add__chooser__item[aria-disabled="true"] {
    color: #656D78;
}
.career-section__add__chooser__item:hover {
    background-color: #5E94FF;
    cursor: pointer;
}
.career-section__add__chooser__item[aria-disabled="true"]:hover {
    cursor: not-allowed;
    background-color: transparent;
}
.career-section__add__chooser__item:nth-child(1) {
    border-top-left-radius: .25rem;
}
.career-section__add__chooser__item:nth-child(5) {
    border-top-right-radius: .25rem;
    border-right-width: 0;
}
.career-section__add__chooser__item:nth-child(9) {
    border-right-width: 0;
}
.career-section__add__chooser__item:nth-child(10) {
    border-bottom-left-radius: .25rem;
}
.career-section__add__chooser__item:nth-child(13) {
    border-bottom-right-radius: .25rem;
    border-right-width: 0;
}
.career-section__add__chooser__item:nth-child(n + 10) {
    border-bottom-width: 0;
}
.career-section__add__chooser__item__icons {
    display: flex;
    align-items: center;
    margin-bottom: .4rem;
}
.career-section__add__chooser__item__icons__icon {
    font-size: 1.2rem;
}
.career-section__add__chooser__item__icons__icon + .career-section__add__chooser__item__icons__icon {
    padding-left: .2rem;
}
.career-section__add__chooser__item__text {
    font-size: 1rem;
}

.page-block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 7;
}
/* BADGE */
.wrapper-badge-career {
    position: fixed;
    top: 0;
    right: 0;
    width: 25%;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.badge-career {
    width: 100%;
    display: flex;
    margin: .5rem 0;
}
.badge-career:hover {
    cursor: pointer;
}
.badge-career + .badge-career {
    margin-top: 0;
}
.badge-career__icon {
    padding: .6rem;
    display: flex;
    align-items: center;
}
.badge-career__text {
    padding: 1rem;
    flex: 1 auto;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.badge-career__text * {
    font-family: "Poppins", sans-serif !important;
}
.badge-career__text_loading {
    background-color: #C3D1DA;
    color: #242938;
}
.badge-career__icon_loading {
    background-color: #A0B0BA;
    color: #ffffff;
}
.badge-career__icon_loading:before {
    content: "\f1ce";
    font-family: 'Font Awesome Solid' !important;
    font-weight: 900;
    animation: fa-spin 2s infinite linear;
    font-size: 1.5rem;
}
.badge-career__text_success {
    background-color: #3EB56D;
    color: #FFFFFF;
}
.badge-career__icon_success {
    background-color: #31A05D;
    color: #ffffff;
}
.badge-career__icon_success:before {
    content: "\f00c";
    font-family: 'Font Awesome Solid' !important;
    font-weight: 900;
    font-size: 1.5rem;
}
.badge-career__text_error {
    background-color: #C84345;
    color: #FFFFFF;
}
.badge-career__icon_error {
    background-color: #AA0C0D;
    color: #ffffff;
}
.badge-career__icon_error:before {
    content: "\f057";
    font-family: 'Font Awesome Regular' !important;
    font-weight: 900;
    font-size: 1.5rem;
}
.badge-career__text__title {
    font-weight: 600;
}
.badge-career__text__note {
    font-weight: 400;
    font-size: .9rem;
    font-style: italic;
}
.link-career {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 2.375rem;
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: .25rem;
    background-color: #6a6a6a;
    color: #ffffff;
}
.link-career__text {
    padding: 0 .6rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.link-career__copy {
    display: flex;
    align-items: center;
    height: 2.375rem;
    padding: 0 .6rem;
    transition: all 0.2s cubic-bezier(.25, .8, .25, 1);
    position: relative;
}
.link-career__copy:hover {
    cursor: copy;
    color: #5E94FF;
}
.link-career__copy:after {
    display: none;
    content: attr(tt-label);
    position: absolute;
    bottom: 100%;
    right: 0;
    white-space: nowrap;
    border-radius: .25rem;
    background-color: #232F34;
    height: 1.5rem;
    line-height: 1.5rem;
    font-size: .75rem;
    padding: 0 .5rem;
    color: #ffffff;
    z-index: 3;
}
.link-career__copy:hover:after {
    display: block;
}
.link-career__copy:before {
    display: none;
    content: attr(tt-label-before);
    position: absolute;
    bottom: 100%;
    right: 0;
    white-space: nowrap;
    border-radius: .25rem;
    background-color: #232F34;
    height: 1.5rem;
    font-size: .75rem;
    line-height: 1.5rem;
    padding: 0 .5rem;
    color: #ffffff;
    z-index: 4;
}
.link-career__copy_copied:before {
    display: block;
}
.link-career__copy_copied:hover:after {
    display: none;
}
.dropdown-font {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    height: 2.375rem;
    padding: 0 .6rem;
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: .25rem;
    background-color: #6a6a6a;
    color: #ffffff;
}
.dropdown-font__popup {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 15.5rem;
    margin: 2px 0 0;
    padding: 5px 0;
    border-radius: .25rem;
    border: 1px solid rgba(0, 0, 0, .15);
    background-color: #ffffff;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    z-index: 3;
    overflow-y: auto;
}
.dropdown-font__popup__item {
    display: block;
    width: 100%;
    margin: 0;
    padding: .1875rem 1.25rem;
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    font-weight: 400;
    color: #333333;
    font-size: 1rem;
}
input[type="radio"]:checked + .dropdown-font__popup__item,
.dropdown-font__popup__item:hover {
    background-color: #e6e9ed;
}

.short-tool {
    display: flex;
    align-items: center;
}
.short-tool__button {
    position: relative;
    height: 2.2rem;
    width: 2.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    text-decoration: none;
}
.short-tool__button[tool-tip]:not([tool-tip=""]):hover:before {
    display: flex;
}
.short-tool__button[tool-tip]:not([tool-tip=""]):before {
    content: attr(tool-tip);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    margin: 2px;
    min-height: 1.5rem;
    border-radius: .25rem;
    padding: .5rem;
    font-size: .75rem;
    background-color: #232F34;
    color: #ffffff;
    z-index: 3;
}
.short-tool__button + .short-tool__button {
    margin-left: .5rem;
}
.short-tool__button_grey {
    background-color: #E6E9ED;
    color: #333333;
}
.short-tool__button_grey:hover {
    cursor: pointer;
    background-color: #F5F7FA;
    color: #333333;
}
.short-tool__button_grey:active {
    box-shadow: 0 0 0 0.2rem rgba(230,233,237,.25);
}
.short-tool__button_red {
    background-color: #f0300b;
    color: #ffffff;
}
.short-tool__button_red:hover {
    cursor: pointer;
    background-color: #c9302c;
    color: #ffffff;
}
.short-tool__button_red:active {
    box-shadow: 0 0 0 0.2rem rgba(240,48,11,.25);
}
.short-tool__button_green {
    background-color: #34a853;
    color: #ffffff;
}
.short-tool__button_green:hover {
    cursor: pointer;
    background-color: #3abb5d;
    color: #ffffff;
}
.short-tool__button_green:active {
    box-shadow: 0 0 0 0.2rem rgba(52,168,83,.25);
}
.short-tool__button_light-blue {
    background-color: #26c6da;
    color: #ffffff;
}
.short-tool__button_light-blue:hover {
    cursor: pointer;
    background-color: #00d5e6;
    color: #ffffff;
}
.short-tool__button_light-blue:active {
    box-shadow: 0 0 0 0.2rem rgba(0,213,230,.25);
}
.short-tool__button__icon {
    font-size: 1.2rem;
}
.short-tool__button__selection {
    display: none;
    position: absolute;
    top: 100%;
    margin: 2px 0 0;
    padding: 5px 0;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
    background-color: #ffffff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    z-index: 4;
}
.short-tool__button__selection__item {
    display: block;
    text-decoration: none;
    width: 100%;
    margin: 0;
    padding: .1875rem 1.25rem;
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    font-weight: 400;
    color: #333333;
    font-size: 1rem;
    white-space: nowrap;
    text-align: left;
}
.short-tool__button__selection__item:hover {
    cursor: pointer;
    background-color: #e6e9ed;
    color: #333333;
}
.short-tool__button__label {
    width: 0;
    height: 0;
    overflow: hidden;
    -webkit-transition: width 2s, height 4s; /* For Safari 3.1 to 6.0 */
    transition: width 2s, height 4s;
}
.short-tool_fixed .short-tool__button:hover {
    width: fit-content;
    width: -moz-fit-content;
    padding: 0 1rem;
}
.short-tool_fixed .short-tool__button:hover .short-tool__button__label {
    width: fit-content;
    width: -moz-fit-content;
    height: auto;
    padding-right: .7rem;
}