* {
	box-sizing: border-box
}
body {
    margin: 0;
    font-family: "Alexandria", serif;
    color: #fff;
    padding: 0;
    width: 100%;
    overflow: hidden;
    background-color: #0a377f;
    height: calc(100vh - 42px);
    user-select: none;
}
.wrap {
    padding: 50px;
    float: left;
    width: 100%;
    background-color: #0a377f;
}

.card {
	background: var(--card);
	border: 1px solid #22304a;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .25)
}

.pad {
	padding: 24px
}

h1 {
    margin: 0 0 15px;
    font-size: 32px;
}

p.lead {
    margin: 0 0 20px;
    color: #333;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 300;
}
  .circle {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a377f;
    font-size: 5em;
    font-weight: bold;
    cursor: grab;
    user-select: none;
        z-index: 9;
}
label {
    display: block;
    margin: 15px 0px 6px;
    font-weight: 300;
    font-size: 13px;
    float: left;
    width: 100%;
    color: #666;
}
input[type=email], input[type=text] {
    width: 100%;
    padding: 13px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #f7f7f7;
    color: #333;
    font-size: 15px;
}

button {
    appearance: none;
    border: none;
    background: #0a377f;
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    font-family: "Alexandria", serif;
}
button[disabled] {
	opacity: .6;
	cursor: not-allowed
}

.hidden {
	display: none
}

.q {
    border-top: 0px solid #ddd;
    margin-top: 25px;
    background: #f7f7f7;
    padding: 20px 20px;
    border-radius: 10px;
}

.q h3 {
    margin: 0 0 15px;
    font-size: 20px;
    font-weight: 500;
}
.copyright {
    font-weight: 200;
    font-size: 11px;
    padding: 15px 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0a306c;
}
.copyright a {
    float: right;
    color: #fff;
}
.choices {
	display: grid;
	gap: 10px;
	margin-top: 6px
}
.resp-table-holder {
    float: left;
    width: 100%;
    overflow: hidden;
    overflow-x: auto;
    margin: 0 0 20px;
}

span.wrong, span.right {
    background: #e61b1b;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin: 0 13px;
    float: none;
    border-radius: 100px;
    background-image: url(../images/wrong.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 17px;
}
.choice input {
    accent-color: #ff9800;
    margin: 0;
    width: 20px;
    height: 20px;
    min-width: 20px;
}
span.right {
    background-color: #2ca42c;
    background-image: url(../images/check.svg);
}
.quiz-start {
    width: 490px;
    margin: 0px auto;
    box-shadow: 0 0 40px rgba(0,0,0,0.1);
    border-radius: 20px;
    padding: 40px;
    background-color: #fff;
    color: #333;
    overflow: hidden;
}
.content-box {
    z-index: 991;
    position: relative;
}
.quiz-container, .result-container {
    margin: 0px 70px 70px;
    box-shadow: 0 0 40px rgba(0,0,0,0.1);
    border-radius: 20px;
    padding: 40px;
    background-color: #fff;
    color: #333;
    float: left;
    width: auto;
    position: fixed;
    top: 40px;
    left: 360px;
    bottom: 90px;
    overflow: hidden;
    overflow-y: auto;
    right: 100px;
    margin: 0;
    z-index: 99;
}
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track-piece {
    background: transparent;
    border-right: 0 solid #ddd;
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .1);
    border-radius: 10px;
}
.choice {
    border: 0px solid #ddd;
    border-radius: 12px;
    padding: 0px;
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 5px 0 0 0;
    color: #000;
    font-size: 15px;
}
.choice input {
	accent-color: #3aa0ff
}
.result-container h2 {
    margin: 0;
    font-size: 30px;
    color: #aaa;
}
p.score {
    font-weight: 400;
    margin: 15px 0 5px;
    float: left;
}
p.score span.tag.ok {
    color: green;
}
p.score span.tag.bad {
    color: rgb(230, 26, 26);
}
p.score span {
    float: left;
    width: 100%;
    background: transparent;
    text-align: left;
    padding: 5px 0;
    font-size: 50px;
    color: #0a367c;
    line-height: 1;
}
.actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    float: left;
    width: 100%;
}
.score {
	font-weight: 800
}

.tag {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700
}

.ok {
	background: rgba(23, 178, 106, .15);
	color: #bff3d7
}

.bad {
    background: rgb(255 153 8);
    color: #000;
    padding: 5px 10px;
}
table {
	border-collapse: collapse;
	width: 100%;
	margin-top: 12px
}

th, td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
    font-size: 14px;
}

th {
    background: #f6f6f6;
    border-bottom: 3px solid #0a377f;
    color: #0a377f;
}

.footer {
    color: #aaa;
    font-size: 13px;
    margin-top: 10px;
    font-weight: 300;
}

header {
	float: left;
	width: 100%;
	position: sticky;
	top: 0;
	background: #0a377f;
}

header img {
    height: 100px;
    float: left;
    margin: 45px;
}