:root {
    --ui-color: #3e567c;
    --lightgray: #f2f2f2;
    --darkgray: #a9a9aa;
    --headergray: #e4e4e4;
}
.noselect {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}
body {
    margin: 0;
    overflow-x: hidden;
    background-color: #ffffff;
}
header {
    position: fixed;
    width: 100%;
    height: 8vh;
    z-index: 999;
}
main {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    position: absolute;
    top: 8vh;
    width: 100%;
    height: calc(100% - 8vh);
    align-items:baseline;
    justify-content: center;
}
footer {
    position: absolute;
    width: calc(100% - 6em);
    padding: 20px 3em 0 3em;
    height: max-content;
    background-color: #cfcfcf;
    top: 100%;
}
#footerlinkscont {
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    width: 100%;
    height: max-content;
    padding-bottom: 30px;
    border-bottom: 1px solid black;
}
#footerexplorecont {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    font-family: Helvetica, sans-serif;
}
#footerexplorecont a, #footerlegal a {
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    line-height: 28px;
    font-weight: 300;
    color: #000000;
}
#footerexplorecont a:hover, #footerlegal a:hover {
    color: var(--darkgray);
}
#exploreheader {
    margin: 0;
    line-height: 45px;
    font-size: 20px;
    font-weight: 700;
}
#footerlegal {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    font-family: Helvetica, sans-serif;
}
#copyrightlabel {
    margin-right: 40px;
}
#privacypolicylink {
    margin-right: 20px;
}
@font-face {
    font-family: "Open Sans";
    src: url(../../assets/fonts/Open\ Sans/OpenSans-Regular.ttf);
}
@font-face {
    font-family: "Agbalumo";
    src: url(../../assets/fonts/Agbalumo/Agbalumo-Regular.ttf);
}
@font-face {
    font-family: "Roboto";
    src: url(../../assets/fonts/Roboto/Roboto-Regular.ttf);
}
@font-face {
    font-family: "ITCAvantGardeGothicBold";
    src: url("../../assets/fonts/ITC Avant Garde Gothic/ITC Avant Garde Gothic Bold.otf");
}
#topnav {
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3em;
    width: calc(100% - 6em);
    height: 100%;
    background-color: var(--headergray);
    color: #000000;
    z-index: 999;
}
#signaturecont, #footersignaturecont {
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000000;
    text-decoration: none;
    width: 185px;
    transition: opacity 0.2s ease-in-out;
}
#footersignaturecont {
    width: 165px;
    height: fit-content;
    margin-right: 40px;
}
#signaturecont:hover {
    opacity: 0.6;
}
#signaturetext, #footersignaturetext {
    display: inline-block;
    font-family: "Agbalumo", Arial, serif;
    font-weight: 500;
    font-size: 27px;
    line-height: 40px;
    font-style: normal;
    margin: 0;
}
#footersignaturetext {
    font-size: 24px;
}
#logocont, #footerlogocont {
    display: inline-block;
    background-image: url(../../assets/images/almamentor_logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 30px;
    width: calc(878 / 911 * 30px);
}
#footerlogocont {
    height: 20px;
    width: calc(878 / 911 * 20px);
}
#searchcont {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    position: relative;
    width: 35%;
}
input[name="query"] {
    position: relative;
    outline: none;
    background: #ffffff;
    border-width: 0;
    border-style: solid;
    border-color: #000000;
    height: 32px;
    font-size: 16px;
    width: calc(100% - 92px);
    padding: 5px 30px 5px 15px;
    font-family: "Open Sans", Helvetica, sans-serif;
    border-radius: 5px 0 0 5px;
    font-weight: 600;
    z-index: 1000;
}
input[name="query"]::placeholder {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}
#clearsearchbutton {
    position: absolute;
    right: 60.5px;
    top: 50%;
    transform: translateY(-50%);
    height: 13px;
    width: 13px;
    fill: #8e8e8e;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    z-index: 1000;
}
#searchbutton {
    position: relative;
    background-color: var(--ui-color);
    width: 47px;
    height: 42px;
    border: 0;
    border-radius: 0 5px 5px 0;
    padding: 0;
    outline: none;
    cursor: pointer;
}
#searchicon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
#searchsuggestionscont {
    position: absolute;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 100%;
    left: 0;
    width: calc(100% - 47px);
    background-color: #ffffff;
    color: #000000;
    overflow: hidden;
    border-radius: 0 0 5px 5px;
    transition: opacity 0.2s ease-in-out;
    opacity: 0;
    box-shadow: 0 0 8px #8d8d8d;
    z-index: 1;
}
.searchsuggestion {
    cursor: pointer;
    width: calc(100% - 30px);
    font-size: 15px;
    padding: 10px 15px;
    font-family: "Open Sans", Helvetica, sans-serif;
    transition: background-color 0.2s ease-in-out;
    word-wrap: break-word;
}
.searchsuggestion:hover {
    background-color: var(--lightgray);
}
.searchoption {
    margin: 0;
}
.searchresultcount {
    font-size: 12px;
    margin: 0;
    color: #6d6d6d;
    font-weight: 600;
}
#loginlinkwrapper {
    font-family: "Open Sans", Helvetica, sans-serif;
    font-weight: 700;
    font-size: 17px;
}
#headeraccountcont {
    position: relative;
    width: 35px;
    height: 35px;
}
#headeraccounticon {
    position: relative;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 1;
    transition: 0.2s opacity ease-in-out;
}
#headeraccounticon:hover {
    opacity: 0.6;
}
#headeraccounticonimg {
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-image: url(../../assets/images/profile_default.svg);
    background-size: contain;
}
#headeraccountmenu {
    display: none;
    position: absolute;
    top: calc(100% + 12.5px);
    right: 10px;
    width: max-content;
    height: max-content;
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #dadada;
    border-radius: 5px 0 5px 5px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}
#headeraccountlinkcont {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
}
.headeraccountlinks {
    padding: 12px 25px;
    cursor: pointer;
    color: #000000;
    text-align: center;
    background-color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    border-bottom: 1px solid #e9e9e9;
}
.headeraccountlinks:first-child {
    border-radius: 5px 0 0 0;
}
.headeraccountlinks:last-child {
    border-radius: 0 0 5px 5px;
    border-bottom: 0;
}
.headeraccountlinks:hover {
    background-color: rgb(218, 218, 218);
    color: #4b4b4b;
}
#logoutbutton {
    margin: 0;
}
#headeraccountmenu > svg {
    position: absolute;
    height: 8px;
    width: 15px;
    padding: 0;
    bottom: 100%;
    right: -1px;
    fill: #ffffff;
}
#headeraccountmenu > svg > line {
    stroke: #dadada;
}
.navbutton {
    margin: 0;
    color: #000000;
    transition: color 0.3s ease-in-out;
    text-decoration: none;
}
.navbutton:hover {
    color: var(--darkgray) !important;
}
#notificationcont {
	position: fixed;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 10vh;
	z-index: 1000;
	top: -10vh;
	transition: top 0.2s ease-in-out;
	overflow: hidden;
}
#notificationtext {
	font-family: "ITCAvantGardeGothicBold", Helvetica, sans-serif;
	font-size: 25px;
	margin: 0;
	color: #ffffff;
}
.mainlogocont {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 25px;
}
.almamentorlogo, .acventlogo {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60%;
    background-image: url(../../assets/images/almamentor_logo.png);
}
.acventlogo {
    height: 55px;
    width: 55px;
    background-image: url(../../assets/images/acvent_full_logo.svg);
    background-size: 56px 56px;
    background-color: transparent;
    border: 1px solid black;
}
#signatureslash {
    height: 65px;
    width: 2px;
    background-color: #3f3f3f;
    border-radius: 2px;
    margin: 0 18px 0 2px;
}
#maincontentwrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    position: absolute;
    width: 300%;
    height: 520px;
    left: 50%;
    top: calc(50% - 4vh);
    transform: translate(calc(-100% / 6), -50%);
    font-weight: 600;
    font-family: Helvetica, sans-serif;
    word-break: break-word;
    transition: transform 0.4s ease-in-out;
}
#usernameemailcont {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    height: max-content;
    background-color: var(--lightgray);
    border: 1px solid black;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 20px 15px;
    width: calc(100%/3 - 20px);
    max-width: 600px;
    top: 50%;
    left: calc(100% / 6);
    transform: translate(-50%, -50%);
}
#resetpasswordtext {
    margin: 0 0 5px 0;
    font-weight: 600;
    font-size: 18pt;
}
#resetinfotext {
    font-weight: 300;
    font-size: 13pt;
    margin: 0 0 20px 0;
    text-align: center;
}
#resetpasswordcont {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: max-content;
    height: max-content;
}
#maincontentwrapper label {
    font-weight: 300;
    width: 100%;
}
.passwordcont {
    position: relative;
}
.passwordcont svg {
    cursor: pointer;
    position: absolute;
    height: 16px;
    width: calc(435 / 341 * 16px);
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.passwordcont svg > path {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#maincontentwrapper input, #createpasswordcont input {
    font-size: 13pt;
    width: 265px;
    height: 25px;
    border-radius: 5px;
    border: 1px solid var(--darkgray);
    outline: none;
    font-weight: 300;
    padding: 3px 5px;
}
.inputerrortext {
    margin: 0 0 20px 0;
    color: #ff0000;
    width: 100%;
    font-size: 15px;
    font-weight: 300;
    height: 1em;
    word-break: break-word;
    text-align: left;
}
#createpasswordbutton, #confirmbutton {
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
    border: 0;
    background-color: var(--ui-color);
    color: #ffffff;
    font-size: 14pt;
    font-weight: 600;
    padding: 10px 0;
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
}
#createpasswordbutton:hover, #confirmbutton:hover {
    transform: scale(103%);
    color: var(--darkgray);
}
#createpasswordwrapper, #twofawrapper {
    position: absolute;
    left: calc(50%);
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100%/3 - 20px);
    max-width: 550px;
    height: max-content;
    border-radius: 5px;
    background-color: var(--lightgray);
    border: 1px solid black;
    z-index: 2;
    transition: right 0.4s ease-in-out, left 0.4s ease-in-out, transform 0.4s ease-in-out;
}
#twofawrapper {
    left: calc(500% / 6);
}
#createpasswordcont, #twofacont {
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Helvetica, sans-serif;
    width: calc(100% - 60px);
    height: max-content;
    margin-top: 20px;
    left: 30px;
}
#twofadesc {
    font-weight: 300;
    margin: 10px 0 20px 0;
}
#createpasswordcont label, #createpasswordcont .inputerrortext, #confirmbutton {
    width: 275px;
}
#confirmbutton {
    margin-bottom: 20px;
}
#createpasswordtext {
    margin: 25px 0 15px 0;
    font-weight: 600;
    font-size: 18pt;
}
#createpasswordcont .tostext {
    width: 300px;
    font-size: 9pt;
    text-align: center;
    margin: 0 0 20px 0;
    font-weight: 300;
}
#createpasswordcont .tostext a {
    font-weight: 600;
    text-decoration: none;
    color: #000000;
    transition: color 0.2s ease-in-out;
}
#createpasswrodcont .tostext a:hover {
    color: var(--darkgray);
}
.backarrow {
    position: absolute;
    cursor: pointer;
    top: 25px;
    left: 20px;
    height: 18px;
    width: 27px;
    z-index: 1;
    transition: opacity 0.2s ease-in-out;
}
.backarrow:hover {
    opacity: 0.65;
}
#skiptext {
    position: absolute;
    cursor: pointer;
    top: 18px;
    right: 20px;
    margin: 0;
    font-family: Helvetica, sans-serif;
    transform: scale(100%);
    z-index: 1;
    color: #000000;
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
}
#twofatext {
    font-size: 18pt;
    font-weight: 600;
    margin: 1em 0 0 0;
}
#twofainputs {
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
    width: 300px;
    justify-content: space-around;
    margin: 0 0 30px 0;
    --code-color: #000000;
}
.codeblank {
    border-style: solid;
    border-color: var(--code-color);
    color: var(--code-color);
    border-width: 0 0 2px 0;
    margin: 0;
	height: 35px;
	width: 35px;
	line-height: 35px;
	font-size: 35px;
    text-align: center;
    font-family: "ITCAvantGardeGothicBold", Helvetica, sans-serif;
}
#verificationcodefield {
	position: absolute;
	height: 100%;
	width: 100%;
	opacity: 0;
}
#verificationcodefield::-webkit-outer-spin-button, #verificationcodefield::-webkit-inner-spin-button {
	display: none;
}
#resendcodetext {
    font-weight: 300;
    margin: 0;
}
#resendcode {
    cursor: pointer;
    font-weight: 600;
    margin: 10px 0 30px 0;
    transition: color 0.2s ease-in-out;
}
#resendcode:hover {
    color: var(--darkgray);
}
@media only screen and (max-width: 500px) {
    #topnav {
        padding: 0 10px;
        width: calc(100% - 20px);
    }
    footer {
        padding: 20px 10px 0 10px;
        width: calc(100% - 20px);
    }
    .questionrow {
        padding: 15px 10px;
        width: calc(100% - 20px);
    }
    .star {
        height: 38px;
        width: 38px;
    }
    .star svg {
        height: 30px;
        width: 32px;
    }
    .starcontainer {
        width: 202px;
    }
}
@media only screen and (max-width: 780px) {
    .specifiercont {
        flex-direction: column;
        align-items: baseline;
        height: 150px;
        justify-content: space-between;
    }
    .specifiercont .selectcont {
        margin-right: 0;
    }
    #signaturecont {
        width: max-content;
    }
    #signaturetext {
        display: none;
    }
    #logocont {
        height: 25px;
        width: calc(878 / 911 * 25px);
    }
    #loginlinkbutton {
        font-size: 15px;
    }
    #searchcont {
        width: 50%;
    }
    input[name="query"] {
        height: 28px;
        padding: 4px 20px 4px 10px;
        width: calc(100% - 71px);
        font-size: 14px;
    }
    #searchbutton {
        height: 36px;
        width: 41px;
    }
    #clearsearchbutton {
        right: 50px;
    }
    #searchsuggestionscont {
        width: calc(100% - 41px);
    }
}