:root {
    --bg-main: #f1f2ee; /*/#f4f1de; /*Beige*/
    --bg-dark: #0d1321;
    --bg-normal: #73ab84;
    --bg-light: #a0d9b2;
    --bg-focused: #58a4b0;
    --text-main: #4a4a4a;
    --text-light: #f0ebd8;
    --text-dark: #4a4a4a;
    --secondary-color: #2b2d42; /* Arsenic*/
    --error: #d33f49;

    --buy: #36cc08;
    --weak-buy: #92f274;
    --hold: #74bef2;
    --weak-sell: #f28574;
    --sell: #cc3608;

    --text-dim: #9a9a9a;
    --text-dimmer: #dedede;
}

@font-face {
    font-family: "Open Sans";
    src:
        local("Open Sans");
    font-display: swap;
}

html {
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html, body {
    background-color: var(--bg-main);
    font-family:  "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.5;
    font-weight: 400;
    color: var(--text-dark);
}

.text-main {
    color: var( --text-main );
}

p {
    color: var(--text-dark);
}

a {
    color: var(--text-main);
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {font-weight: normal; font-size: 100%;}
strong {font-weight: 700;color: var(--text-dark);}
.title {color: var(--text-dark);font-size: 2rem; font-weight: 600; line-height: 1.125;}
.title.is-1 {font-size: 3rem;}
a:hover {
    color: var(--bg-dark);
}
ul {list-style: none;padding: 0;}

*, ::before, ::after {box-sizing: inherit;}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.5rem;
    letter-spacing: 0.01071em;
    padding: 6px 16px;
    border-bottom: 1px solid rgb(224, 224, 224);
    text-align: left;
}

td {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 0.875rem;
    letter-spacing: 0.01071em;
    padding: 6px 16px;
    border-bottom: 1px solid rgb(224, 224, 224);
}

.skeleton {
	background-color: #e2e5e7;
	background-image: linear-gradient(90deg, #e9e9e9, var(--bg-main), #e9e9e9);
	background-size: 50px 100%;
	background-repeat: no-repeat;
	background-position: left -40px top 0;
	animation: shine 2s ease infinite;
    border-radius: 5px;
}

@keyframes shine {
	to {
		background-position: right -50px top 0;
	}
}

.loading {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--text-main);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: auto;
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.snackbar {
    width: 90vw;
    max-width: 500px;
    position: fixed;
    bottom: 2vh;
    left: 50%;
    transform: translate(-50%, -50%);
}

.alert-error {
    padding: 10px;
    border-radius: 5px;
    color: white;
}

.alert-error span {
    font-size: 0.865rem;
}

.alert-error {
    background-color: var(--error);
}

.dialog-backdrop {
    position: fixed;
    background-color: rgba(0, 0, 0, .3);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.dialog {
    padding: 10px;
    background-color: white;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    max-width: 90vw;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip-text {
    position: absolute;
    display: none;
    width: 150px;
    background-color: var(--bg-dark);
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    font-size: 0.87rem;

    z-index: 50;
    left: 50%;
    top: 150%;
    margin-left: -140px;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: -14px;
    left: 88%;
    margin-left: -5px;
    border-width: 7px;
    border-style: solid;
    border-color: transparent transparent var(--bg-dark) transparent;
  }

.tooltip:hover .tooltip-text, .tooltip-text-active {
    display: inline-block;
    opacity: 1;
}

.user-avatar {
    border: solid 1px #dedede;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-avatar img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.user-avatar i {
    font-size: 1.5rem;
    color: var(--text-main);
}

.navbar {
    background-color: #fff;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    box-shadow: 0 1px 1px rgba(22,22,22,0.1), 0 2px 2px rgba(22,22,22,0.1);
    z-index: 30;
    min-height: 4rem;
}

.navbar-brand {
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
}

.navbar-menu {
    background-color: white;
    display: none;
}

.navbar-item,  .navbar-item.has-dropdown {
    color: var( --text-dark);
    cursor: pointer;
}

.navbar-item {
    flex-grow: 0;
    flex-shrink: 0;
}
.navbar-item, .navbar-link {
    line-height: 1.5;
    padding: .5rem .75rem;
    position: relative;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

a.navbar-link, .navbar-link {
    color: var(--text-main);
}
.navbar-link:not(.is-arrowless)::after { border-color: var(--text-light); }

.navbar-active {
    color: var(--text-main);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.navbar-dropdown {
    background-color: white;
    border-top: 2px solid var(--bg-normal);
    font-size: .875rem;
    padding-bottom: .5rem;
    padding-top: .5rem;
}

.navbar-brand .navbar-item {
    color: white;
}

a.navbar-item:hover, a.navbar-link:hover, .navbar-dropdown a.navbar-item:hover, .navbar-link:not(.is-arrowless):hover, .navbar-link:not(.is-arrowless):hover::after {
    color: var(--bg-main);
    border-color: var(--bg-focused);
}

.navbar-burger {
    color: var(--text-main);
    cursor: pointer;
    display: block;
    width: 3.25rem;
    position: relative;
    margin-left: auto;
}

.navbar-burger span {
    background-color: currentColor;
    display: block;
    height: 1px;
    left: calc(50% - 8px);
    position: absolute;
    transform-origin: center;
    transition-duration: 86ms;
    transition-property: background-color,opacity,transform;
    transition-timing-function: ease-out;
    width: 16px;
}

.navbar-burger span:nth-child(1){
    top: calc(50% - 6px);
}
.navbar-burger span:nth-child(2){
    top: calc(50% - 1px);
}
.navbar-burger span:nth-child(3){
    top: calc(50% + 4px);
}
.navbar-divider {
    background-color: #f5f5f5;
    border: none;
    display: none;
    height: 2px;
    margin: .5rem 0;
}
.notification-indicator {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 7px;
    height: 7px;
    background-color: red;
    right: -5px;
    border-radius: 7px;
}

.cookie-opt {
    position: fixed;
    bottom: 5px;
    font-size: 0.8rem;
    display: flex;
    background-color: var(--bg-dark);
    padding: 5px;
    border-radius: 4px;
    max-width: 90vw;
    color: white;
    z-index: 100;
    gap: 5px;
}
.cookie-opt a {color: var(--bg-normal);}

@media all and (min-width: 820px) {
    .navbar {
        display: flex;
        align-items: stretch;
    }
    .navbar-item, .navbar-menu, .navbar-start, .navbar-end {
        display: flex;
        align-items: center;
        padding-right: 1vw;
    }
    .navbar-item.has-dropdown {
        align-items: stretch;
    }
    .navbar-menu {
        flex-grow: 1;
        flex-shrink: 0;
    }
    .navbar-start {
        justify-content: flex-start;
        margin-right: auto;
    }
    .navbar-end {
        justify-content: flex-end;
        margin-left: auto;
    }
    .navbar-burger {display: none;}
    .navbar-dropdown {
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
        box-shadow: 0 8px 8px rgba(10,10,10,.1);
        display: none;
        font-size: .875rem;
        left: 0;
        min-width: 100%;
        position: absolute;
        top: 100%;
        z-index: 20;
    }
    .navbar-dropdown .navbar-item {
        padding: .375rem 1rem;
            padding-right: 1rem;
        white-space: nowrap;
    }
    .navbar-item.is-active .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:focus-within .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown {
        display: block;
    }
    .navbar-dropdown a.navbar-item {
        padding-right: 3rem;
    }
}

@media all and (max-width: 819px) {
    .navbar-brand .navbar-item, .navbar-tabs .navbar-item {
        display: flex;
        align-items: center;
    }
    .navbar-menu {
        padding: .5rem 0;
        -webkit-animation: post-fadein 1000ms; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: post-fadein 1000ms; /* Firefox < 16 */
        -ms-animation: post-fadein 1000ms; /* Internet Explorer */
         -o-animation: post-fadein 1000ms; /* Opera < 12.1 */
            animation: post-fadein 1000ms;
    }
    .navbar-menu.is-active {
        display: block;
    }
    .navbar-item {
        display: block;
    }

    .navbar-item.has-dropdown {
        display: flex;
        flex-direction: column;
    }
}

.footer {
    background-color: var(--bg-normal );
    display: flex;
    justify-content: space-evenly;
}
.footer div {
    min-width: 150px;
    display: flex;
    justify-content: center;
}

.footer-link {
    color: white;
    font-size: 1.2rem
}

.login-form button:hover {
    color: #e6e6e6;
}

.input-invalid, .input-invalid:focus {
    border-bottom: solid 2px var(--error);
}

.overview-holder {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0.5rem;
}

.overview-column {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    max-width: 350px;
    margin: 0px 0.5rem;
}

.input-clean {
    background: none;
    border: none;
    border-bottom: solid 2px var(--bg-light);
    font-size: 1.6rem;
    padding: 5px;
    color: var(--text-dark);
}

.input-clean::placeholder, .input-clean::-moz-placeholder, .input-clean::-webkit-input-placeholder{
    color: #aaa;/*var(--bg-light);*/
}

.input-clean:focus {
    border-bottom: solid 2px var(--bg-focused);
}

.asset-column {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    padding: 0.75rem;
    text-align: center;
}

.default-gap {
    gap: 1vw;
}

@media all and (min-width: 769px) {
    .asset-column {
        width: 60%;
        margin-left: 20%;
    }
}

.tab-menu {
    font-size: 1rem;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    overflow: hidden;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    user-select: none;
}

.tab-menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: solid 1px var(--text-dimmer);
    flex-grow: 1;
    flex-shrink: 0;
}
.tab-menu li {display: block; padding: .5em 0;}
.tab-menu a {
    text-align: center;
    border-bottom-color: solid 2px var(--text-dim);
    color: var(--text-dim);
    padding: .5em 1em;
    margin-bottom: -1px;
    cursor: pointer;

}
.tab-menu a:hover {
    color: var(--bg-focused);
}
.tab-menu li.is-active a {
    border-bottom: solid 2px var(--text-main);
    color: var(--text-main);
}


.search-bar {
    display: flex;
    justify-content: center;
    margin-top: 5vh;
    margin-bottom: 20px;
    max-width: 600px;
    width: 100%;
}

.search-result {
   background-color: #fff;
   z-index: 15;
   width: 100%;
   border-bottom: solid 2px #aaa;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   max-width: 600px;
}

.search-result table {font-size: 0.8rem;}
.search-result td {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--text-dimmer);
    border-width: 0 0 1px;
}

.center-align {display: flex; align-items: center;}

.centered-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.center-aligned-flex-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.post {
    display: flex;
    flex-direction: column;
    /* box-shadow:  0 2px 4px rgba(0, 0, 0, .1), 0 8px 16px rgba(0, 0, 0, .1); */
    -webkit-animation: post-fadein 1000ms; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: post-fadein 1000ms; /* Firefox < 16 */
        -ms-animation: post-fadein 1000ms; /* Internet Explorer */
         -o-animation: post-fadein 1000ms; /* Opera < 12.1 */
            animation: post-fadein 1000ms;
}

@keyframes post-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes post-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes post-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes post-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.post-header {
    grid-row: 1;
    display: flex;
    justify-content: space-between;
    flex: 1;

    gap: 20px;
    align-items: center;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background-color: white;
    text-align: center;
    font-size: 1rem;
    min-height: 16px;
    padding: 3px;
    padding-left: 10px;
    font-weight: bold;
}

.post-review-info {
    background-color: white;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
    flex-wrap: wrap;
    user-select: none;
    border-bottom: solid 1px var(--bg-main);
    padding-bottom: 5px;
}

.post-content-holder {
    grid-row: 2;
    grid-column: 1;
    background-color: #f7f7f7;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    display: flex;
    flex-direction: column;
}

.post-content {
    text-align: left;
    padding: 10px;
    height: 100%;
    background-color: #fff;
    padding-top: 5px;
}

.post-user-holder {
    display: flex;
    border-bottom: solid 1px var(--bg-main);
    padding-bottom: 5px;
}

.post-rating-holder {
    background-color: white;
    display: flex;
    justify-content: flex-end;
}

.post-rating {
    display: flex;
    align-items: center;
}

.post-rating span {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

.post-load-replies {
    width: 100%;
    text-align: center;
    background-color: white;
    margin-top: 3px;
}

.post-reply-holder {
    grid-row: 4;
    grid-column: 1;
    background-color: #f1f1f1;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top: solid 3px var(--bg-main);
    background-color: #fff;
}

.post-link {
    text-decoration: underline;
    color: var(--text-main);
}

.vote-button, .vote-button-small {
    border: none;
    margin: 0px 5px;
    color: #9a9a9a;
    background: none;
}
.vote-button, .vote-button-small span {
    padding: 0;
    cursor: pointer;
    padding: 5px;
}
.vote-button-small {
    font-size: 1.2rem;
}

.reply {
    display: grid;
    grid-template-rows: 30px auto 30px;
    background-color: #fff;
    border-bottom: solid 2px #f6f6f6;
    border-bottom-right-radius: 10px;
    margin-top: 3px;
}

.reply-header {
    grid-row: 1;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
}

.reply-footer {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.pill-button {
    border: none;
    border-radius: 25px;
    padding: 8px;
    padding-right: 30px;
    padding-left: 30px;
    font-size: 1.2rem;
    background-color: var(--bg-normal);
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, .1);
    cursor: pointer;
    white-space: nowrap;
}

.pill-button-small {
    border: none;
    border-radius: 25px;
    padding: 5px;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 0.9rem;
    background-color: var(--bg-normal);
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
}

.pill-button:hover, .pill-button-small:hover {
    background-color: var(--bg-light);
    color: #fff;
}

.pill-button:disabled, .pill-button-small:disabled {
    background-color: var(--text-dim);
    cursor: not-allowed;
}

.icon-button {
    background: none;
    color: var(--text-dim);
    border: none;
    padding: 0;
    height: 15px;
    cursor: pointer;
    font-size: 0.8rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.icon-button:hover {
    color: var(--bg-dark);
}

.grouped-button-left, .grouped-button-center, .grouped-button-right {
    background-color: var(--bg-main);
    border: none;
    padding: 8px;
    color: var(--text-main);
    width: 100px;
    cursor: pointer;
    border: solid 1px var(--bg-normal);
}

.grouped-button-active {
    background-color: #73ab84;
    color: white;
}
.grouped-button-center {
    border-left: none;
    border-right: none;
}
.grouped-button-left {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-right: none;
}
.grouped-button-right {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-left: none;
}

.listing-header {
    width: 100%;
    background-color: white;
    color: var(--text-dark);
    padding: 6px;
    text-align: center;
    font-size: 1.4rem;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    margin-bottom: 7px;
    box-shadow: 0px 2px 4px rgba(100,100,100, 0.2);
    margin-top: 20px;
    max-width: 500px;
}

@media all and (max-width: 800px) {
    .listing-header {width: 100%;}
}

.review-form {
    background-color: #fff;
    border-radius: 4px;
    transition: height 1000ms linear;
    border: solid 1px #dedede;
    width: 100%;
    max-width: 778px;
}

.active-review-holder {
    display: flex;
    background-color: white;
    border-radius: 5px;
    border: 1px solid #dedede;
    border-top-left-radius: 0;
}
.active-review-rating {
    padding: 10px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 5px;
    min-width: 100px;
    text-transform: uppercase;
}
.active-review-rating span {
    font-size: 1.3rem;
    font-weight: bold;
}

.review-listing-holder, .review-listing-holder-small, .review-listing-holder-tiny {
    display: flex;
    border: solid 1px #dedede;
    background-color: white;
    border-radius: 5px;
    height: 52px;
}
.review-listing-rating, .review-listing-rating-small, .review-listing-rating-tiny {
    padding: 10px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    min-width: 100px;
    width: 100%;
    max-width: 105px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}
.review-listing-rating span{
    font-size: 1.1rem;
    font-weight: bold;
}
.review-listing-rating-small span {
    font-size: 0.9rem;
    font-weight: bold;
}

.review-listing-holder-tiny {
    height: 25px;
    margin: 5px;
}

.review-listing-rating-tiny {
    min-width: 60px;
    font-weight: bold;
}

.rating-button {
    border: none;
    flex: 0.2;
    width: 20%;
    padding: 5px;
    font-weight: 600;
    background-color: #f6f6f6;
    color: #686868;
    cursor: pointer;
    -webkit-transition: background-color 300ms linear;
    -moz-transition: background-color 300ms linear;
    -o-transition: background-color 300ms linear;
    -ms-transition: background-color 300ms linear;
    transition: background-color 300ms linear;
}

.review-preview-comment {
    padding: 10px 10px 0px 10px;
    text-align: left;
    white-space: pre-wrap;
}

.user-img-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    overflow: hidden;
    background-position: center center;
    background-size: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .2), 0 4px 8px rgba(0, 0, 0, .2);
}

.home-holder {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 1vw;
    padding: 0.75rem 0;
    gap: 1vw;
}

.home-feed-holder {
    display: flex;
    max-width: 778px;
}

.feed {
    display: flex;
    flex-direction: column;
    gap: 1vw 0;
    width: 100%;
    max-width: 778px;
}

.preview-listing-holder {
    display: flex;
    justify-content: space-between;
    border: solid 1px #dedede;
    background-color: white;
    border-radius: 5px;
    height: 42px;
    margin: 5px;
    width: 300px;
}
.preview-listing-ticker {
    padding: 5px;
    background-color: var(--bg-dark);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.8rem;
    width: 100px;
    max-width: 80px;
}

.preview-listing-ticker a, .preview-listing-name a {
    overflow-x: hidden;
    text-overflow: ellipsis;
}
.preview-listing-ticker a {
    color: white;
}

.preview-listing-name {
    display: flex;
    align-items: center;
    padding: 5px;
    overflow-x: hidden;
    white-space: nowrap;
    flex-grow: 1;
}

.preview-listing-ticker span{
    font-size: 1.1rem;
    font-weight: bold;
}

.link-preview-holder {
    display: flex;
    align-items: center;
    margin-top: 5px;
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #dedede;
    text-align: left;
    background-color: var(--bg-main);
}

.link-preview-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media all and (max-width: 576px) {
    .hide-small-screens {
        display: none !important;
    }
    .cookie-opt {
        flex-wrap: wrap;
        justify-content: flex-end;}
    .feed {gap: 13px 0;}
    .tab-menu {font-size: 0.75rem;}
    .default-gap {
        gap: 0.75rem;
    }
    .asset-column {gap: 0.75rem;}
}

@media all and (min-width: 451px) {
    .insider-trade-indicator {
        max-width: 180px;
    }
    .insider-trade-avg-price {
        flex-direction: column;
        padding: 0 10px;
        border-left: 1px solid #dedede;
    }
}

@media all and (max-width: 450px) {
    .insider-trade-indicator {
        max-width: 100%;
    }
    .insider-trade-avg-price {
        padding: 10px 0;
        border-top: 1px solid #dedede;
    }
}

.checkbox-holder {
    display: inline-flex;
    cursor: pointer;
    vertical-align: middle;
    align-items: center;
    -moz-box-align: center;
    gap: 10px;
}


.checkbox-holder-span {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-holder-span input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-checkmark-background {
    display: flex;
    height: 18px;
    width: 18px;
    border-radius: 5px;
    border: solid 1px var(--text-main);
    justify-content: center;
}

.checkbox-checkmark-background-active {
    background-color: var(--text-main);
}

.checkbox-checkmark {
    position: absolute;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    height: 10px;
    width: 3px;
    top: 3px;
}

.textfield {
    display: inline-flex;
    flex-grow: 1;
    border: solid 1px var(--text-main);
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
    background: #fff;
}

.textfield-large {
    font-size: 1.5rem;
}

input:focus {
    outline: solid 2px var(--text-main)
}

.dropdown {
    position: relative;
    min-width: 100px;
    flex-grow: 1;
}

.dropdown-current {
    cursor: pointer;
    border-bottom: solid 1px var(--text-main);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.dropdown-current label {
    font-size: 0.72rem;
    user-select: none;
    text-align: left;
}

.dropdown-content {
    position: absolute;
    box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12);
    background-color: white;
    border-radius: 5px;
    z-index: 100;
    right: 25px
}

.dropdown-option {
    color: var(--text-main);
    user-select: none;
    cursor: pointer;
    white-space: nowrap;
    padding: 5px 15px;
    -moz-animation: post-fadein 400ms; /* Firefox < 16 */
    -ms-animation: post-fadein 400ms; /* Internet Explorer */
    -o-animation: post-fadein 400ms; /* Opera < 12.1 */
    animation: post-fadein 400ms;
    text-align: left;
}

.dropdown-option-selected {
    background-color: var(--text-dimmer);
}

.dropdown-option:hover {
    background-color: #f6f6f6
}