@font-face {
	font-family: 'Myriad Pro';
	src: url('/assets/fonts/MyriadPro-SemiboldCond.eot');
	src: local('Myriad Pro Semibold Condensed'), local('MyriadPro-SemiboldCond'),
		url('/assets/fonts/MyriadPro-SemiboldCond.eot?#iefix') format('embedded-opentype'),
		url('/assets/fonts/MyriadPro-SemiboldCond.woff') format('woff'),
		url('/assets/fonts/MyriadPro-SemiboldCond.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}
@font-face {
    font-family: 'Ubuntu';
    src: url('/assets/fonts/Ubuntu-Regular.eot');
    src: local('Ubuntu Regular'), local('Ubuntu-Regular'),
        url('/assets/fonts/Ubuntu-Regular.eot?#iefix') format('embedded-opentype'),
        url('/assets/fonts/Ubuntu-Regular.woff') format('woff'),
        url('/assets/fonts/Ubuntu-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Ubuntu';
    src: url('/assets/fonts/Ubuntu-Light.eot');
    src: local('Ubuntu Light'), local('Ubuntu-Light'),
        url('/assets/fonts/Ubuntu-Light.eot?#iefix') format('embedded-opentype'),
        url('/assets/fonts/Ubuntu-Light.woff') format('woff'),
        url('/assets/fonts/Ubuntu-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Ubuntu';
    src: url('/assets/fonts/Ubuntu-Bold.eot');
    src: local('Ubuntu Bold'), local('Ubuntu-Bold'),
        url('/assets/fonts/Ubuntu-Bold.eot?#iefix') format('embedded-opentype'),
        url('/assets/fonts/Ubuntu-Bold.woff') format('woff'),
        url('/assets/fonts/Ubuntu-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
*, *:after, *:before {
    box-sizing: border-box;
}
html {
    font-size: 100%;
    margin: 0 !important;
    height: 100%;
}
body {
    position: relative;
    background: #F9F9F9;
    min-width: 320px;
    margin: 0;
    font-family: 'Ubuntu';
    color: #000;
    min-height: 100%;
}
*::selection{
    background: #ff8500;
    color: #000;
}
*::-moz-selection {
    background: #ff8500;
    color: #000;
}
img::selection {
    background: transparent;
}
img::-moz-selection {
    background: transparent;
}
.overflowed {
    overflow: hidden !important;
}
.wrapper {
    margin: 0 auto;
    overflow: hidden;
    height: 100%;
}
.wrapper.blurred {
    filter: blur(10px);
    overflow: hidden;
}
.hidden {
    background: rgba(255,255,255,1);
    opacity: 0;
    transform: scale(0);
    transition: .7s ease-out;
}
.section {
    position: relative;
}
.section__wrap {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}
.section__title {
    margin-bottom: 2rem;
    font-size: 1.625rem;
    font-weight: 600;
    font-family: 'Myriad Pro';
    text-align: center;
    text-transform: uppercase;
    color: #3a4e63;
}
.section__title span {
    position: relative;
    display: inline-block;
    padding: 0 2rem;
}
.section__title span::before {
    content: '';
    position: absolute;
    /*top: calc(50% - .25rem);*/
    top: .75rem;
    left: 0;
    background: url(/assets/img/element-lines.svg) no-repeat center center / contain;
    width: 1.625rem;
    height: .5rem;
}
.section__title span::after {
    content: '';
    position: absolute;
    top: .75rem;
    right: 0;
    background: url(/assets/img/element-lines.svg) no-repeat center center / contain;
    width: 1.625rem;
    height: .5rem;
}
.container {
    position: relative;
    width: 100%;
    max-width: calc(1200px + 4em);
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
}
.row {
    position: relative;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
}
.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    /* height: 100%; */
}
.row-cols-auto > * {
    flex: 0 0 auto;
    width: auto;
}
.row-cols-1 > * {
    flex: 0 0 auto;
    width: 100%;
}
.row-cols-2 > * {
    flex: 0 0 auto;
    width: 50%;
}
.row-cols-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
}
.row-cols-4 > * {
    flex: 0 0 auto;
    width: 25%;
}
.row-cols-5 > * {
    flex: 0 0 auto;
    width: 20%;
}
.row-cols-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
}
.col {
    position: relative;
    flex: 1 0 0%;
}
.col-auto {
    flex: 0 0 auto;
    width: auto;
}
.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}
.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}
.col-3 {
    flex: 0 0 auto;
    width: 25%;
}
.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}
.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}
.col-6 {
    flex: 0 0 auto;
    width: 50%;
}
.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}
.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}
.col-9 {
    flex: 0 0 auto;
    width: 75%;
}
.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}
.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}
.col-12 {
    flex: 0 0 auto;
    width: 100%;
}
.clearfix::after {
    display: block;
    clear: both;
    content: "";
}
.flex-box {
    display: flex;
}
.flex-box__right {
    justify-content: flex-end;
}
.flex-box__center {
    align-items: center;
}
.vertical-center {
    flex-direction: column;
    justify-content: center;
}
.vertical-bottom {
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}
.horizontal-center {
    align-items: center;
}
.horizontal-end {
    align-items: flex-end;
}
.grecaptcha-badge {
    visibility: hidden;
    opacity: 0;
}
.marked {
    font-weight: 700;
}
.header .container {
    padding-top: .5rem;
    padding-bottom: 1rem;
}
.logo {
    background: url(/assets/img/logo.svg) no-repeat center center / contain;
    display: block;
    width: 25em;
    height: 100%;
}
.login {
    width: 10rem;
    margin: 0 auto;
}
.login__title {
    font-family: 'Myriad Pro';
    font-size: 1.25rem;
    margin-bottom: .5rem;
}
.login__form {

}
.login__form__input {
    width: 10rem;
    margin-bottom: .5rem;
}
.login__form__input input {
    width: 100%;
    padding: .2rem .75rem;
    border: 2px solid #8c4c50;
    font-size: .8125rem;
}
.login__form__button {
    background: #7c3236;
    width: 10rem;
    padding: .2rem .75rem;
    border: 4px solid #8c4c50;
    font-size: .75rem;
    color: #fff;
    cursor: pointer;
}
.header__contacts {
    height: 100%;
}

.auth-block  {
    width: 200px;
    
    display: block;
    position: absolute;
    top: 10px;
}

.header__contacts__auth {
    margin-bottom: .5rem;
    font-size: 1.125em;
    font-family: 'Myriad Pro';
    color: #66819b;
    
}
.header__contacts__auth a{
    text-decoration:underline;
}
.header__contacts__phone {
    margin-bottom: .5rem;
    font-size: 2.125em;
    font-family: 'Myriad Pro';
    color: #66819b;
    text-align: right;
}
.header__contacts__phone span {
    display: block;
    margin-top: -.5rem;
    font-size: .8125rem;
    font-family: 'Ubuntu';
    color: #000;
}
.header__contacts__email {
    font-size: .8125rem;
    color: #66819b;
    text-align: right;
}
.menu_top {
    background: #7c3236;
    border: 4px solid #8c4c50;
    color: #fff;
}
.menu_top .container {
    padding-top: 0;
    padding-bottom: 0;
}
.menu_top__list {
    display: flex;
    justify-content: center;
}
.menu_top__list__item {
    position: relative;
    padding: 1.25em 4rem;
    font-size: .8125em;
    font-weight: bold;
    text-transform: uppercase;
}
.menu_top__list__item::after {
    content: '';
    position: absolute;
    top: calc(50% - .75rem);
    /*right: -55%;*/
    right: 0;
    background: #a07073;
    width: 1px;
    height: 1.5rem;
}
.menu_top__list__item:last-child:after {
    content: none;
}
.courses {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 4rem;
}
.courses__list {
    width: 100%;
}
.courses__list__item {
    display: flex;
    background: #eceff3;
    width: 100%;
    margin-bottom: 2.5rem;
    padding: 1.25rem;
    border-top: 2px solid #66819b;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, .2);
}
.courses__list__item:last-child {
    margin-bottom: 0;
}
.courses__list__item__image {
    width: 28%;
}
.courses__list__item__image img {
    display: block;
    width: 100%;
}
.courses__list__item__description {
    position: relative;
    width: 72%;
    padding-bottom: 2.1875rem;
    padding-left: 1.25rem;
}
.courses__list__item__description__title {
    margin-bottom: .75rem;
    font-family: 'Myriad Pro';
    font-size: 1.125em;
    text-transform: uppercase;
}
.courses__list__item__description__text p {
    font-size: .875em;
}
.courses__list__item__description__text .sub-title {
    margin-bottom: .75rem;
    font-family: 'Myriad Pro';
    font-size: 1.125em;
    text-transform: uppercase;
}
.courses__list__item__description__controls {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
}
.courses__list__item__description__button:first-child {
    margin-right: 1rem;
}
.button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #7c3236;
    height: 2.1875rem;
    padding: 0 1.5rem;
    border: 4px solid #8c4c50;
    font-size: .75rem;
    color: #fff;
    text-transform: uppercase;
}
.button_alt {
    background: #66819b;
    border-color: #7a92a9;
}
.menu_bottom {
    background: #66819b;
    border: 4px solid #7a92a9;
    color: #fff;
}
/* .button_main_test {
    background: #66819b;
    border: 4px solid #7a92a9;
    color: lime;
}
.button_parent_test {
    background: #66819b;
    border: 4px solid #7a92a9;
    color: lime;
    width:262px;
}
.lectures__list__item  .button_main_test {
    width: 182px;
} */
.button_main_test {
    width: 12rem;
    padding: 0;
}
.button_parent_test {
    width: 20rem;
}


.menu_bottom .container {
    padding-top: 0;
    padding-bottom: 0;
}
.menu_bottom__list {
    display: flex;
    justify-content: center;
}
.menu_bottom__list__item {
    position: relative;
    padding: 1.25em 4rem;
    font-size: .8125em;
    font-weight: bold;
    text-transform: uppercase;
}
.menu_bottom__list__item::after {
    content: '';
    position: absolute;
    top: calc(50% - .75rem);
    right: 0;
    background: #fff;
    width: 1px;
    height: 1.5rem;
}
.menu_bottom__list__item:last-child:after {
    content: none;
}
.bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.bottom.blurred {
    filter: blur(10px);
    overflow: hidden;
}
.footer {
    background: rgb(236,239,243);
    background: -moz-linear-gradient(90deg, rgba(236,239,243,1) 0%, rgba(236,239,243,1) 50%, rgba(186,96,97,1) 50%, rgba(186,96,97,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(236,239,243,1) 0%, rgba(236,239,243,1) 50%, rgba(186,96,97,1) 50%, rgba(186,96,97,1) 100%);
    background: linear-gradient(90deg, rgba(236,239,243,1) 0%, rgba(236,239,243,1) 50%, rgba(186,96,97,1) 50%, rgba(186,96,97,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eceff3",endColorstr="#ba6061",GradientType=1); 
}
.footer .container {
    background: url(/assets/img/background-footer.svg) no-repeat center center / cover;
}
.footer__wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.footer__address {
    position: relative;
    font-size: .8125em;
}
.footer__address::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1rem;
    background: #66819b;
    width: 3px;
    height: 100%;
}
.footer__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(/assets/img/background-logo.svg) no-repeat center center / contain;
    width: 16.25em;
    height: 3.625em;
    margin: 0 10%;
}
.footer__logo span {
    background: url(/assets/img/logo.svg) no-repeat center center / contain;
    width: 72%;
    height: 79%;
}
.footer__contacts {
    height: 100%;
}
.footer__contacts__phone {
    margin-bottom: .5rem;
    font-size: 2.125em;
    font-family: 'Myriad Pro';
    color: #66819b;
    text-align: right;
}
.footer__contacts__phone span {
    display: block;
    margin-top: -.5rem;
    font-size: .8125rem;
    font-family: 'Ubuntu';
    color: #000;
}
.footer__contacts__email {
    font-size: .8125rem;
    color: #66819b;
    text-align: right;
}
.lectures {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 4rem;
}
.lectures__title {
    margin-bottom: 1rem;

    color: #3a4e63;
}
.lectures__title p {
    font-family: 'Myriad Pro';
    font-size: 1.125em;
}
.lectures__title .sub-title {
    padding: 0 2rem;
    margin-bottom: 2rem;
    font-size: 1.625rem;
    font-weight: 600;
    font-family: 'Myriad Pro';
    text-align: center;
    text-transform: uppercase;
    color: #3a4e63;
}
.lectures__text {
    margin-bottom: 1rem;
    font-size: .875em;
    color: #3a4e63;
}
.lectures__text p {
    margin-bottom: 1rem;
    font-size: 1rem;
}
.lectures__text ul {
    margin-bottom: 1rem;
    padding-left: 1rem;
    font-size: 1rem;
}
.lectures__text ul li {
    margin-bottom: .5rem;
}
.lectures__text ol {
    margin-bottom: 1rem;
    padding-left: 1rem;
    font-size: 1rem;
}
.lectures__text ol li {
    margin-bottom: .5rem;
}
.image-center {
margin-bottom: 1rem;
text-align: center;
}
.image-right {
float: right;
margin: 0 0 1rem 1rem;
}
.image-left {
float: left;
margin: 0 1rem 1rem 0;
}
.clear {
clear: both;
}
.lecture-table {
    margin-bottom: 2rem;
    border-collapse: collapse;
    font-size: .8125em;
    table-layout: fixed;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, .2);
width: 100%;
}
.lecture-table th {
    background: #7c3236;
    padding: 1rem;
    border: 2px solid #66819b;
    font-weight: bold;
    color: #fff;
}
.lecture-table th:nth-child(1) {
    text-align: center;
}
.lecture-table th:nth-child(3) {
    width: 200px;
}
.lecture-table td {
    padding: 1rem;
    border: 2px solid #66819b;
    font-weight: 300;
}
.lecture-table.with-image td:first-child {
    padding: 0;
width: 250px;
}
.lecture-table img {
width: 100%;
}
.lecture-table p {
    margin-bottom: 1rem;
    font-size: 1rem;
}
.lectures__list {

}


.lectures__list__item {
    width: 100%;
    margin-bottom: 2rem;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, .2);
}
/*#id272 .button {
    display: none;
}*/
.lectures__list__item__head {
    background: #66819b;
    border-top: 3px solid #66819b;
    transition: .25s ease;
}
.lectures__list__item__head:hover {
    background: #7c3236;
}
.lectures__list__item.active .lectures__list__item__head {
    background: #7c3236;
}
.lectures__list__item__head__title {
    display: block;
    padding: 1.125rem 1.1rem;
    font-family: 'Myriad Pro';
    font-size: 1.125em;
    color: #fff;
    text-transform: uppercase;
}
.lectures__list__item__body {
    display: none;
    background: #eceff3;
    padding: 1.125rem 1.1rem;
}
.lectures__list__item.active .lectures__list__item__body {
    display: block;
}
.lectures__list__item__body__title {
    margin-bottom: 1rem;
    font-size: 1.125em;
    font-weight: bold;
    text-transform: uppercase;
}
.lectures__list__item__body__text {
    font-size: .875em;
    margin-bottom: 1.5rem;
}
.test {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 4rem;
}
.test__count {
    margin-bottom: 1rem;
    font-size: 1.125em;
    font-family: 'Myriad Pro';
    color: #3a4e63;
}
.test__count__current {

}
.test__count__total {

}
.test__question {
    width: 100%;
    margin-bottom: 2rem;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, .2);
}
.test__question__head {
    background: #7c3236;
    border-top: 3px solid #66819b;
    padding: 1.125rem 1.1rem;
    font-family: 'Myriad Pro';
    font-size: 1.125em;
    color: #fff;
    text-transform: uppercase;
}
.test__question__body {
    background: #eceff3;
    padding: 1.125rem 1.1rem;
}
.test__question__body__list {
    margin-bottom: 1.125rem;
}
.test__question__body__list__item {
    position: relative;
    margin-bottom: 1rem;
}
.test__question__body__list__item:last-child {
    margin-bottom: 0;
}
.test__question__body__list__item__radio {
    visibility: hidden;
    position: absolute;
    bottom: 0;
    right: 0;
}
.test__question__body__list__item__label {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding-left: 2em;
    font-size: .8125em;
    cursor: pointer;
    user-select: none;
}
.test__question__body__list__item__label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: transparent;
    width: .9375rem;
    height: .9375rem;
    outline: 2px solid #3b4e63;
    border-radius: 100%;
}
.test__question__body__list__item__radio:checked + .test__question__body__list__item__label {
    color: #7d3237;
    font-weight: bold;
}
.test__question__body__list__item__radio:checked + .test__question__body__list__item__label::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: #7d3237;
    width: .9375rem;
    height: .9375rem;
    outline: 2px solid #7d3237;
    border-radius: 100%;
}
.test__question__body__controls {
    display: flex;
    justify-content: space-between;
}
.result {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 4rem;
}
.result__title {
    margin-bottom: 1rem;
    font-family: 'Myriad Pro';
    font-size: 1.125em;
    color: #3a4e63;
}
.result__text {
    margin-bottom: 2rem;
    font-size: .8125em;
    font-weight: 300;
}
.result__text p {
    margin-bottom: .5rem;
}
.result__text p:last-child {
    margin-bottom: 0;
}
.result__table {
    margin-bottom: 2rem;
    border-collapse: collapse;
    font-size: .8125em;
    table-layout: fixed;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, .2);
}
.result__table th {
    background: #7c3236;
    padding: 1rem;
    border: 2px solid #66819b;
    font-weight: bold;
    color: #fff;
}
.result__table th:nth-child(1) {
    text-align: center;
}
.result__table th:nth-child(3) {
    width: 200px;
}
.result__table td {
    padding: 1rem;
    border: 2px solid #66819b;
    font-weight: 300;
}
.result__table td:nth-child(1) {
    text-align: center;
}
.result__table td:nth-child(2) {
    line-height: 1.5rem;
}
.result__table td:nth-child(4) {
    width: 200px;
    font-weight: bold;
    color: #7c3236;
}
.result__controls {
    display: flex;
    justify-content: space-between;
}
.cookie-agreement {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 1rem;
	background: gray;
	color: #fff;
	flex-direction: column;
	align-items: flex-start;
	z-index: 10000;
}
.cookie-agreement p {
	font-size: .75rem;
	margin-bottom: .5rem;
}
.cookie-agreement .button {
    width: auto;
	height: 2rem;
    padding: 0 1rem;
	font-size: .7rem;
	border-radius: .5rem;
}

.ds-none  {
    display:none;
}
.js-cont-answered,.js-count-questions  {
    font-weight:bold;
}
.cont-auth,.cont-questions  {
    
}
.cont-auth p  {
    margin-top:0px;
    margin-bottom:1px;
}
.cont-auth-info  {
    position:absolute;
    display:block;
    z-index:100;
    font-size:large;
    font-weight:bold;
}

/* - - - - - - - -- - - -- - - -- - - -- - - -- - - -- - - -- - - --  */
.timer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer__items {
  display: flex;
  font-size: 48px;
}

.timer__item {
  position: relative;
  min-width: 60px;
  margin-left: 10px;
  margin-right: 10px;
  padding-bottom: 15px;
  text-align: center;
}

.timer__item::before {
  content: attr(data-title);
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  font-size: 14px;
}

.timer__item:not(:last-child)::after {
  content: ':';
  position: absolute;
  right: -15px;
}

.timer__result {
  text-align: center;
  padding: 10px;
  color: #9c27b0;
  font-weight: bold;
}

.cont-users table {
    margin-bottom:20px;
    margin-top:4px;
    width:100%;
    border-collapse: collapse;
}
.cont-users table tr td, .cont-users table tr th{
    padding:4px;
    border:2px solid #7a92a9;
    
}
/*.cont-users a{
    color: blue;
    text-decoration: underline;
}*/
.shadow {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.5);
    width: 100%;
    height: 100%;
    z-index: 4;
}
.mod_wnd  {
    position: fixed;
    top: calc(50% - 45vh);
    left: calc(50% - 45%);
    padding: 1.5em;
    background-color: #fff;
    width: 90%;
    height: 90vh;
    z-index: 5;
    text-align: center;
    overflow-y: scroll;
}
.shadow_wnd  {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    z-index:5;
    cursor: pointer;
}
#close_wnd {
    position: absolute;
    width: 20px;
    height: 26px;
    top: 5px;
    right: 12px;
    cursor: pointer;
    font-size: x-large;
    color: #8c4c50;
    font-weight: bold;
    border: 1px solid #8c4c50;
    border-radius: 5px;
}

.add-new-user {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #7c3236;
    width: 20rem;
    height: 2.1875rem;
    border: 4px solid #8c4c50;
    font-size: .75rem;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
}
.users {
    margin-bottom: 2rem;
    border-collapse: collapse;
    font-size: .8125em;
    table-layout: fixed;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, .2);
}
.users th {
    background: #7c3236;
    padding: 1rem;
    border: 2px solid #66819b;
    font-weight: bold;
    color: #fff;
}
.users th:nth-child(1) {
    text-align: center;
}
.users th:nth-child(3) {
    width: 200px;
}
.users td {
    padding: 1rem;
    border: 2px solid #66819b;
    font-weight: 300;
}
.users td:nth-child(1) {
    text-align: center;
}
.users td:nth-child(2) {
    line-height: 1.5rem;
}
.users td:nth-child(4) {
    width: 200px;
    font-weight: bold;
    color: #7c3236;
}
.users a {
    font-weight: bold;
    text-decoration: underline;
}
.user {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    background: #ced7df;
    padding: 2rem;
}
.user__input {
    width: 30%;
    margin-right: 4.5%;
    margin-bottom: 1rem;
}
.user__input:nth-child(3n) {
    margin-right: 0;
}
.user__input__label {
    display: block;
    margin-bottom: .5rem;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
}
.user__input input {
    width: 100%;
    padding: .75rem .75rem;
    border: 2px solid #8c4c50;
    font-size: 1rem;
}
.user__button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #7c3236;
    height: 2.1875rem;
    padding: 0 1.5rem;
    border: 4px solid #8c4c50;
    font-size: .75rem;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
}
.user__categories {
    width: 100%;
}
.user__categories__text {
    font-weight: bold;
    margin-bottom: 1rem;
}
.user__categories__radio {
    visibility: hidden;
    position: absolute;
    bottom: 0;
    right: 0;
}
.user__categories__label {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
    padding-left: 2em;
    font-size: .8125em;
    cursor: pointer;
    user-select: none;
}
.user__categories__label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: transparent;
    width: .9375rem;
    height: .9375rem;
    outline: 2px solid #3b4e63;
    border-radius: 100%;
}
.user__categories__radio:checked + .user__categories__label {
    color: #7d3237;
    font-weight: bold;
}
.user__categories__radio:checked + .user__categories__label::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: #7d3237;
    width: .9375rem;
    height: .9375rem;
    outline: 2px solid #7d3237;
    border-radius: 100%;
}

