html {
    box-sizing: border-box;
    font-size: 18px;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}
body {
    background-color: #fff;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f1f4f7;
}

:root {
    --padding1: 16%;
    --side-nav-bg: #e9eafa;
    --main-block-bg: #f1f4f7;
    --accent-color: #e38b33;
    --secondary-color: #3b3786;
    --complete-color: #139154;
    --text-accent-light: #757be6;

    --input-section-bg: #e1e7ec;

    --link-color: #757be6;

    --bg-table-stripe: #e1e7ec;
    --b-table: #e3e3e2;
    --caption: #242423;
}

.accent {
    color: #e38b33;
}
.secondary-color {
    color: var(--secondary-color);
}
.regular-color {
    color: #070b30;
}
.accent-light {
    color: var(--text-accent-light);
}
.bold-blue-accent {
    color: #3b3786;
    font-weight: 600;
}
.hr-dotted {
    border: none;
    border-bottom: 2px dashed #d6d8f8;
    width: 90%;
    margin: 25px auto;
}
.capitalize {
    text-transform: capitalize;
}
.mar1 {
    margin: 1em;
}
.mar2 {
    margin: 2em;
}
.mar-l1 {
    margin-left: 1em;
}
.mar-l2 {
    margin-left: 2em;
}
.mar-l07 {
    margin-left: 0.3em;
}
.mar-r07 {
    margin-right: 0.3em;
}
.mar-r1 {
    margin-right: 1em;
}
.mar-r2 {
    margin-right: 1em;
}
.mar-t05 {
    margin-top: 0.5em;
}
.mar-t1 {
    margin-top: 1em;
}
.mar-t2 {
    margin-top: 2em;
}
.mar-tb05 {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}
.mar-tb1 {
    margin-top: 1em;
    margin-bottom: 1em;
}
.mar-tb2 {
    margin-top: 2em;
    margin-bottom: 2em;
}
.mar-b05 {
    margin-bottom: 0.5em;
}
.mar-b1 {
    margin-bottom: 1em;
}
.mar-b2 {
    margin-bottom: 2em;
}
.mar-lr02 {
    margin-left: 0.2em;
    margin-right: 0.2em;
}
.mar-lr05 {
    margin-left: 0.5em;
    margin-right: 0.5em;
}
.mar-lr1 {
    margin-left: 1em;
    margin-right: 1em;
}
.mar-lr2 {
    margin-left: 2em;
    margin-right: 2em;
}
.w-100 {
    width: 100%;
}

/* SCROLLBAR */
/* Works on Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) transparent;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--secondary-color);
}

/* TABLES CSS START */
table {
    width: 100%;
    background-color: transparent;
    border-collapse: collapse;
}

table.profiles {
    /* width: auto; */
}

th {
    text-align: left;
}

table.profiles .descr {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
}

.dcf-txt-center {
    text-align: center !important;
}

.dcf-txt-left {
    text-align: left !important;
}

.dcf-txt-right {
    text-align: right !important;
}

.dcf-table caption {
    color: var(--caption);
    font-size: 1.13em;
    font-weight: 700;
    padding-bottom: 0.56rem;
}

.dcf-table thead {
    font-size: 0.84em;
    background-color: #d6d8f8;
}

.dcf-table tbody {
    border-bottom: 1px solid var(--b-table);
    border-top: 1px solid var(--b-table);
    font-size: 0.84em;
}

.dcf-table tfoot {
    font-size: 0.84em;
}

.dcf-table tr.selected {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.dcf-table tr.selected td {
    background-color: #3b378641;
}
.dcf-table td,
.dcf-table th {
    font-weight: 400;
    padding-right: 1.78em;
}

.dcf-table-bordered,
.dcf-table-bordered td,
.dcf-table-bordered th {
    border: 1px solid var(--b-table);
}

.dcf-table-bordered td,
.dcf-table-bordered th,
.dcf-table-striped td,
.dcf-table-striped th {
    padding-left: 1em;
    padding-right: 1em;
}

.dcf-table-bordered tr:not(:last-child),
.dcf-table-striped tr:not(:last-child) {
    border-bottom: 1px solid var(--b-table);
}
.dcf-table-striped tbody tr {
    background-color: #fff;
}
.dcf-table-striped tbody tr:nth-of-type(2n) {
    background-color: var(--bg-table-stripe);
}
.dcf-table thead th:first-of-type {
    border-radius: 10px 0 0 0;
}
.dcf-table thead th:last-of-type {
    border-radius: 0 10px 0 0;
}
.dcf-table thead td,
.dcf-table thead th {
    padding-top: 1em;
    padding-bottom: 1em;
    vertical-align: bottom;
}

.dcf-table tbody td,
.dcf-table tbody th,
.dcf-table tfoot td,
.dcf-table tfoot th {
    padding-top: 10px;
    vertical-align: top;
}

.dcf-table tbody.tests-list .bold td {
    font-weight: 600;
}

.dcf-table tbody.tests-list .tests-list__actions a {
    position: relative;
    padding-right: 25px;
}
.dcf-table tbody.tests-list .tests-list__actions a:not(:last-child):before {
    content: '';
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
    background-color: #d6d8f8;
}

.dcf-table tbody td,
.dcf-table tbody th {
    padding-bottom: 10px;
}

.dcf-table-bordered thead th {
    padding-top: 1.33em;
}

.dcf-table tbody .js-sendStatusEmail {
    background-color: #3b3786;
    color: #fff;
    display: inline-flex;
    width: max-content;
    padding: 0.5em 1em;
    border-radius: 0.5rem;
    border: 0;
    font-size: 0.84em;
    cursor: pointer;
    transition: 0.2s ease;
}
.dcf-table tbody .js-sendStatusEmail:hover {
    background-color: #d6d8f8;
    color: #000;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.dcf-wrapper-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-bottom: 1em;
    position: relative;
    right: 50%;
    width: 100vw;
}

.flex {
    display: flex;
}
.flex.a-c {
    align-items: center;
}
.flex.max-content {
    height: max-content;
}
.flex-1 {
    flex: 1;
}

@media only screen and (max-width: 42.09em) {
    .dcf-table-responsive thead {
        clip: rect(0 0 0 0);
        -webkit-clip-path: inset(50%);
        clip-path: inset(50%);
        height: 1px;
        overflow: hidden;
        position: absolute;
        width: 1px;
        white-space: nowrap;
    }
    .dcf-table-responsive tr {
        display: block;
    }
    .dcf-table-responsive td {
        -webkit-column-gap: 3.16vw;
        -moz-column-gap: 3.16vw;
        column-gap: 3.16vw;
        display: grid;
        grid-template-columns: 1fr 2fr;
        text-align: left !important;
    }
    .dcf-table-responsive.dcf-table-bordered,
    .dcf-table-responsive.dcf-table-bordered thead th {
        border-width: 0;
    }
    .dcf-table-responsive.dcf-table-bordered tbody td {
        border-top-width: 0;
    }
    .dcf-table-responsive:not(.dcf-table-bordered) tbody tr {
        padding-bottom: 0.75em;
    }
    .dcf-table-responsive:not(.dcf-table-bordered) tbody td {
        padding-bottom: 0;
    }
    .dcf-table-responsive:not(.dcf-table-bordered):not(.dcf-table-striped) tbody td {
        padding-right: 0;
    }
    .dcf-table-responsive.dcf-table-bordered tbody tr:last-child td:last-child {
        border-bottom-width: 0;
    }
    .dcf-table-responsive tbody td:before {
        content: attr(data-label);
        float: left;
        font-weight: 700;
        padding-right: 1.78em;
    }
}

.dcf-overflow-x-auto {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
}

/* TABLE CSS END */

/* RADIO - CHECKBOX CSS START */
.b-contain *,
.b-contain *::before,
.b-contain *::after {
    box-sizing: content-box !important;
}

.b-contain input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.b-contain span {
    /* line-height: 1.54; */
    /* font-size: 1rem; */
    font-family: inherit;
    user-select: none;
}

.b-contain {
    display: table;
    position: relative;
    padding-left: 1.8rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    height: 1.3rem;
}

.b-contain input[type='checkbox'] ~ .b-input {
    position: absolute;
    top: 0;
    left: 0;
    height: 1rem;
    width: 1rem;
    /* background: rgba(173, 176, 214, 1); */
    transition: background 250ms;
    border: 2px solid rgba(173, 176, 214, 1);
    border-radius: 0.277rem;
    outline: none;
}

.b-contain input[type='radio'] ~ .b-input {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.25rem;
    width: 1.25rem;
    background: rgba(173, 176, 214, 1);
    transition: background 250ms;
    border: 2px solid rgba(173, 176, 214, 1);
    border-radius: 2rem;
    outline: none;
}

.b-contain input[type='checkbox'] ~ .b-input::after {
    content: '';
    position: absolute;
    display: none;
    left: 50%;
    top: 50%;
    width: 0.26rem;
    height: 0.6rem;
    border: solid rgba(255, 255, 255, 1);
    border-width: 0 3px 3px 0;
    transition: background 250ms;
    transform: rotate(45deg) translate(-100%, -30%);
}

.b-contain input[type='radio'] ~ .b-input::after {
    content: '';
    position: absolute;
    display: none;
    left: 0.25rem;
    top: 0.25rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 1);
    transition: background 250ms;
}

.b-contain input:disabled ~ .b-input::after {
    border-color: rgba(135, 149, 161, 1);
}

.b-contain input:checked ~ .b-input::after {
    display: block;
}

.b-contain:hover input ~ .b-input,
.b-contain input:focus ~ .b-input {
    background: rgb(231, 238, 243);
}

.b-contain input:focus ~ .b-input {
    box-shadow: 0 0 0 2px rgba(52, 144, 220, 0.5);
}

.b-contain input:checked ~ .b-input {
    background: #757be68c;
    border-color: #757be6;
}

.b-contain input[type='checkbox']:disabled ~ .b-input {
    background: rgba(241, 245, 248, 1);
    border-color: rgba(184, 194, 204, 1);
    opacity: 0.6;
    cursor: not-allowed;
}

.b-contain input[type='radio']:disabled ~ .b-input {
    background: rgba(241, 245, 248, 1);
    border-color: rgba(184, 194, 204, 1);
    opacity: 0.6;
    cursor: not-allowed;
}

.b-contain input[type='radio']:disabled ~ .b-input::after {
    background: rgba(135, 149, 161, 1);
}

.b-contain input:checked:focus ~ .b-input,
.b-contain:hover input:not([disabled]):checked ~ .b-input {
    background: #757be6;
    border-color: #757be6;
}

.b-contain .b-input::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    margin-left: -0.85rem;
    margin-top: -0.85rem;
    background: #757be6;
    border-radius: 2rem;
    opacity: 0.6;
    z-index: 99999;
    transform: scale(0);
}
/* 
@keyframes b-ripple {
	0% {
		transform: scale(0);
	}

	20% {
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(1);
  	}
}

@keyframes b-ripple-duplicate {
	0% {
		transform: scale(0);
	}

	30% {
		transform: scale(1);
	}

	60% {
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(1);
  	}
} */

/* .b-contain input + .b-input::before {
	animation: b-ripple 250ms ease-out;
}

.b-contain input:checked + .b-input::before {
	animation-name: b-ripple-duplicate;
} */

.b-contain .b-input::before {
    visibility: hidden;
}

.b-contain input:focus + .b-input::before {
    visibility: visible;
}

.b-contain:first-child .b-input::before {
    visibility: hidden;
}
/* RADIO - CHECKBOX CSS END */
