@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap');
body, html {
    margin: 0px;
    font-family: "Open Sans", Helvetica, sans-serif;
    height: 100%;
    font-size: 20px;
}
select {
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 20px;
    padding: 6px;
}
#test_msg_out {
	width: 700px;
	margin: 0px auto;
	text-align: center;
}
.chevron {
    position: fixed;
    width: 100px;
    text-align: center;
    transform: translate(-50%) rotate(90deg);
    left: calc(50% - 10px);
    font-size: 60px;
    color: #000000;
    cursor: pointer;
}
.hide {
    display: none;
}
.chevron:hover {
    color: #ffcd68;
}
.all_content {
    min-height: 100vh; /* will cover the 100% of viewport */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}
.all_content a {
    color: #df9500;
    text-decoration: none;
}
.all_content a:hover {
    color: #df9500;
    text-decoration: underline;
}
.headandtest {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.header {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header_content {
    width: 95%;
    margin: 0px auto;
    height: 80px;
    display: flex;
    flex-direction: row;
}
.logo {
    width: 25%;
    position: relative;
    height: 80px;
}
.logo img {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%);
}
.heading {
    width: 50%;
    line-height: 80px;
    color: #ffffff;
    text-align: center;
    font-size: 27px;
}
.rightcol {
    width: 25%;
}
.heading h1 {
    font-size: 34px;
    color: #2C2C2C;
    margin: 0px;
}
.content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align: center;
    overflow: hidden;
}
.test {
    display: flex;
	flex-direction: row;
	justify-content: center;
	margin-top: 30px;
	position: relative;
}
.introcircle {
    height: 500px;
    width: 500px;
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, #006699, #1b90cb) border-box;
    border: 20px solid transparent;
    border-radius: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: changeBorder 4s infinite;
    -webkit-box-shadow: 0px 0px 17px 3px rgba(184, 184, 184, 1);
    -moz-box-shadow: 0px 0px 17px 3px rgba(184, 184, 184, 1);
    box-shadow: 0px 0px 17px 3px rgba(184, 184, 184, 1);
}
@keyframes changeBorder {
    0% {
        border: 20px solid transparent;
    }
    25% {
        border: 30px solid transparent;
    }
    50% {
        border: 20px solid transparent;
    }
    75% {
        border: 30px solid transparent;
    }
    100% {
        border: 20px solid transparent;
    }
}
#tststart {
    display: none;
}
.testlocdiv {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
#testlocations {
    display: none;
}
.start_btn {
    padding: 15px;
    text-align: center;
    background: #ffcd68;
    border-radius: 10px;
    width: 60%;
    max-width: 250px;
    font-size: 20px;
    margin: 0px auto;
    cursor: pointer;
    text-decoration: none;
    top: 0px;
    transition: top .2s;
    position: relative;
    text-transform: uppercase;
}
.start_btn:hover {
    top: -5px;
    -webkit-box-shadow: 0px 0px 3px 0px #C4C4C4;
    -moz-box-shadow: 0px 0px 3px 0px #C4C4C4;
    box-shadow: 0px 0px 3px 0px #C4C4C4;
}
.needbcs {
    display: none;
    max-width: 400px;
    font-size: 16px;
    margin: 0px auto;
    text-align: center;
}
.nbcshead {
    color: #EB4649;
    font-size: 20px;
    font-weight: bold;
}
.d_tc {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    height: 0px;
    width: 0px;
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, #006699, #1b90cb) border-box;
    border: 20px solid transparent;
    border-radius: 500px;
    display: none;
    flex-direction: column;
    justify-content: center;
    animation: changeBorderTc 4s infinite;
    -webkit-box-shadow: 0px 0px 17px 3px rgba(184, 184, 184, 1);
    -moz-box-shadow: 0px 0px 17px 3px rgba(184, 184, 184, 1);
    box-shadow: 0px 0px 17px 3px rgba(184, 184, 184, 1);
}
.u_tc {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    height: 0px;
    width: 0px;
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, #006699, #1b90cb) border-box;
    border: 20px solid transparent;
    border-radius: 500px;
    display: none;
    flex-direction: column;
    justify-content: center;
    animation: changeBorderTc 4s infinite;
    -webkit-box-shadow: 0px 0px 17px 3px rgba(184, 184, 184, 1);
    -moz-box-shadow: 0px 0px 17px 3px rgba(184, 184, 184, 1);
    box-shadow: 0px 0px 17px 3px rgba(184, 184, 184, 1);
}
@keyframes changeBorderTc {
    0% {
        border: 20px solid transparent;
    }
    25% {
        border: 25px solid transparent;
    }
    50% {
        border: 20px solid transparent;
    }
    75% {
        border: 25px solid transparent;
    }
    100% {
        border: 20px solid transparent;
    }
}
#itcds {
    display: none;
}
#itcus {
    display: none;
}
.innertc {
    flex-direction: column;
    width: 100%;
    text-align: center;
}
.tc_title {
    font-size: 20px;
    color: #5A5A5A;
	font-weight: bold;
}
.tc_pctres {
    font-size: 30px;
	padding: 5px 0px;
    color: #5A5A5A;
}
.tc_subtxt {
    font-size: 16px;
    color: #5A5A5A;
}
.ressec {
    margin: 0px auto;
    align-items: flex-start;
    width: 95%;
    max-width: 1200px;
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.resbox {
    min-width: 25px;
    flex-grow: 0;
    margin: 0px 15px 15px 15px;
    border-radius: 20px;
    border: #E7E7E7 solid 1px;
    -webkit-box-shadow: 0px 0px 5px 5px rgba(245, 245, 245, 1);
    -moz-box-shadow: 0px 0px 5px 5px rgba(245, 245, 245, 1);
    box-shadow: 0px 0px 5px 5px rgba(245, 245, 245, 1);
}
.resbxtit {
    text-align: center;
    padding: 6px;
    background: rgb(255, 205, 104);
    background: linear-gradient(140deg, rgba(255, 205, 104, 1) 0%, rgba(254, 198, 86, 1) 50%, rgba(255, 185, 44, 1) 100%);
    border-radius: 20px 20px 0px 0px;
    border-bottom: #E7E7E7 solid 1px;
	font-size: 16px;
}
.rbrow {
    display: flex;
    flex-direction: row;
	font-size: 14px;
}
.rbcellleft {
    padding: 6px 15px 6px 25px;
    text-align: right;
    width: 160px;
}
.rbcellright {
    padding: 6px 25px 6px 15px;
    text-align: left;
    width: 120px;
}
.qna {
    width: 90%;
    max-width: 1000px;
    margin: 0px auto;
    color: #1F1F1F;
}
.qna p {
    margin-left: 25px;
    color: #5A5A5A;
    font-size: 18px;
    font-family: "Open Sans";
}
.popup {
	min-width: 500px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: #DDDDDD 2px solid;
	border-radius: 50px;
	padding: 20px;
	background: #FFFFFF;
}
.popup p {
	font-size: 14px;
}