html {
    font-size: 1rem;
}

html.chrome {
    font-size: 1.05rem;
}

@media (max-width: 575.98px) {
    html {
        font-size: 0.9rem;
    }
}

body {
    padding-top: 5.1rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.42857143;
    color: #2b2b2b;
    background-color: #fff;
    overflow-x: hidden;
}

@media (max-width: 767.98px) {
    .visible-inline-xs {
        display: inline-block;
    }
}

@media (min-width: 768px) {
    .visible-inline-xs {
        display: none;
    }
}

.fabzo-btn {
    border: 0;
    font-size: 1.5rem;
    color: #fff;
    vertical-align: middle;
    padding: 0.5rem 3rem;
    border-radius: 3rem;
    box-shadow: 0 0.1rem 0.25rem 0 rgba(91, 22, 170, 0.3);
    background-image: linear-gradient(to right, #FF806D, #F7C500);
    outline: 0;
    outline: none;
}

.fabzo-btn:hover,
.fabzo-btn:visited,
.fabzo-btn:focus,
.fabzo-btn:active {
    color: #fff;
    background-image: linear-gradient(to right, #FF806D, #F7C500);
}

.bordered-sm-btn {
    border-color: #fff;
    background-color: transparent;
    border-radius: 5rem;
    padding: 0.5rem 2rem;
    color: #fff;
    margin-bottom: 2rem;
}

.bordered-sm-btn:hover,
.bordered-sm-btn:focus,
.bordered-sm-btn:active {
    color: #454545;
    background-color: #fff;
    outline: none;
}

.list>li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    list-style-type: none;
}

.list>li:before {
    content: '';
    position: absolute;
    left: 0;
    width: 0.5rem;
    height: 0.5rem;
    /* background-image: linear-gradient(to right, #FF806D, #F7C500); */
    border-radius: 50%;
    background-color: green;
    top: 0.7rem;
    margin-top: -0.25rem;
}

.orange-color {
    color: #FF806D;
}

a.orange-color:hover,
a.orange-color:focus,
a.orange-color:visited {
    color: #FF806D;
}

.cursor-pointer {
    cursor: pointer;
}

.mini-spinner {
    border: 0.2rem solid #f3f3f3;
    border-radius: 50%;
    border-top: 0.2rem solid #555;
    width: 1rem;
    height: 1rem;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.fabzo-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1024;
    padding: 1rem 0rem;
    background-color: #823287;
}

.fabzo-header.animate {
    box-shadow: 0 0.1rem 0.25rem 0 rgba(0, 0, 0, 0.4);
}

.fabzo-header.shadow {
    box-shadow: 0 0.1rem 0.25rem 0 rgba(0, 0, 0, 0.4);
}

.fabzo-logo {
    display: inline-block;
}

.fabzo-logo>img {
    height: 3rem;
    width: auto;
}

.fabzo-btn-login {
    margin-right: 0.7rem;
}

.logged-in-details {
    margin-right: 1rem;
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.logged-in-details>div {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
}

.logged-in-details>a {
    color: #fff;
    font-size: 1.2rem;
    display: block;
    line-height: 3rem;
    position: relative;
    padding-right: 1.5rem;
}

.logged-in-details a:hover,
.logged-in-details a:focus {
    text-decoration: none;
}

.logged-in-details>a:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    border: 0.4rem solid #fff;
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom-width: 0;
}

.logged-in-details a>img {
    width: 1.2rem;
    margin-right: 0.5rem;
}

.logged-in-details a>span {
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 15rem;
    display: inline-block;
}

@media (max-width: 767.98px) {
    .logged-in-details a>span {
        max-width: 10rem;
    }
}

@media (max-width: 575.98px) {
    .logged-in-details a>span {
        max-width: 5rem;
    }
}

.logged-in-details:hover>div,
.logged-in-details:focus>div {
    display: block;
}

.logged-in-details:hover>a:after,
.logged-in-details:focus>a:after {
    border-bottom-width: 0.4rem;
    border-top-width: 0;
    border-bottom-color: #5D2061;
}

.logged-in-details ul {
    list-style-type: none;
    margin: 0;
    background-color: #5D2061;
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0rem 0.3rem 0.5rem 0.1rem rgba(0, 0, 0, 0.26);
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    padding-bottom: 0.25rem;
    min-width: 6rem;
    font-size: 1rem;
    text-align: center;
}

.logged-in-details ul>li {
    padding: 0rem 0.5rem 0.5rem;
}

.logged-in-details ul>li>a {
    color: #fff;
}

.logged-in-details ul>li>a:hover,
.logged-in-details ul>li>a:focus {
    color: #fff;
}

@media (max-width: 767.98px) {
    .logged-in-details ul {
        margin-top: 0.5rem;
    }
}

.social-share {
    display: inline-block;
    position: relative;
}

.social-share>a, .social-share button {
    display: inline-block;
    box-shadow: 0 0.1rem 0.25rem 0 rgba(91, 22, 170, 0.3);
    background-image: linear-gradient(to right, #FF806D, #F7C500);
    padding: 0.5rem;
    border-radius: 50%;
}

.social-share>a:hover,
.social-share>a:focus {
    box-shadow: 0 0.1rem 0.25rem 0 rgba(91, 22, 170, 0.3);
    background-image: linear-gradient(to right, #FF806D, #F7C500);
}

.social-share>div {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
}

.social-share:hover>div,
.social-share:focus>div {
    display: block;
}

.social-share ul {
    list-style-type: none;
    margin: 0;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0rem 0rem 0.2rem 0.3rem rgba(0, 0, 0, 0.26);
    padding: 1rem;
    margin-top: 1rem;
    padding-bottom: 0.25rem;
}

.social-share ul:before {
    content: '';
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 0.5rem solid #fff;
    border-top: 0;
    border-left-color: transparent;
    border-right-color: transparent;
}

.social-share ul img {
    width: 1.8rem;
    height: auto;
}

.social-share ul>li {
    margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
    body {
        padding-top: 3.4rem;
    }

    .fabzo-header {
        padding: 0.5rem 0rem;
    }

    .fabzo-logo>img {
        height: 2rem;
        margin-top: 0.24rem;
    }

    .fabzo-btn-login {
        padding: 0.5rem 2rem;
        font-size: 1rem;
    }

    .logged-in-details>a {
        line-height: 2rem;
    }

    .social-share>a>img, .social-share>a>img {
        width: 1.4rem;
        height: 1.4rem;
    }
    
    .social-share>a, .social-share>button{
        padding: 0.35rem;
    }
}

.fabzo-desc-card {
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
}

.fabzo-desc-card-title {
    padding-bottom: 0.5rem;
    font-size: 1.1rem;
    border-bottom: 1px solid #D8D8D8;
    margin-bottom: 1rem;
    color: #5c5c5c;
}

.fabzo-desc-card-title>b {
    font-size: 1.5rem;
    color: #2b2b2b;
}

.fabzo-desc-card-class-name,
span.fabzo-desc-card-class-name {
    color: #FF806D;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.fabzo-desc-card-description {
    margin-bottom: 0.5rem;
}

.fabzo-desc-card-description>ol {
    padding-left: 0.8rem;
}

.fabzo-desc-card-description>ol>li {
    margin-bottom: 0.3rem;
}

.footer-copyrite {
    padding: 1rem 0rem;
    background-color: #823287;
    color: #fff;
}

.footer-kidsafe-copyrite{
    background-color: #D42F70;
    color: #fff;
    padding: 0.6rem 0rem;
}

.footer-kidsafe-logo{
    max-width:100px;
}

.footer-content-center{
    display: flex;
    align-items: center;
    height: 35px;
}

@media (max-width: 767.98px){
    .footer-content-center{
        justify-content: center;
    }

    .footer-kidsafe-copyrite{
        text-align: center;
    }
}
    

.footer-dpts {
    float: left;
    margin: 0;
}

.footer-dpts li:not(:last-child) {
    border-right: 1px solid #fff;
}

.footer-copy {
    float: right;
}

.footer-copyrite a,
.footer-copyrite a:focus,
.footer-copyrite a:hover {
    color: #fff;
}

@media (max-width: 767.68px) {
    .footer-copyrite {
        text-align: center;
    }

    .footer-dpts,
    .footer-copy {
        float: none;
    }
}

.fabzo-layout {
    padding: 3rem 0rem;
}

.mock-test-header {
    background-color: #9B1FCC;
}

.last-date b {
    cursor: pointer;
    color: #FF806D;
}

.l-modal-login .fabzo-btn {
    width: 100%;
    border-radius: 4px;
}