:root {
    /* Your default theme */
    --background: #ffffff!important;
    --background-hover: #F4F5F7;
    --primary-color: #172B4D;
    --secondary-color: #505F79;
    --body-color: #172B4D;
    --color-h3: #172B4D;
    --border-color: #EBECF0;
    --nav-color: #A5ADBA;
    --nav-color-hover: #172B4D;
    --tag-background: #EBECF0;
    --tag-background-hover: #B3BAC5;
    --tag-color-hover: #202124;
    --nav-background: #ffffff;
    --checkbox-background: #ffffff;
    --checkbox-background-hover: #B3BAC5;
    --checkbox-border: #DFE1E6;
    --checkbox-border-hover: #B3BAC5;
    --checkbox-checked-background: #2684ff;
    --checkbox-checked-border: #2684ff;
    --color-active: #172B4D;
    --button-secondary-background: #EBECF0;
    --button-secondary-border: #EBECF0;
    --button-secondary-color: #172B4D;
    --modal-close-bg-hover: #EBECF0;
    --modal-close-color-hover: #172B4D;
    --background-line-hover: #e8f0fe;
    --tutorial-menu-bg-hover: #8ab4f830;
    --tutorial-menu-color: #505F79;
    --tutorial-menu-color-hover: #172B4D;
    --primary-button-background: #EBECF0;
    --primary-button-border: #EBECF0;
    --primary-button-color: #172B4D;
}

[data-theme='dark'] {
    --background: #202124!important;
    --background-hover: #303134;
    --primary-color: #ffffff;
    --secondary-color: #969ba1;
    --body-color: #ffffff;
    --color-h3: #ffffff;
    --border-color: #3c4043;
    --nav-color: #969ba1;
    --nav-color-hover: #8ab4f8;
    --tag-background: #303134;
    --tag-background-hover: #8ab4f8;
    --tag-color-hover: #202124;
    --nav-background: #303134;
    --checkbox-background: #202124;
    --checkbox-background-hover: #B3BAC5;
    --checkbox-border: #3c4043;
    --checkbox-border-hover: #B3BAC5;
    --checkbox-checked-background: #2684ff;
    --checkbox-checked-border: #2684ff;
    --color-active: #8ab4f8;
    --button-secondary-background: #8ab4f8;
    --button-secondary-border: #8ab4f8;
    --button-secondary-color: #202124;
    --modal-close-bg-hover: #8ab4f8;
    --modal-close-color-hover: #202124;
    --background-line-hover: #303134;
    --primary-button-background: #303134;
    --primary-button-border: #303134;
    --primary-button-color: #ffffff;
}

html,
body {
    padding: 0;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif!important;
    background-color: var(--background);
    color: var(--primary-color);
    font-weight: 500!important;
    font-size: 14px!important;
}

input, select {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif!important;
    background-color: var(--background);
    font-weight: 500;
    font-size: 14px;
}
button {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif!important;
    font-weight: 500;
    font-size: 14px;
}
a {
    color: inherit;
    text-decoration: none;
}

* {
    box-sizing: border-box;
}

table {
    width: 100%;
    margin: 0;
    padding: 0;
    border-collapse: collapse;
}
table, thead {
    padding: 20px;
    border-bottom: 1px solid #2c2d32;
}
table > thead, th {
    text-align: left;
    padding: 10px 0;
    color: #ffffff;
}
table, td {
    text-align: left;
    padding: 15px 0;
}
table > tbody > td, a {
    color: #172B4D;
    text-decoration: none;
}
table > tbody > td, a:hover {
    text-decoration: underline;
}
table > tbody > tr {
    border-bottom: 1px solid #2c2d32;
}
table > tbody > tr:last-child {
    border-bottom: 1px solid #2c2d32;
}
table > tbody > tr:hover {
    background-color: #2f3237;
    box-shadow: #2f3237 -4px 0 0 0, #2f3237 4px 0 0 0;
    border-radius: 3px;
}


.container {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.container input {
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--checkbox-background);
    border: 1px solid var(--checkbox-border);
    border-radius: 5px;
}
.container:hover input ~ .checkmark {
    background-color: var(--checkbox-background-hover);
    border: 1px solid var(--checkbox-border-hover);
}
.container input:checked ~ .checkmark {
    background-color: var(--checkbox-checked-background);
    border: 1px solid var(--checkbox-checked-border);
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.container input:checked ~ .checkmark:after {
    display: block;
}
.container .checkmark:after {
    left: 6px;
    top: 4px;
    width: 3px;
    height: 7px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.__react_component_tooltip {
    background-color: #000000!important;
    opacity: 1!important;
    padding:7px 13px!important;
    height: auto;
    font-size: 12px!important;
    line-height: 12px!important;
}
.__react_component_tooltip.place-right::before {
    display: none!important;
}
.__react_component_tooltip.place-right::after {
    display: none!important;
}
