html {
    background-color: #2f2f2f;
    height: 100%;
}

body {
    min-height: 100%;
    display: block;
    margin: 0;
    padding: 0;
    font-family: "Graphik Web",Helvetica,Geneva,sans-serif;
    font-family: "Roboto",'Open Sans',sans-serif;
    font-weight: lighter;
    color: dimgrey;
    background-color: #f6f6f6;
}

/*
 * Define default styles
*/
a:link, a:visited {
    color: white;
    text-decoration: none;
}

a {
    -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5 {
    color: dimgrey;
    margin: 0;
}

h1, h2, h3, h5 {
    font-weight: bold;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 19px;
}

h4 {
    font-size: 14px;
}

h5 {
    font-size: 15px;
}

div {
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

ul, li {
    padding: 0;
}

ul {
    list-style-type: none;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ACACAC;
    opacity: 1; /* Firefox */
    font-weight: lighter;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #ACACAC;
    font-weight: lighter;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #ACACAC;
    font-weight: lighter;
}

input[type='submit'], input[type='text'] { /* Remove form stylings */
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

input[type="file"] {
    #font-style: italic;
}

input, button {
    border: none;
    padding: 0;
    margin: 0;
    border-radius: 0;
}

button {
    cursor: pointer;
}

input, textarea {
    outline: none;
}

form {
    margin: 0;
    text-align: left;
}


/*
 * Helper classes styles
*/

.cards__fix_page {
    position: fixed;
    height: 100vh;
    width: 100vw;
}

.cards__float_right {
    float: right;
}

.cards__float_left {
    float: left;
}

.cards__invisible {
    opacity: 0;
}

.cards__blue {
    color: #3399CC !important;
}

.cards__lightblue {
    color: deepskyblue !important;
}

.cards__dark {
    color: rgb(17, 17, 22) !important;
    font-weight: bold;
}

.cards__green {
    color: #009900 !important;
}

.cards__orange {
    color: orange !important;
}

.cards__success {
    color: #009900 !important;
}

.cards__info {
    color: #009900 !important;
}

.cards__warning {
    color: orange !important;
}

.cards__error {
    color: red !important;
}

.cards__error_message {
    font-size: 8pt !important;
    margin: 4px 0 !important;
}

.cards__hidden {
    display: none !important;
}

.cards__no_borders {
    border: none !important;
}

.cards__pointer {
    cursor: pointer;
}

.cards__link {
    cursor: pointer;
}

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

.cards__clickable {
    cursor: pointer;
    user-select:none;
    -ms-user-select:none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

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

.cards__not_clickable {
    cursor: default !important;
}

.cards__container_hover {
    cursor: pointer;
}

.cards__container_hover:hover {
    box-shadow: 0px 6px 6px rgba(0,0,0,0.24);
    -moz-box-shadow: 0px 6px 6px rgba(0,0,0,0.24);
    -webkit-box-shadow: 0px 6px 6px rgba(0,0,0,0.24);
}

.cards__container_hover_always {
    box-shadow: 0px 6px 6px rgba(0,0,0,0.24);
    -moz-box-shadow: 0px 6px 6px rgba(0,0,0,0.24);
    -webkit-box-shadow: 0px 6px 6px rgba(0,0,0,0.24);
}

.cards__turn_right {
    transform: rotate(90deg);
}

.cards__selected {
    color: #3399CC !important;
}

.cards__select_disabled {
    user-select:none;
    -ms-user-select:none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.cards__highlight_disabled {
    -webkit-tap-highlight-color: transparent;
}

.cards__notransition {
    transition: none !important;
    -o-transition: none !important;
    -moz-transition: none !important;
    -webkit-transition: none !important;
}

.cards__h2 {
    font-size: 24px;
}

.cards__list_dots {
    list-style-type: square;
    padding-left: 40px;
}

.cards__card {
    background-color: white;
    box-shadow: 0px 4px 4px rgba(0,0,0,0.14);
    -moz-box-shadow: 0px 4px 4px rgba(0,0,0,0.14);
    -webkit-box-shadow: 0px 4px 4px rgba(0,0,0,0.14);
}

.cards__card h1 {
    font-size: 19px;
    padding-bottom: 10px;
    border-bottom: dashed 1px lightgrey;
}

.cards__card_info_wrapper {
    height: 100%;
    max-width: 320px;
}

.cards__card_info {
    height: 100%;
    padding: 10px 20px;
    min-width: 240px;
    margin-bottom: 20px;
}

.cards__card_info h1 {
    margin-top: 20px;
}

.cards__card_info table {
    margin-top: 10px;
}

.cards__dashed {
    border-bottom: dashed 1px lightgrey;
}

.cards__or_separator {
    font-size: 10pt;
    margin: 16px 0;
    display: flex;
    align-items: center;
    text-align: center;
}

.cards__or_separator::before,
.cards__or_separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid lightgrey;
}

.cards__or_separator:not(:empty)::before {
  margin-right: .25em;
}

.cards__or_separator:not(:empty)::after {
  margin-left: .25em;
}

hr.cards__dashed_line {
    border: none;
    border-top: dashed 1px lightgrey;
    margin: 20px auto;
}

.cards__form p,
.cards__form legend,
.cards__form label {
    font-size: 10pt;
}

.cards__form fieldset {
    box-sizing: border-box;
    border-width: 0.5px;
    border-color: lightgrey;
    border-style: solid;
    margin-bottom: 20px;
}

.cards__form_input {
    display: block;
    height: 42px;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 0 12px;
    font-size: 10pt;
    color: dimgrey;
    background-color: #f6f6f6;
}

.cards__form_textarea {
    padding-top: 8px;
    height: 86px;
    border: none;
    font-size: 9pt;
}

.cards__form_input::placeholder {
    font-family: monospace;
    font-style: italic;
    font-size: 9pt;
}

.cards__form_input[type="submit"] {
    box-shadow: 0px 2px 2px rgba(0,0,0,0.14);
    -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.14);
    -webkit-box-shadow: 0px 2px 2px rgba(0,0,0,0.14);
}

.cards__form_input[type="submit"]:hover {
    cursor: pointer;
}

.cards__form_checkbox {
    margin-left: 12px;
    width: 14px;
}

.cards__form_checkbox_wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cards__form_checkbox_wrapper label {
    margin: 2px 0 !important;
}

.cards__form_file {
    display: inline-block !important;
    width: fit-content;
    height: 24px;
    line-height: 24px;
    padding: 0 8px;
    #cursor: pointer;
}

.cards__form_file_hint {
    font-size: 9pt;
    position: relative;
}

.cards__form_input_white {
    background-color: white;
}

.cards__form_field {
    margin-bottom: 8px;
}

.cards__form_category {
    font-size: 10pt;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.cards__form_category_select {
    height: 28px;
    padding-left: 4px;
    max-width: 50%;
    font-size: 9pt;
    overflow: hidden;
    border: solid 0.5px lightgrey;
}

.cards__form_category_selected {
    color: #3399CC;
    border-color: #3399CC;
}

.cards__form_small input.cards__form_input {
    height: 24px;
    width: 80%;
}

.cards__form_small textarea {
    width: 80%;
}

.cards__table {
    width: 100%;
    text-align: left;
    box-sizing: border-box;
    border-collapse: collapse;
}

.cards__table th, td {
    padding: 0 2px;
}

.cards__table thead {
    font-size: 10pt;
    color: rgb(17, 17, 22);
}

.cards__table tbody {
    font-size: 9pt;
    word-break: break-word;
    vertical-align: top;
}

.cards__table tbody td {
    font-weight: normal;
}

.cards__table tbody th {
    color: rgb(17, 17, 22);
}

.cards__table_dropdown > i {
    float: right;
}

.cards__table_dropdown:hover > i {
    transform: rotate(180deg);
}

.cards__table_dropdown_menu {
    display: none;
    #font-size: 10pt;
    position: absolute;
    right: 0;
    margin-right: 25px;
    padding: 5px 10px;
    z-index: 100;
}

.cards__table_dropdown_menu_item {
    padding: 5px;
    color: #3399CC;
}

.cards__table_dropdown_menu_item a {
    color: #3399CC;
}

.cards__table_dropdown_menu_item i {
    padding-right: 4px;
    color: #3399CC;
}

.cards__table_dropdown_menu_group_label {
    padding-top: 5px;
    border-top: 0.5px solid lightgrey;
    color: grey;
}

.cards__table_dropdown:hover .cards__table_dropdown_menu {
    display: block;
}

.cards__table_break_row {
    height: 10px;
}

.cards__button {
    #display: block;
    height: 42px;
    #line-height: 42px;
    #text-align: center;
    font-size: 10pt;
    color: dimgrey;
    background-color: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0px 2px 2px rgba(0,0,0,0.14);
    -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.14);
    -webkit-box-shadow: 0px 2px 2px rgba(0,0,0,0.14);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    user-select:none;
    -ms-user-select:none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

input[type="file"].cards__button_green::file-selector-button {
    #background-color: #009900;
    #color: white;
    #border: none;
    #padding: 8px 16px;
    #cursor: pointer;
    #margin-right: 10px;
    #transition: background 0.2s ease-in-out;
}

input[type="file"].cards__button_green::file-selector-button:hover {
    #opacity: 0.8;
}

.cards__button_center {
    text-align: center !important;
    font-size: 10pt !important;
}

.cards__button_small {
    height: 24px;
    line-height: 24px;
    font-size: 9pt;
}

.cards__button, .cards__button a, .cards__button span {
    color: dimgrey;
}

.cards__button_text {
    background-color: transparent;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.cards__button_text_white {
    background-color: transparent;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    color: white;
}

.cards__button_google_oauth {
    width: 80%;
    margin: auto;
    background-color: white;
    color: dimgrey !important;
    font-weight: 500;
    font-family: Roboto, sans-serif;
    border-radius: 100px;
    border: solid 1px lightgrey;
}

.cards__button_google_oauth:hover {
    background-color: #e8eaed;
}

.cards__button_blue {
    background-color: #3399CC;
    color: white;
}

.cards__button_blue:hover {
    opacity: 0.8;
}

.cards__button_green {
    background-color: #009900;
    color: white;
}

.cards__button_green:hover {
    opacity: 0.8;
}

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

.cards__button_red:hover {
    opacity: 0.6;
}

.cards__button_transparent {
    background-color: transparent;
    border: solid 0.5px rgba(0,0,0,0.14);
}

.cards__button_transparent:hover {
    background-color: rgba(0,0,0,0.14);
}

.cards__button_group {
    display: flex;
    gap: 10px;
}

.cards__button_group_button {
    flex-grow: 1
}

.cards__button_group_button_text {
    justify-content: left;
    width: fit-content;
    margin-left: 10px;
}

.cards__circle {
    border-radius: 50%;
}

.cards__image {
    background-position: center;
    background-size: cover;
    background-color: white;
}

.cards__popup {
    font-size: 10pt;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.cards__popup p {
    font-size: 10pt;
    text-align: left;
}

.cards__popup_lite {
    background-color: rgba(0,0,0,0.5);
}

.cards__popup_dark {
    background-color: rgba(0,0,0,0.7);
}

.cards__popup_body {
    width: 360px;
    color: dimgrey;
    padding: 10px 40px 40px 40px;
    position: relative;
    text-align: center;
    background-color: white;
}

.cards__popup_body_message {
    text-align: center;
}

.cards__popup_body li {
    text-align: left;
    margin-bottom: 2px;
}

.cards__popup_close {
    height: 28px;
    width: 28px;
    line-height: 28px;
    position: absolute;
    top: -18px;
    right: -18px;
    color: dimgrey;
    font-size: 14px;
    background-color: white;
    border-radius: 50%;
    border: solid #3399CC 1px;
}

.cards__popup_logo {
    width: fit-content;
    margin: 10px auto 0 auto;
    padding: 16px;
}

.cards__popup_logo_info {
    background: radial-gradient(circle closest-side at center, rgba(0, 128, 0, 0.25), transparent);
}

.cards__popup_logo_warning {
    background: radial-gradient(circle closest-side at center, rgba(255, 165, 0, 0.25), transparent);
}

.cards__popup_logo_error {
    background: radial-gradient(circle closest-side at center, rgba(255, 0, 0, 0.25), transparent);
}

.cards__text_left {
    text-align: left !important;
}

.cards__text_center {
    text-align: center !important;
}

.cards__hint_center {
    text-align: center !important;
    font-size: 10pt !important;
}

.cards__text_right {
    text-align: right !important;
}

.cards__hint_left {
    text-align: left !important;
    font-size: 10pt !important;
}

.cards__hint_right {
    text-align: right !important;
    font-size: 10pt !important;
}

.cards__input_hint {
    font-size: 8pt !important;
    margin: 0;
}

.cards__checkbox_hint {
    margin-left: 31px;
}

.cards__hint_small {
    font-size: 8pt !important;
}

.cards__italic {
    font-style: italic;
}

.cards__form_textarea_expanded {
    height: 20lh;
    field-sizing: content;
}

.cards__stack_jobs_container {
    #padding-bottom: 200px;
}


/*
 * Main styles
*/
.body_wrapper {
    min-width: 100vw;
    height: 100%;
    #min-height: 100%;
    min-height: 100vh;
}

.cards_header {
    background-color: #2f2f2f;
    height: 260px;
    width: 100vw;
    display: flex;
    position: fixed;
    border-top: solid 200px #2f2f2f;
    top: -200px;
    line-height: 60px;
    z-index: 100;
    transition: top 0.3s;
    -o-transition: top 0.3s;
    -moz-transition: top 0.3s;
    -webkit-transition: top 0.3s;
    box-shadow: 0px 0px 2px rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 0px 2px rgba(0,0,0,0.6);
    -webkit-box-shadow: 0px 0px 2px rgba(0,0,0,0.6);
}

.cards_header_logo {
    float: left;
}

.cards_header_logo img {
    height: 32px;
    padding: 14px;
}

.cards_header_logo_title {
    color: white !important;
    display: block;
    font-size: 18pt;
    float: left;
}

.cards_header_left {
    height: 100%;
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 8px;
    flex: 0 0 auto;
}

.cards_header_search_container {
    height: 100%;
    flex: 1 0 auto;
    padding: 0 20px;
    min-width: 100px;
    display: block;
}

.cards_header_right {
    font-size: 10pt;
    padding-right: 8px;
    flex: 0 0 auto;
}

.cards_header_right_block {
    display: inline-block;
    vertical-align: top;
    padding-right: 8px;
    border-left: 0.5px dashed dimgrey;
}

.cards_header_right_block:first-child {
    border-left: none;
}

.cards_header_right_menu {
    #font-size: 18pt;
    #padding-right: 20px;
}

.cards_header_right_menu i {
    line-height: inherit;
    cursor: pointer;
}

.cards_header_right_menu span {
    padding-right: 2px;
}

.cards_header_right_menu_control {
    text-align: right;
    cursor: pointer;
    font-size: 14pt;
    color: white;
}

.cards_header_right_menu_item {
    display: inline-block;
    color: white;
    text-align: right;
    white-space: nowrap;
    padding-left: 8px;
}

.cards_header_right_user_wrapper {
    display: flex;
    height: 60px;
    align-items: center;
    #padding-right: 20px;
}

.cards_header_right_user_img {
    #position: relative;
    #top: 14px;
    width: 28px;
    height: 28px;
    margin-right: 6px;
    border: 1px solid lightgrey;
}

.cards_header_search_button {
    height: 28px;
    width: 28px;
    background-color: white;
    margin: 16px 0;
    color: dimgrey;
    cursor: pointer;
    font-size: 14px;
    margin-right: -5px;
    float: left;
}

.cards_header_search_bar {
    height: 28px;
    width: 80%;
    background-color: white;
    margin: 16px 0;
    padding-left: 5px;
    font-size: 10pt;
    color: dimgrey;
    float: left;
}

.cards_body {
    width: 100vw;
    height: 100%;
    #position: relative;
    padding-top: 60px;
    #overflow: auto;
}

.cards_body_landscape {
    padding-top: 0;
}

.cards_body_with_banner {
    padding-top: 0;
    #margin-top: 295px;
}

.cards_body_container {
    padding: 55px 20px 28px 20px;
}

.cards_body_container_user {
    padding-top: 20px;
}

.cards_front_page_banner_container_wrapper {
    background-color: white;
    width: 100vw;
    padding-top: 60px;
    overflow: hidden;
}

.cards_front_page_banner_container {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.cards_front_page_banner {
    min-height: 300px;
    max-height: 500px;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.cards_front_page_banner_text {
    position: relative;
    width: 500px;
    min-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 0 20px;
}

.cards_front_page_banner_image {
    width: 500px;
    min-width: 300px;
}

.cards_front_page_banner_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
}

.cards_front_page_banner_text h1, h2 {
    color: #333;
    margin: 0 0 15px 0;
}

.cards_front_page_banner_text h1 {
    font-size: 38pt;
    line-height: 0.9;
}

.cards_front_page_banner_text h2 {
    font-size: 14pt;
    line-height: 0.9;
    font-weight: normal;
}

.cards_stacks_container_wrapper {
    width: 100vw;
    margin-top: 0;
    #padding-top: 60px;
    background-color: #f6f6f6;
    display: flex;
}

.cards_stacks_container_user_wrapper {
    margin-top: 0;
    padding-top: 0;
}

.cards_stacks_container_wrapper_with_banner {
    padding-top: 0;
}

.cards_stacks_container {
    padding-top: 60px;
    width: 100%;
    min-height: 360px;
    display: flex;
    flex: 1 0 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.cards_stacks_container_with_filters {
    padding-right: 250px;
}

.cards_stacks_container_with_banner {
    #min-height: 300px;
}

.cards_stacks_load_more_button_wrapper {
    width: 100%;
    height: 50px;
    display: flex;
}
.cards_stacks_load_more_button {
    text-align: center;
    line-height: 30px;
    margin: 0 auto;
    font-size: 10pt;
}

.cards_stacks_loading_wrapper {
    width: 100%;
    height: 50px;
    display: flex;
}

.cards_stacks_loading {
    text-align: center;
    line-height: 32px;
    margin: 0 auto;
    font-size: 10pt;
}

.cards_stacks_loading img {
    vertical-align: middle;
}

.cards_stacks_filter_toggle {
    position: absolute;
    right: 0px;
    padding-right: 20px;
}

.cards_stacks_filter_container_wrapper {
    width: 230px;
    #min-width: 230px;
    margin-left: -230px;
    overflow: hidden;
}

.cards_stacks_filter_container_wrapper_closed {
    #width: 0px !important;
    #min-width: 0px !important;
    margin-left: 0;
}

.cards_stacks_filter_container {
    width: 220px;
    min-width: 210px;
    padding-top: 55px;
    margin-left: 0px;
    white-space: nowrap;
    transition: ease 0.3s;
    -o-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    -webkit-transition: ease 0.3s;
}

.cards_stacks_filter_container_closed {
    margin-left: 210px;
}

.cards_stacks_filter_form p,
.cards_stacks_filter_form label {
    font-size: 9pt;
    margin: 6px 0px;
}

.cards_stacks_filter_form input.cards__form_input {
    height: 24px;
    width: 80%;
}

.cards_stacks_filter_form input::placeholder {
    font-size: 9pt;
}

.cards_stacks_filter_form_label:first-child {
    border-top: none;
}

.cards_stack_card_container {
    position: relative;
    background-color: white;
    height: 210px;
    width: 210px;
    margin: 0 10px 30px 10px;
    overflow: hidden;
    box-shadow: 0px 2px 2px rgba(0,0,0,0.14);
    -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.14);
    -webkit-box-shadow: 0px 2px 2px rgba(0,0,0,0.14);
}

.cards_stack_card_container_edit {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 8pt;
    color: #3399CC !important;
}

.cards_stack_ads_card_container {
    width: 440px;
    text-align: center;
    line-height: 210px;
}

.cards_stack_card_title {
    color: rgb(17, 17, 22);
    text-align: center;
    text-transform: uppercase;
    word-break: break-word;
    margin: 20px 15px 8px 15px;
    padding: 10px 4px;
    border: 1px solid lightgrey;
    font-size: 12pt;
}

.cards_stack_card_description {
    text-align: center;
    padding: 0px 20px;
    font-size: 9pt;
    color: dimgrey;
    word-break: break-word;
}

.cards_stack_card_details {
    height: 20px;
    width: 100%;
    display: inline-block;
    position: absolute;
    bottom: 37px;
    font-size: 11px;
}

.cards_stack_card_details div {
    padding-top: 4px;
    padding-bottom: 4px;
}

.cards_stack_card_details div span,
.cards_stack_card_details div span i {
    color: #3399CC;
}

.cards_stack_card_details_left {
    padding-left: 16px;
    text-align: left;
    float: left;
}

.cards_stack_card_details_followers {
    padding-right: 10px;
    text-align: center;
    float: right;
}

.cards_stack_card_details_likes {
    padding-right: 16px;
    text-align: right;
    float: right;
}

.cards_stack_card_details_key {
    margin-right: 2px;
}

.cards_stack_card_footer {
    height: 36px;
    width: 100%;
    line-height: 36px;
    display: flex;
    position: absolute;
    bottom: 0px;
    background-color: #f6f6f6;
}

.cards_stack_card_footer_profile_img {
    top: 0;
    width: 28px;
    height: 28px;
    margin: 4px 8px 4px 16px;
}

.cards_stack_card_footer_profile_name {
    color: #3399CC;
}

.cards_stack_card_footer_profile_name a {
    color: #3399CC;
    font-size: 8pt;
}

.cards_stack_container {
    width: 100%;
    height: 100%;
    #position: absolute;
    #padding-top: 60px;
    #top: 0;
    #bottom: 0;
}

.cards_stack_container_landscape {
    padding-top: 0;
}

.cards_stack_header {
    width: 100vw;
    height: 40px;
    background-color: white;
    line-height: 40px;
    vertical-align: middle;
    display: flex;
}

.cards_stack_title {
    min-width: 0;
    flex: 0 0 calc(50vw - 35px);
    #position: absolute;
    padding-left: 20px;
    margin-right: 10px;
    color: dimgrey;
}

.cards_stack_title h1 {
    max-width: 100%;
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-transform: uppercase;
    margin: 0;
}

.cards_stack_counter {
    #margin: auto;
    width: 70px;
    #margin-left:-35px;
    text-align: center;
    flex: 0 0 70px;
}

.cards_stack_info {
    #position: absolute;
    width: 80px;
    #display: flex;
    #float: right;
    #right: 20px;
    flex: 0 0 80px;
    margin-left: auto;
    text-align: right;
    padding-right: 20px;
}

.cards_stack_like_wrapper {
    height: inherit;
    #position: relative;
    float: right;
    #background-color: red;
}

.cards_stack_like {
    #position: absolute;
    #right: 0;
    height: inherit;
    width: 30px;
    font-size: 18px;
}

.cards_stack_like i {
    color: lightgrey;
    line-height: inherit;
}

.cards_stack_like:hover {
    cursor: pointer;
    opacity: 1;
}

.cards_stack_follow_wrapper {
    height: inherit;
    position: relative;
    float: right;
    width: 30px;
    background-color: green;
}

.cards_stack_follow {
    position: absolute;
    width: 30px;
    #right: 0;
    font-size: 18px;
}

.cards_stack_follow i {
    color: lightgrey;
    line-height: inherit;
}

.cards_stack_follow:hover {
    cursor: pointer;
    opacity: 1;
}

.cards_stack_settings_button {
    position: absolute;
    top: 101px;
    right: 0;
    padding-right: 20px;
    z-index: 99;
}

.cards_stack_settings_button_landscape {
    top: 41px;
}

.cards_stack_field_wrapper {
    width: 100%;
    position: absolute;
    top: 100px;
    bottom: 0;
    overflow: hidden;
}

.cards_stack_field_wrapper_landscape {
    top: 50px !important;
}

.cards_stack_field {
    width: auto;
    height: 80vmin;
    position: relative;
    top: 50%;
    margin-top: -40vmin;
    white-space: nowrap;
}

.cards_card_form {
    display: flex;
    flex-wrap: wrap;
}

.cards_card_form .cards__form_field {
    flex-grow: 1;
    flex-basis: 210px;
    padding: 0 9px;
}

.cards_card_form .cards__form_field_left {
    border-right: 0.5px solid lightgrey;
}

.cards_card_form p {
    font-size: 9pt;
    margin: 9px 0 5px 0;
}

.cards_card_form_details {
    padding: 0 9px;
}
.cards_remove_card, .cards_remove_new_card, .cards_remove_image {
    color: indianred;
}

.cards_remove_card:hover, .cards_remove_new_card:hover, .cards_remove_image:hover{
    color: red;
}

.cards_remove_image {
    font-size: 9pt;
}

.cards_card_zero_vmin_adjuster {
    width: 25vw;
    height: 80vmin;
    display: inline-block;
    margin-right: -15vmin;
}

.cards_card_zero_vw_adjuster {
    width: 0;
    height: 80vmin;
    display: inline-block;
    margin-right: -9px;
}

.cards_card_zero {
    display: inline-block;
}

.cards_card_container_wrapper {
    margin-right: -4.5px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.cards_card_container_wrapper_current {
    z-index: 2;
}

.cards_card_container {
    height: 80vmin;
    width: 50vw;
    margin: 0 15vmin;
    perspective: 400vmin;
    -moz-perspective: 400vmin;
    -webkit-perspective: 400vmin;
    text-align: center;
}

.cards_card {
    height: 70vmin;
    width: 70vmin;
    margin: 0 auto;
    position: absolute;
    left: 25vw;
    margin-left: -35vmin;
    margin-top: 5vmin;
    box-shadow: -1vmin 1vmin 1vmin rgba(0,0,0,0.14);
    -moz-box-shadow: -1vmin 1vmin 1vmin rgba(0,0,0,0.14);
    -webkit-box-shadow: -1vmin 1vmin 1vmin rgba(0,0,0,0.14);
    transition: all 0.6s ease, width 0.2s, height 0.2s, margin-top 0.2s, margin-left 0.2s, box-shadow 0.2s ease-in;
    -o-transition: all 0.6s ease, width 0.2s, height 0.2s, margin-top 0.2s, margin-left 0.2s, box-shadow 0.2s ease-in;
    -moz-transition: all 0.6s ease, width 0.2s, height 0.2s, margin-top 0.2s, margin-left 0.2s, -moz-box-shadow 0.2s ease-in;
    -webkit-transition: all 0.6s ease, width 0.2s, height 0.2s, margin-top 0.2s, margin-left 0.2s, -webkit-box-shadow 0.2s ease-in;
    transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.cards_card_rotate {
    transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -webkit-transform: rotateX( 180deg );
    box-shadow: -1vmin -1vmin 1vmin rgba(0,0,0,0.14);
    -moz-box-shadow: -1vmin -1vmin 1vmin rgba(0,0,0,0.14);
    -webkit-box-shadow: -1vmin -1vmin 1vmin rgba(0,0,0,0.14);
}

.cards_card_current {
    width: 80vmin !important;
    height: 80vmin !important;
    margin-left: -40vmin;
    margin-top: 0 !important;
    box-shadow: -6vmin 6vmin 4vmin rgba(0,0,0,0.14);
    -moz-box-shadow: -6vmin 6vmin 4vmin rgba(0,0,0,0.14);
    -webkit-box-shadow: -6vmin 6vmin 4vmin rgba(0,0,0,0.14);
}

.cards_card_current_rotate {
    box-shadow: -6vmin -6vmin 4vmin rgba(0,0,0,0.14);
    -moz-box-shadow: -6vmin -6vmin 4vmin rgba(0,0,0,0.14);
    -webkit-box-shadow: -6vmin -6vmin 4vmin rgba(0,0,0,0.14);
}


.cards_card .side{
    width: 100%;
    height: 100%;
    position: absolute;
    text-align: center;
    display: table;
    background-color: white;
    backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.cards_card_front {
    z-index: 2;
}

.cards_card_back {
    transform: rotateX( 180deg );
    -o-transform: rotateX( 180deg );
    -ms-transform: rotateX( 180deg );
    -moz-transform: rotateX( 180deg );
    -webkit-transform: rotateX( 180deg );
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    z-index: 1;
}

.cards_card_body {
    max-width: 0;
    display: table-cell;
    border: solid white 2vmin;
    padding: 4vmin;
    vertical-align: middle;
    overflow: hidden;
    word-break: break-word;
    white-space: initial;
}

.cards_card_text {
    color: rgb(17, 17, 22);
    white-space: pre-wrap;
    transition: font-size 0.2s ease;
    -o-transition: font-size 0.2s ease;
    -moz-transition: font-size 0.2s ease;
    -webkit-transition: font-size 0.2s ease;
}

.cards_card_image {
    background-position: center;
    background-size: cover;
    background-color: white;
    align-content: end;
}

.cards_picture_preview {
    display: none;
    min-width: 200px;
    height: 200px;
    border: 6px solid white;
    position: absolute;
    left: -50px;
    z-index: 100;
}

.cards__form_file_hint:hover .cards_picture_preview {
    display: block;
}

.cards_card_image .cards_card_text {
    margin: auto 2vmin 3vmin 2vmin;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter(2px);
    border-radius: 4px;
    padding: 2vmin 3vmin;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cards_card_text_xxlarge {
    font-size: 2.2vmin;
    text-align: left;
}

.cards_card_text_xlarge {
    font-size: 3vmin;
    text-align: left;
}

.cards_card_text_large {
    font-size: 4vmin;
    text-align: left;
}

.cards_card_text_medium {
    font-size: 4.9vmin;
}

.cards_card_text_small {
    font-size: 7vmin;
}

.cards_card_text_xsmall {
    font-size: 9.75vmin;
}

.cards_card_text_current {
    font-size: 1.172em;
}

.cards_card_image .cards_card_text_current {
    font-size: 1.208em !important;
}

.cards_auth_login_widget_close:hover {
    color: #3399CC;
}

.cards_auth_container {
    text-align: center;
    width: 360px !important;
    color: dimgrey;
}

.cards_auth_container label {
    color: dimgrey;
    font-size: 12pt;
}

.cards_auth_warning {
    width: 100%;
    position: absolute;
    top: 60px;
}

.cards_auth_container p {
    text-align: left;
    font-size: 10pt;
}

.cards_central_notice {
    position: fixed;
    top:45%;
    display: block;
    height: 100%;
    width: 100%;
    text-align: center;
}

.cards_body_account_info_container {
    background-color: white;
    width: 100%;
    padding-top: 2px;
}

.cards_account_img {
    height: 200px;
    width: 200px;
}

.cards_account_img img {
    height: 200px;
    width: 200px;
}

.cards_user_info_row {
    width: 100%;
    display: inline-block;
    margin-top: 10px;
}

.cards_user_info_row_tiny {
    margin-top: 0;
}

.cards_user_info_text_s {
    font-size: 14px;
}

.cards_user_info_text_xs {
    font-size: 12px;
}

.cards_user_info_container {
    min-height: 240px;
    width: 100%;
    background-color: white;
    padding-top: 35px;
    word-break: break-word;
}

.cards_user_info_body {
    margin-left: 10vw;
    width: 80vw;
    overflow: auto;
}

.cards_user_img_wrapper {
    width: 200px;
    height: auto;
    padding-bottom: 8px;
    float: left;
}

.cards_user_img {
    height: 200px;
    width: 200px;
    box-shadow: 0px 4px 4px rgba(0,0,0,0.14);
    -moz-box-shadow: 0px 4px 4px rgba(0,0,0,0.14);
    -webkit-box-shadow: 0px 4px 4px rgba(0,0,0,0.14);
}

.cards_user_info {
    width: 100%;
    padding-left: 240px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.cards_user_info_stats {
    margin-right: 20px;
    float: left;
}

.cards_user_info_stats_no_margin {
    margin: 0;
    float: left;
    text-align: justify;
    white-space: pre-wrap;
}

.cards_user_info_stats_value {
    font-size: 24px;
    color: dimgrey;
}

.cards_user_info_edit {
    position: absolute;
    top: 60px;
    right: 0;
    padding-right: 20px;
}

.cards_user_stacks_tab {
    padding: 20px 40px;
}

.cards_edit_stack_wrapper {
    display: flex;
    flex-wrap: wrap;
    column-gap: 18px;
}

.cards_edit_stack_form {
    flex-grow: 1;
    width: 50vw;
    height: 100%;
    margin: 0 auto;
    padding: 10px 20px 40px 20px;
}

.cards_edit_stack_form h1 {
    margin-top: 20px;
}

.cards_edit_stack_demo {
    margin: 0 auto;
    width: 220px;
    height: 100%;
    position: sticky;
    top: 80px;
}

.cards_edit_stack_demo_title {
    padding-left: 10px;
    margin-top: 21px;
}

.cards_edit_stack_add_tag_container {
    width: 100%;
    display: table;
}

.cards_edit_stack_add_tag_field {
    display: table-cell;
    margin-bottom: 0;
}

.cards_edit_stack_add_tag_button {
    display: table-cell;
    padding-left: 10px;
    font-size: 14px;
}

.cards_tags_wrapper {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 20px;
}

.cards_tags_wrapper_stacks {
    padding: 0 80px;
    margin-top: -35px;
}

.cards_tag, .cards_tag_form {
    display: inline-block;
    height: 20px;
    padding: 1px 6px;
    margin: 2px 1px !important;
    color: white;
    font-size: 10pt;
    background-color: #3399CC !important;
    border-radius: 10px;
    line-height: 18px;
}

.cards__popup_error {
    position: absolute;
    font-size: 8pt !important;
    color: red;

}

.cards_remove_tag_button {
    margin-left: 6px;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.cards_remove_tag_button:hover {
    color: lightblue;
}

.cards_add_card_warning {
    padding-bottom: 10px;
    font-size: 10pt;
    color: red;
}

.cards_create_new_stack {
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 40px;
    right: 20px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0px 4px 4px rgba(0,0,0,0.14);
    -moz-box-shadow: 0px 4px 4px rgba(0,0,0,0.14);
    -webkit-box-shadow: 0px 4px 4px rgba(0,0,0,0.14);
    z-index: 100;
}

.cards_create_new_stack i {
    padding-top: 11px;
    font-size: 20px;
}

.cards_footer {
    background-color: rgba(0,0,0,0.85);
    width: 100%;
    display: inline-block;
    position: fixed;
    bottom: -99999px;
    font-size: 12px;
    color: lightgrey;
    overflow: hidden;
    z-index: 100;
    transition: bottom 0.3s;
    -o-transition: bottom 0.3s;
    -moz-transition: bottom 0.3s;
    -webkit-transition: bottom 0.3s;
    box-shadow: 0px 0px 2px rgba(0,0,0,0.24);
    -moz-box-shadow: 0px 0px 2px rgba(0,0,0,0.24);
    -webkit-box-shadow: 0px 0px 2px rgba(0,0,0,0.24);
}

.cards_footer_open {
    bottom: 0px !important;
}

.cards_footer_open_button_wrapper {
    position: absolute;
    width: 100%;
    line-height: 30px;
    color: white;
    transform: scaleX(2.0);
}

.cards_footer_open_button_wrapper:hover {
    opacity: 0.8;
}

.cards_footer_open_button {
    width: fit-content;
    margin: auto;
    font-size: 10px;
}

.cards_footer_short_text {
    height: 30px;
    line-height: 30px;
}

.cards_footer_left_section {
    margin-left: 4%;
    margin-bottom: 20px;
    width: 56%;
    float: left;
}

.cards_footer_title {
    margin-bottom: 8px;
    color: white;
}

.cards_footer_details {
    padding-bottom: 10px;
}

.cards_footer_details ul li {
    margin-bottom: 3px;
}

.cards_footer_details ul li a {
    color: lightgrey !important;
}

.cards_footer_right_section {
    margin-right: 4%;
    margin-bottom: 20px;
    width: 36%;
    float: right;
}

.cards_footer_feedback_form {
    margin-bottom: 10px;
    position: relative;
    flex-wrap: wrap;
    display: flex;
    flex-direction: row-reverse;
}

.cards_footer_feedback_form textarea,
.cards_footer_feedback_form input {
    float: right;
}

.cards_footer_feedback_form_submitted {
    position: absolute;
    display: none;
    width: 80%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    text-align: center;
    line-height: 100%;
}

.cards_footer_feedback_form_submitted_title {
    position: relative;
    top: 40%;
}

.cards_copyright {
    position: absolute;
    bottom: -6px;
    width: 100%;
    text-align: center;
    font-size: 10px;
    color: white;
}

.cards_section {
    width: 100%;
    padding-bottom: 25px;
}

.cards_body_card {
    width: 60vw;
    margin: 0 auto;
    padding: 10px 20px 40px 20px;
}

.cards_body_card_wide {
    width: 80vw;
    margin: 0 auto;
    padding: 10px 20px 40px 20px;
}

.cards_body_card_center {
    width: 60vw;
    margin: 0 auto;
    padding: 10px 20px 40px 20px;
}

.cards_body_card_thin {
    position: relative;
    margin: 5px auto 15px auto;
    padding: 10px 20px;
}

.cards_static_page_row {
    text-align: center;
    overflow: hidden;
    padding-top: 20px;
    font-size: 11pt;
}

.cards_contact_info_left_column {
    width: 60%;
    text-align: right;
    float: left;
    overflow: hidden;
}

.cards_contact_info_right_column {
    width: 40%;
    text-align: left;
    overflow: hidden;
}

.cards_contact_info_column_body {
    margin: 0 12px;
}

.cards_contact_info_column_body p {
    font-size: 11pt;
}

.cards_contact_info_email {
    margin-bottom: 10px;
}

.cards_edit_profile_img_wrapper {
    width: 40%;
    height: 150px;
    top: 14px;
    position: relative;
    float: right;
    padding: 0;
}

.cards_edit_profile_img {
    position: absolute;
    left: -80px;
    margin-left: 50%;
}

.cards_edit_profile_form {
    width: 60%;
}

.cards__debug_guide_1 {
    position: fixed;
    top: 0;
    left: 20vw;
    height: 100vh;
    width: 1px;
    background-color: yellow;
}

.cards__debug_guide_2 {
    position: fixed;
    top: 0;
    left: 50vw;
    height: 100vh;
    width: 1px;
    background-color: yellow;
}

.cards__debug_guide_3 {
    position: fixed;
    top: 0;
    left: 80vw;
    height: 100vh;
    width: 1px;
    background-color: yellow;
}

/*
 * CMS specific styles
 */
.cms_create_new_stack_menu_container {
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 100;
}

.cms_create_new_stack_menu_container:hover .cms_new_stack_menu {
    #display: block;
}

.cms_new_stack_menu_control {
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0px 4px 4px rgba(0,0,0,0.14);
    -moz-box-shadow: 0px 4px 4px rgba(0,0,0,0.14);
    -webkit-box-shadow: 0px 4px 4px rgba(0,0,0,0.14);
    z-index: 100;
    float: right;
}

.cms_new_stack_menu {
    #display: none;
    background-color: #3399CC;
    padding: 10px;
    margin-bottom: 10px;
}

.cms_new_stack_menu_item {
    font-size: 10pt;
    line-height: 30px;
    color: white;
}

.cms_stack_job_wrapper {
    display: flex;
    flex-wrap: wrap;
    column-gap: 18px;
}

.cms_validation_report td, th {
    width: 50%;
}

.cms_validation_report td {
    text-align: right;
}

.cms_stack_jobs_table_job_id {
    width: 50px;
}

.cms_stack_jobs_table_topic {
    width: auto;
}

.cms_stack_jobs_table_creation_ts {
    width: 20%;
}

.cms_stack_jobs_table_validation {
    width: 22%;
}

.cms_stack_jobs_table_status {
    width: 15%;
    min-width: 65px;
}

.cms_stack_jobs_table_action {
    width: 10%;
    min-width: 54px;
}

.cms_stack_reviews {
    padding: 10px;
    border-top: dashed 0.5px lightgrey;
    margin-top: 6px;
}

.cms_stack_reviews_table td {
    padding: 5px 0;
    border-bottom: dashed 0.5px lightgrey;

}

.cms_stack_reviews_table_title {
    width: 30%;
    min-width: 220px;
}

.cms_stack_reviews_table_status {
    width: 15%;
    min-width: 65px;
}

.cms_stack_reviews_table_action {
    min-width: 60px;
    width: auto;
}

.cms_stack_reviews_table_action div {
    width: fit-content;
}

.cms_stack_jobs_review_menu {
    font-size: 10pt;
}

/*
 * Styles for desktops and larger screens
 */
@media screen and (min-width: 769px) {
.cards__hidden_xl {
    display: none !important;
}
}

/*
 * Styles for tablets and larger screens
 */
@media screen and (min-width: 481px) {
.cards__hidden_l {
    display: none !important;
}
}

/*
 * Styles for mobile devices (e.g. tablets, mobile phones, etc.)
 */
@media screen and (max-width: 768px) {
.cards__hidden_s {
    display: none !important;
}

.cards_header_right_menu {
    position: absolute;
    top: 60px;
    right: 0;
}

.cards_header_right_menu_item {
    display: block;
    padding: 0 20px;
    background-color: #2f2f2f;
    text-align: left;
    line-height: 40px;
}

.cards_header_right_menu_item:first-child {
    padding: 0 20px;
}

.cards_header_right_block {
    border-left: none;
}

.cards__card_info_wrapper {
    margin: 0 auto;
}

.cards__card_info_wrapper {
    max-width: none;
}

.cards_edit_profile_img_wrapper {
    width: 100%;
    position: relative;
    top: 0;
    float: none;
}

.cards_edit_profile_img {
    position: relative;
    left: 0;
    margin: 2vw auto 0 auto;
}

.cards_edit_profile_form {
    width: 100%;
}

.cards_stack_title {
    #position: relative;
    #padding-right: 10px;
    #max-width: none;
    flex: 1;
}

.cards_stack_counter {
    #position: relative;
    #padding: 0 10px;
    border-left: dashed 1px lightgrey;
    border-right: dashed 1px lightgrey;
    margin-left: 0;
}

.cards_stack_info {
    margin-left: 0;
}

.cards_contact_info_left_column {
    width: 100%;
    text-align: left;
}

.cards_contact_info_right_column {
    width: 100%;
}

.cards_edit_stack_form {
    width: 80vw;
    margin: auto;
}

.cards_header_right_user_wrapper {
    right: 40px;
}

.cards_user_info {
    padding-left: 190px;
}

.cards_user_info_main {
    padding-top: 30px;
}

.cards_user_img_wrapper {
    height: 150px;
    width: 150px;
}

.cards_user_img {
    height: 150px;
    width: 150px;
}

.cards_user_info_about {
    padding-left: 0px !important;
}

.cards_footer_left_section, .cards_footer_right_section {
    width: 46%;
}
}

/*
 * Styles for small screen mobile phones.
 */
@media screen and (max-width: 480px) {
h1 {
    font-size: 22px;
}

h2 {
    font-size: 18px;
}

h3 {
    font-size: 16px;
}

h4 {
    font-size: 14px;
}

h5 {
    font-size: 12px;
}

.cards__list_dots {
    padding-left: 20px;
}

.cards__hidden_xs {
    display: none !important;
}

.cards__button_grey {
    height: 11vw;
    line-height: 11vw;
}

.cards__button_small_screen {
    height: 24px;
    line-height: 24px;
    font-size: 8pt;
}

.cards__button_group_button_text {
    margin-left: 0;
}

.cards__popup_body {
    width: 72vw;
    color: dimgrey;
    padding: 2vw 8vw 8vw 8vw;
}

.cards_body_with_banner {
    #margin-top: 30vh;
}

.cards_body_container {
    padding: 11vw 4vw 12vw 4vw;
}

.cards_body_container_user {
    padding-top: 4vw;
}

.cards_body_card_thin {
    padding: 10px;
}

.cards_front_page_banner {
    min-height: 200px;
}

.cards_front_page_banner_text {
    width: 170px;
    min-width: 170px;
}

.cards_front_page_banner_text h1, h2 {
    margin: 0 0 10px 0;
}

.cards_front_page_banner_text h1 {
    font-size: 7vw;
}

.cards_front_page_banner_text h2 {
    font-size: 2vw;
}

.cards_front_page_banner_image {
    min-width: 200px;
}

.cards_stacks_container {
    width: 92vw;
}

.cards_stack_card_container {
    height: 42vw;
    width: 42vw;
    margin: 0 2vw 6vw 2vw;
}

.cards_stack_card_container_edit {
    top: 2px;
    right: 6px;
}

.cards_stack_ads_card_container {
    width: 88vw;
    line-height: 42vw;
}

.cards_stack_card_title {
    margin: 4vw 3vw 1.6vw 3vw;
    padding: 2vw 0.8vw;
    font-size: 10pt;
}

.cards_stack_card_description {
    padding: 0 4vw;
    font-size: 2.4vw;
}

.cards_stack_card_details {
    height: 5vw;
    bottom: 8vw;
    font-size: 2.5vw;
}

.cards_stack_card_details div {
    padding-bottom: 1vw;
}

.cards_stack_card_details_left {
    padding-left: 4vw;
}

.cards_stack_card_details_followers {
    padding-right: 2vw;
}

.cards_stack_card_details_likes {
    padding-right: 4vw;
}

.cards_stack_card_footer {
    height: 8vw;
    line-height: 8vw;
}

.cards_stack_card_footer_profile_img {
    top: 0;
    width: 6vw;
    height: 6vw;
    margin: 1vw 1.6vw 1vw 3.2vw;
}

.cards_stack_card_footer_profile_name a {
    font-size: 3vw;
}

.cards_card_zero_vw_adjuster {
    margin-right: -8px;
}

.cards_card_container_wrapper {
    margin-right: -4px;
}

.cards_card_current {
    width: 90vmin !important;
    height: 90vmin !important;
    margin-left: -45vmin !important;
    margin-top: -7vmin !important;
}

.cards_card {
    height: 66vmin;
    width: 66vmin;
    margin-left: -33vmin;
}

.cards_card_text_current {
    font-size: 1.444em;
}

.cards_card_image .cards_card_text_current {
    font-size: 1.545em !important;
}

.cards_auth_container {
    width: 72vw !important;
}

.cards_user_info_container {
    min-height: 48vw;
}

.cards_user_info_body {
    margin-left: 5vw;
    width: 90vw;
}

.cards_user_info {
    padding-left: 35vw
}

.cards_user_info_main {
    padding-top: 6vw;
}

.cards_user_img_wrapper {
    height: 30vw;
    width: 30vw;
}

.cards_user_img {
    height: 30vw;
    width: 30vw;
}

.cards_user_info_stats {
    margin-right: 4vw;
}

.cards_user_info_stats_value {
    font-size: 5vw;
}

.cards_user_info_edit {
    padding-right: 2vw;
    font-size: 3vw;
}

.cards_user_stacks_tab {
    padding-top: 4vw;
    padding-left: 8vw;
}

.cards_stacks_filter_toggle {
    height: 11vw;
    line-height: 11vw;
    padding-right: 2vw;
}

.cards_stacks_filter_toggle span {
    font-size: 3vw;
}

.cards_header_right_user_wrapper {
    right: 8vw;
}

.cards_edit_profile_img_wrapper {
    height: 30vw;
}

.cms_stack_jobs_table_status {
    width: 65px;
}

.cms_stack_jobs_table_action {
    width: 54px;
}

.cms_stack_reviews_table_title {
    width: auto;
}

.cms_stack_reviews_table_status {
    width: 65px;
}

.cms_stack_reviews_table_action {
    width: 60px;
}
}

/* Decorating inline and block LaTeX formulas */
.katex-display {
    display: block;
    margin: 2vmin 0 !important;
}

.katex {
    display: inline-block !important;
    background-color: #ecf4f9; /* Light blue */
    padding: 0.2vmin 1vmin;
    border-radius: 4px;
    font-size: 0.9em !important; /* Base scale relative to card text */
}

.katex-display .katex {
    padding: 3vmin 4vmin;
    border-radius: 8px;
}

.cards_card_image .katex,
.cards_card_image .katex-display {
    background-color: transparent;
}
