@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

:root {
    --main-color: #1b056b;
    --sub-color: #393d40;
    --sec-padding: 80px 0;
}

body {
    font-family: 'Almarai', sans-serif;
    background-color: #ffffff;
    font-size: 17px;
    font-weight: 400;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Almarai', sans-serif;
    font-weight: 800;
    font-style: normal;
    margin: 0;
}

p {
    margin: 0;
}

html,
button,
input,
select,
textarea {
    color: #222;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

img {
    vertical-align: middle;

}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}


a,
button {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

p {
    margin: 0;
}

a {
    cursor: pointer !important;
    text-decoration: none !important;
}

a:hover,
a:active,
a:focus,
a:visited {
    text-decoration: none !important;
}

input,
textarea,
a,
button {
    outline: none !important;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.main-wrapper {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}



.menu-toggle .main-wrapper {
    -webkit-transition: -webkit-transform .0s ease;
    transition: -webkit-transform .0s ease;
    transition: transform .0s ease;
    transition: transform .0s ease,
        -webkit-transform .0s ease;
}



.hamburger {
    width: 35px;
    height: 35px;
    border: none;
    position: absolute;
    z-index: 9;
    left: 10px;
    top: 1px;
    -webkit-transition: background-color .2s linear;
    -ms-transition: background-color .2s linear;
    transition: background-color .2s linear;
    display: none;
    margin-right: 0px;
    background-color: transparent;
}

.hamburger span {
    width: 20px;
    height: 2px;
    border-radius: 0px;
    background-color: #000;
    display: block;
    margin-bottom: 4px;
    -webkit-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -ms-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger span:nth-child(2) {
    width: 15px;
}

.hamburger span:last-child {
    width: 9px;
}


/*mobile menu*/

.menu-mobile {
    position: fixed;
    left: 0px;
    top: 0px;
    bottom: 0;
    height: 100%;
    width: 250px;
    background: #fff;
    z-index: 1001;
    text-align: center;
    overflow: hidden;
    -webkit-transform: translateX(-265px);
    -moz-transform: translateX(-265px);
    -ms-transform: translateX(-265px);
    -o-transform: translateX(-265px);
    transform: translateX(-265px);
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    -webkit-box-shadow: -2px 0 20px 0 rgba(33, 23, 23, 0.68);
    box-shadow: -2px 0 20px 0 rgba(33, 23, 23, 0.68);
}

.brand-area {
    position: relative;
    padding-top: 30px;
    text-align: center;
}

.close_menu {
    position: absolute;
    top: 0;
    left: 0px;
    font-size: 24px;
    cursor: pointer;
    color: #363636;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    background-color: #fff;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.close_menu:hover {
    background-color: #767676;
    color: #fff;
}

.brand-area a {
    width: 100%;
    height: auto;
    display: block;
    background-size: contain;
    padding: 15px;
}

.brand-area a>img {
    max-width: 150px;
    max-height: 100%;
}

.mmenu>ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.mmenu>ul li a {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #000;
    padding: 15px 10px;
    transition: all .3s;
    font-size: 16px;
    text-transform: capitalize;
}

.mmenu>.social-media li a {
    border: 0
}

.mmenu>ul li a.btn-site {
    width: 90%;
    margin: auto;
    padding: 5px;
}

.register-mobile {
    margin-top: 0 !important;
}

.register-mobile li:last-child>a {
    border-bottom: 0;
}

.plusIcon {
    font-size: 14px;
    margin-left: 5px;
}

.m-overlay {
    position: fixed;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background: #333;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.menu-toggle {
    overflow: hidden;
}

.menu-toggle .m-overlay {
    opacity: 0.6;
    visibility: visible;
}

.menu-toggle .menu-mobile {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);

}

.menu-toggle .main-wrapper {
    -webkit-transform: translate3d(250px, 0, 0);
    -moz-transform: translate3d(250px, 0, 0);
    -ms-transform: translate3d(250px, 0, 0);
    -o-transform: translate3d(250px, 0, 0);
    transform: translate3d(250px, 0, 0);

}

html.menu-toggle {
    overflow: hidden;
}

/*header*/

#header {
    width: 100%;
    padding: 10px 0;
}

#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}

.logo-site {
    flex: 1
}

.logo-site a {
    display: inline-block;
}

.logo-site img {
    max-width: 150px;
}

.main_menu {
    flex: 3
}

.main_menu>li,
.menu-end li {
    float: right;
    margin-left: 15px;
}

.main_menu>li:last-child,
.menu-end li:last-child {
    margin-left: 0;
}

.main_menu>li>a,
.menu-end li a {
    display: block;
    color: var(--sub-color);
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    padding: 10px;
    border-radius: 10px;
}

.menu-end li a.btn-site {
    padding: 7px 20px 10px
}

.main_menu>li>a.active,
.main_menu>li>a:hover,
.menu-end li a:hover {
    color: var(--main-color) !important;
}

.menu-end {
    flex: 1;
    display: flex;
    justify-content: end;
}


#header.fixed-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    box-shadow: 0 1px 7px rgb(0 0 0 / 16%);
    z-index: 33;
}



/*section_home*/

.section_home {
    position: relative;
    z-index: 1;
    background: #F7F7FD;
    padding: 60px 0 250px;
}

.section_home .row {
    align-items: center;
}

.thumb-slide {
    padding: 0 10px;
}

.home_txt {
    position: relative;
    padding: 0 10px;
}

.home_txt h1 {
    color: var(--sub-color);
    margin-bottom: 15px;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.6
}

.home_txt p {
    color: #242529;
    font-weight: 400;
    margin-bottom: 40px;
    font-size: 16px;
}

.opt-site {
    text-align: center
}

.opt-site .btn-site {
    border-radius: 50%;
    padding: 0;
    width: 40px;
    color: #fff;
    border: 5px solid #ECF1F0;
}

.opt-site .btn-site i {
    position: relative;
}

.opt-site .btn-site:hover:before {
    left: 0;
}

.opt-site .btn-site-oth {
    border-radius: 30px;
    padding: 10px 50px;
}

.thumb-slide {
    text-align: left;
}

.thumb-slide img {
    max-width: 400px;
}

.section_home svg {
    position: absolute;
    bottom: -60px;
    left: 0;
}


/*section_about*/

.section_about {
    padding: 60px 0 0;
    position: relative;
}

.txt-about h3 {
    color: var(--main-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.txt-about p {
    color: #242529;
    line-height: 1.7;
    font-size: 14px;
}


/*Style Features*/

.section_features {
    position: relative;
    padding: 60px 0;
}

.item-feat {
    margin-bottom: 60px;
}

.item-feat figure {
    background: #F2F2F2;
    border-radius: 20px;
    display: inline-block;
    width: 70px;
    height: 80px;
    text-align: center;
    line-height: 80px;
}

.item-feat:hover figure {
    border: 1px dashed var(--main-color);
    -webkit-animation-name: swing;
    animation-name: swing;
    animation-duration: 500ms;
}

.col-lg-4:nth-child(2) .item-feat figure {
    background: #FCFAEF;
}

.col-lg-4:nth-child(3) .item-feat figure {
    background: #FDF7F8;
}

.col-lg-4:nth-child(4) .item-feat figure {
    background: #F2F5FF;
}

.col-lg-4:nth-child(5) .item-feat figure {
    background: #FFF4F7;
}

.col-lg-4:nth-child(6) .item-feat figure {
    background: #F0F9FF;
}

.item-feat figure img {
    width: 40px;
}

.txt-feat h5 {
    color: var(--sub-color);
    font-size: 15px;
    margin-bottom: 10px;
}

.txt-feat:hover h5 {
    color: var(--main-color);
}

.txt-feat p {
    color: #797D89;
    font-size: 14px;
    height: 40px;
    overflow: hidden;
}

/*sec_head*/

.sec_head {
    margin-bottom: 40px;
    position: relative;
    text-align: center;
    z-index: 1
}

.sec_head h2 {
    color: var(--sub-color);
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 15px;
    position: relative;
    text-transform: uppercase;
}

.sec_head p {
    font-size: 15px;
    color: #3F3B3D;
    font-weight: 400;
    margin-bottom: 80px;
}

.sec_head a {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #242529;
    font-size: 15px;
    font-weight: 400;
}

.sec_head a:hover {
    color: var(--main-color);
}


/*btn-site*/

.btn-site {
    height: 40px;
    font-size: 15px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
    background: var(--main-color);
    width: max-content;
    position: relative;
    overflow: hidden;
}

.btn-site:before {
    background: #3F3B3D;
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    left: -10px;
    width: 0%;
    transform: skew(-10deg);
    transition-duration: .6s;
    z-index: 0;
}

.btn-site:hover:before {
    position: absolute;
    content: "";
    top: 0;
    left: -10px;
    width: 120%;
    z-index: 0
}

.btn-site span,
.btn-site a {
    color: #fff;
    position: relative;
}

.btn-site-oth {
    height: 40px;
    font-size: 15px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
    border: 1px solid var(--main-color);
    width: max-content;
    position: relative;
    overflow: hidden;
}

.btn-site-oth span {
    color: var(--main-color);
}

.btn-site-oth:before {
    background: var(--main-color);
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    left: -10px;
    width: 0%;
    transform: skew(-10deg);
    transition-duration: .6s;
    z-index: 0;
}

.btn-site-oth:hover:before {
    position: absolute;
    content: "";
    top: 0;
    left: -10px;
    width: 120%;
    z-index: 0
}

.btn-site-oth:hover span {
    color: #fff !important;
    position: relative
}

.opt-site li {
    display: inline-block;
    margin-left: 15px;
}

/* Style Blogs */

.section_blogs {
    position: relative;
    padding: 60px 0;
    background: #F5F5F5;
    border-radius: 60px;
}

.item-blog {
    text-align: center;
    display: block;
    margin-bottom: 40px;
}

.item-blog figure {
    overflow: hidden;
}

.item-blog figure img {
    transition: .5s
}

.item-blog:hover figure img {
    transform: scale(1.1)
}

.txt-blog p {
    color: #242529
}

.txt-blog p:hover {
    color: var(--main-color)
}


/* Style Fotter */

#footer {
    position: relative;
    padding: 20px 0;
}

.cont-ft {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.md-ft .mmenu li {
    display: inline-block;
    margin-left: 35px;
}

.md-ft .mmenu li:last-child {
    margin-left: 0;
}

.cont-ft .sec-left {
    text-align: end;
}

.social-ft li {
    display: inline-block;
    margin-left: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: .5s;
    background: var(--sub-color)
}

.social-ft li a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 100%;
    width: 100%;
}

.social-ft li:hover {
    border-radius: 50%;
}

.social-ft li.icon-youtube:hover {
    background: #FF0000;
}

.social-ft li.icon-instagram:hover {
    background: linear-gradient(180deg, rgba(236, 74, 104, 1) 0%, rgba(255, 160, 74, 1) 90%);
}

.social-ft li.icon-twitter:hover {
    background: #1CB7EB;
}

.social-ft li.icon-facebook:hover {
    background: #496FA4;
}

.social-ft li.icon-snapchat:hover {
    background: #FFFC00;
}

.mmenu li a {
    color: #797D89;
    font-size: 15px
}

.mmenu li a:hover {
    color: var(--main-color)
}

.mmenu li a i {
    margin-left: 15px;
}

.copyRight {
    color: #242529;
    font-size: 15px;
}

/* Style Head Page */

.hd-page {
    background: var(--sub-color);
    text-align: center;
    padding: 30px 0;
}

.hd-page h2 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 24px;
}

.hd-page ul li {
    display: inline-block;
    margin-left: 10px;
    padding-left: 10px;
    position: relative;
    color: #fff;
}

.hd-page ul li:before {
    content: "";
    background: #fff;
    width: 2px;
    height: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.hd-page ul li:last-child:before {
    display: none
}

.hd-page ul li a {
    color: #fff
}

.hd-page ul li a:hover {
    color: var(--main-color);
}


/* Style Contact */

.section_site_page {
    position: relative;
    padding: 60px 0;
    background: #F7F7FD
}


.list-contact>div {
    margin-bottom: 40px;
}

.list-contact h4 {
    color: var(--sub-color);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px;
}

.list-contact p {
    color: #1B1B1B;
    text-align: start;
    font-size: 15px;
}

.list-contact ul li {
    display: inline-block;
    margin-left: 10px;
}

.list-contact li a {
    color: #1B1B1B
}

.list-contact li a:hover {
    color: var(--main-color);
}

.form-contact {
    background: #F7F7F8;
    width: 400px;
    max-width: 100%;
}

.flex50 {
    display: flex;
}

.flex50 .form-group {
    width: 50%;
    margin-left: 15px;
}

.flex50 .form-group:last-child {
    margin-left: 0;
}

.form-contact .form-group {
    margin-bottom: 10px;
    position: relative;
}

.form-contact .form-group .form-control {
    border: 1px solid #33387B;
    border-radius: 8px;
    background: transparent;
    padding: 12px;
    font-size: 15px;
}

.form-contact .form-group textarea.form-control {
    height: 130px
}

.form-contact .form-group .form-control:focus {
    box-shadow: none;
}

.form-contact .btn-site {
    width: 100%;
    font-weight: 600;
    margin: 15px auto 0;
    height: 50px;
}


/* Style Login Page */

.content-login {
    background: #fff;
    border-radius: 30px;
    width: 40%;
    max-width: 100%;
    margin: auto;
    padding: 40px;
}

.hd-login {
    margin-bottom: 30px;
    text-align: center;
}

.hd-login h5 {
    font-size: 23px;
    margin-bottom: 10px;
    color: var(--sub-color);
}

.hd-login p {
    color: var(--main-color);
}

.form-login .form-group {
    margin-bottom: 20px;
}

.form-login .form-group label {
    margin-bottom: 5px;
}

.form-login .form-control {
    border-radius: 8px;
    border: 1px solid #E3E3E3;
    padding: 13px 15px;
    font-size: 15px;
}

.form-login .form-group .form-control:focus {
    box-shadow: none;
}


.form-login .btn-site {
    width: 100%;
    font-weight: 700;
    height: 50px;
}


.cbx {
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    display: flex;
}

.cbx p {
    font-size: 14px;
    color: #1B1B1B;
    font-weight: 500;
}

.cbx span {
    display: inline-block;
    vertical-align: middle;
    border: 0;
    transform: translate3d(0, 0, 0);
    margin-left: 10px;
}

.cbx span:first-child {
    position: relative;
    width: 17px;
    height: 17px;
    background: #fff;
    border: 1px solid var(--main-color);
    border-radius: 3px;
    transform: scale(1);
    vertical-align: middle;
    transition: all 0.2s ease;
    top: 2px;
}

.cbx span:first-child svg {
    position: absolute;
    z-index: 1;
    top: 4px;
    left: 2px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}

.cbx span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--main-color);
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 0;
    transition-delay: 0.2s;
}

.cbx span:last-child {
    margin-left: 8px;
}

.cbx span:last-child:after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    height: 1px;
    width: 100%;
    background: var(--main-color);
    transform-origin: 0 0;
    transform: scaleX(0);
}

.cbx:hover span:first-child {
    border-color: var(--main-color);
}

.inp-cbx:checked+.cbx span:first-child {
    border-color: var(--main-color);
    background: var(--main-color);
    animation: check 0.6s ease;
}

.inp-cbx:checked+.cbx span:first-child svg {
    stroke-dashoffset: 0;
}

.inp-cbx:checked+.cbx span:first-child:before {
    transform: scale(2.2);
    opacity: 0;
    transition: all 0.6s ease;
}

.inp-cbx:checked+.cbx span:last-child {
    color: #B9B8C3;
    transition: all 0.3s ease;
}

.inp-cbx:checked+.cbx span:last-child:after {
    transform: scaleX(1);
    transition: all 0.3s ease;
}

@keyframes check {
    50% {
        transform: scale(1.2);
    }
}

/* Style Quiz Page */

.item-quiz {
    background: #fff;
    border-radius: 5px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    margin: 0 auto 20px;
}

.item-quiz .sec-right {
    display: flex;
    align-items: center;
}

.item-quiz .sec-right figure {
    width: 70px;
    height: 70px;
    border: 1px solid #E3E3E3;
    border-radius: 50%;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-quiz:hover figure {
    border: 1px dashed #E3E3E3;
    -webkit-animation-name: swing;
    animation-name: swing;
    animation-duration: 500ms;
}

.item-quiz .sec-right figure img {
    width: 30px;
}

.name-quiz {
    width: calc(100% - 70px);
    padding-right: 15px;
}

.name-quiz h6 {
    font-weight: 700;
    color: #1B1B1B;
    margin-bottom: 10px;
}

.name-quiz p {
    color: #797D89
}

.item-quiz .sec-left ul li {
    display: inline-block;
    margin-left: 20px;
}

/* Style Profile */

.data-pro {
    background: #fff;
    display: flex;
    padding: 20px;
    width: 70%;
    margin: 0 auto 30px;
}

.data-pro figure {
    width: 120px;
    margin-bottom: 0;
}

.data-pro figure img {
    width: 100%;
}

.data-pro .txt-pro {
    width: calc(100% - 120px);
    padding-right: 15px;
    padding-top: 5px;
}

.data-pro .txt-pro h6 {
    color: var(--sub-color);
    margin-bottom: 10px;
}

.data-pro .txt-pro p {
    margin-bottom: 10px;
}

.data-pro .txt-pro small {
    font-size: 17px;
    display: block;
}

.data-pro .txt-pro small span {
    color: var(--main-color)
}

.item-acco {
    background: #fff;
    display: block;
    padding: 30px 20px;
    text-align: center;
}

.item-acco:hover {
    background: #F2F2F2;
}

.item-acco figure {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
    height: 75px;
}

.item-acco figure:before {
    content: "";
    position: absolute;
    background: #F2F2F2;
    width: 90px;
    height: 100px;
    top: -10px;
    transform: translateX(-50%);
    left: 30%;
    display: block;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0%, 65% 100%, 0% 100%);
}

.item-acco:hover figure:before {
    background: #fff;
}

.item-acco p {
    color: var(--sub-color);
    font-weight: 700;
    position: relative;
    z-index: 1
}

.pb150 {
    margin-bottom: 150px !important;
}

.hd-edit {
    margin-bottom: 40px;
}

.hd-edit h2 {
    color: var(--sub-color);
    font-size: 22px;
    text-align: center
}

.form-edit .form-group label {
    margin-bottom: 5px;
}

.form-edit .flex50 {
    margin-bottom: 30px;
}

.form-edit .flex50 .form-group {
    margin-left: 70px;
}

.form-edit .flex50 .form-group:last-child {
    margin-left: 0
}

.form-edit .form-control {
    border-radius: 8px;
    border: 1px solid #E3E3E3;
    padding: 13px 15px;
    font-size: 15px;
}

.form-edit .btn-site {
    width: 470px;
    height: 50px;
    max-width: 100%;
    margin: auto
}

.avatar-upload {
    position: absolute;
    max-width: 150px;
    margin: 50px auto;
    left: 130px;
    top: 40px;
}

.avatar-upload .avatar-edit {
    position: absolute;
    left: 0;
    z-index: 1;
    bottom: 5px;
}

.avatar-upload .avatar-edit input {
    display: none;
}

.avatar-upload .avatar-edit input+label {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-bottom: 0;
    border-radius: 100%;
    background: var(--main-color);
    border: 0;
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
}

.avatar-upload .avatar-edit input+label:hover {
    background: #f1f1f1;
}

.avatar-upload .avatar-edit input+label:after {
    content: "\f030";
    font: normal normal normal 11px/1 FontAwesome;
    color: #fff;
    position: absolute;
    top: 7px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}

.avatar-upload .avatar-preview {
    width: 100px;
    height: 100px;
    position: relative;
    border-radius: 100%;
}

.avatar-upload .avatar-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.content-edit {
    background: #fff;
    padding: 50px;
    position: relative;
    width: 70%;
    margin: auto;
}

.hd-av {
    width: 70%;
    margin: 0 auto 15px;
}

.hd-av h4 {
    color: var(--sub-color);
    font-size: 18px;
}

/* Style Quiz */

.thumb-quiz {
    position: relative;
    height: 100%;
}

.thumb-quiz>img {
    width: 100%;
    height: 100%;
}

.thumb-quiz .btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(255 255 255 / 70%);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-quiz .btn-play:hover {
    background: rgb(255 255 255 / 100%);
}

.thumb-quiz .btn-play img {
    width: 60px;
}

.txt-details {
    background: #fff;
    padding: 30px;
}

.txt-details h5 {
    color: var(--sub-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.txt-details p {
    color: #1B1B1B;
    font-size: 14px;
    line-height: 2;
}

.txt-details .btn-site {
    margin-right: auto;
    padding: 10px 30px;
    border-radius: 25px;
}

/* Style Payment */

.choose-payment {
    width: 70%;
    margin: auto;
}

.payment {
    background: #fff;
    padding: 30px 20px;
    margin-bottom: 20px;
}

.payment h5 {
    color: var(--sub-color);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
}

.list-payment {
    display: flex;
}

.list-payment .item-payment {
    width: 20%;
    margin-left: 20px;
}

.item-payment .inputGroup {
    background-color: #fff;
    border: 1px solid rgb(121 125 137 / 50%);
    border-radius: 5px;
    display: block;
    margin: 10px 0;
    height: 120px;
    line-height: 120px;
    text-align: center;
}

.item-payment .inputGroup label {
    width: 100%;
    display: block;
    text-align: center;
    color: #3c454c;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 200ms ease-in;
}

.item-payment .inputGroup label:before {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: '';
    position: absolute;
    left: 10px;
    top: -5px;
    transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: -1;
}

.item-payment .inputGroup label:after {
    width: 30px;
    height: 30px;
    content: '';
    opacity: 0;
    border: 2px solid #d1d7dc;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
    background-repeat: no-repeat;
    background-position: -1px 3px;
    border-radius: 50%;
    z-index: 2;
    position: absolute;
    right: -15px;
    top: 0;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 200ms ease-in;
}

.item-payment .inputGroup input:checked~label {
    color: #fff;
}

.item-payment .inputGroup input:checked~label:before {
    transform: translate(-50%, -50%) scale3d(56, 56, 1);
    opacity: 1;
}

.item-payment .inputGroup input:checked~label:after {
    background-color: var(--main-color);
    border-color: var(--main-color);
    opacity: 1
}

.item-payment .inputGroup input {
    width: 32px;
    height: 32px;
    order: 1;
    z-index: 2;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    visibility: hidden;
}

.choose-payment .btn-site {
    margin-right: auto;
    border-radius: 25px;
    padding: 10px 30px
}

/* Style Exam */

.box-exam {
    width: 70%;
    margin: auto;
}

.hidden {
    display: none;
}

.info-exam {
    padding: 30px;
    background: var(--main-color);
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.info-exam>div {
    flex: 1;
    position: relative
}

.info-exam>div:first-child:before {
    content: "";
    background: #fff;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.exam-presenter p {
    color: #fff;
    font-weight: 700;
}

.exam-presenter small {
    color: #fff;
}

.exam-presenter small i {
    margin-left: 10px;
}

.nu-qus {
    text-align: left;
}

.nu-qus img {
    width: 25px;
    margin-left: 10px;
}

.nu-qus p {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.time-exam span {
    margin-right: 5px;
}

.qustion-list p {
    background: #fff;
    text-align: center;
    margin-bottom: 90px;
    height: 90px;
    line-height: 90px;
    padding: 0 30px;
    font-size: 19px;
}

.qustion-list .Choose-pro {
    display: flex;
    flex-wrap: wrap;
}

.qustion-list .Choose-pro li {
    width: 50%;
    padding-left: 30px;
}

.qustion-list .Choose-pro li:nth-child(even) {
    padding-left: 0;
}

.qustion-list .inputGroup {
    background-color: #fff;
    display: block;
    margin: 10px 0;
    padding: 10px;
}

.qustion-list .inputGroup label {
    width: 100%;
    display: block;
    text-align: right;
    color: #3c454c;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 200ms ease-in;
    overflow: hidden;
}

.qustion-list .inputGroup label:before {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: -1;
}

.qustion-list .inputGroup label:after {
    width: 20px;
    height: 20px;
    content: '';
    border: 2px solid #d1d7dc;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
    background-repeat: no-repeat;
    background-position: -4px -3px;
    border-radius: 50%;
    z-index: 2;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 200ms ease-in;
}

.qustion-list .inputGroup input:checked~label:before {
    transform: translate(-50%, -50%) scale3d(56, 56, 1);
    opacity: 1;
}

.qustion-list .inputGroup input:checked~label:after {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.qustion-list .inputGroup input {
    width: 32px;
    height: 32px;
    order: 1;
    z-index: 2;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    visibility: hidden;
}

.content-qustion {
    position: relative;
}

.footer-question-number-wrapper {
    display: flex;
    align-items: center;
    position: absolute;
    top: 130px;
    right: 0;
}

.footer-question-number-wrapper p {
    margin-left: 15px;
}

.footer-question-number-wrapper span {
    border: 1px solid var(--sub-color);
    color: var(--sub-color);
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-left: 10px;
}

#current-question-number-label {
    background: var(--sub-color);
    color: #fff
}

.exams-footer {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.exams-footer .btn-site {
    margin-left: 20px;
    padding: 10px 30px;
    border-radius: 25px;
}

.exams-footer>div:last-child {
    margin-left: 0;
}

.footer-finish-question-wrapper .disabled,
.go-to-next-question-wrapper .disabled {
    display: none
}

.back-to-prev-question-wrapper .btn-site {
    background: var(--sub-color);
}





.right-side {
    background-color: rgb(95, 95, 95);
    height: 100%;
}

.question {
    color: #cfd0d0;
    padding: 10px;
    text-align: center;
    width: 45px;
    height: 45px;
    display: flex;
    font-family: sans-serif;
    justify-content: center;
    font-weight: 500;
    align-items: center;
    transition: all 0.3s ease-in-out;
    margin: 5px;
    font-size: 18px;
    position: relative;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
    user-select: none;
}

.question:hover {
    color: #ecf0f1;
    border: 1px solid #ecf0f1;
    border-radius: 15px;
}

.question.active {
    border: 1px solid #ecf0f1;
    color: #ecf0f1;
}

.question.book-mark::after {
    /* triangle shape bottom center */
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #c0392b;

}

.question.answered {
    background-color: #2c3e508c;
    color: #ecf0f1;
}

.question.book-mark.answered::after {
    border-bottom-color: #c0392b;
}

.line {
    border-width: 3px;
    opacity: 1 !important;
    border-color: #cfd0d0 !important;
    border-radius: 20px !important;
}

.site-white {
    color: #cfd0d0 !important;
}

.bold {
    font-weight: 700 !important;
}

.bkMark {
    color: #cfd0d0;
    padding: 10px;
    text-align: center;
    height: 54.8px;
    display: flex;
    font-family: sans-serif;
    justify-content: center;
    font-weight: 500;
    align-items: center;
    transition: all 0.3s ease-in-out;
    margin: 5px;
    font-size: 18px;
    position: relative;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
    user-select: none;
}

.bkMark::after {
    /* triangle shape bottom center */
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #c0392b;

}

.un-mark {
    border: #fff 1px solid;
    background-color: #c0392b;
    transition: all 0.3s ease-in-out;
}

.un-mark:hover {
    border: #fff 1px dashed;
    background-color: #9d281b;
}

.Quest {
    color: #cfd0d0;
    padding: 10px;
    text-align: center;
    height: 54.8px;
    display: flex;
    font-family: sans-serif;
    justify-content: center;
    font-weight: 500;
    align-items: center;
    transition: all 0.3s ease-in-out;
    margin: 5px;
    font-size: 18px;
    position: relative;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
    user-select: none;
}

.bg-header {
    background-color: rgb(51, 51, 51) !important;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]+label {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #cfd0d0;
    border-radius: 3px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 9px 9px;
    vertical-align: middle;
    margin-right: 5px;
    cursor: pointer;
}

input[type="checkbox"]:checked+label {
    background-color: #c0392b;
    border-color: #c0392b;
}

.user-select-none * {
    user-select: none !important;
}

.diffQuestButtons * {
    background-color: #2bc08e;
    color: #fff;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    width: 50%;
    position: relative;

}

.diffQuestButtons .selected {
    outline: 3px solid #0b7451 !important;
    outline-offset: -3px;

}

.bg-green {
    background-color: #2bc08e;
}

.question-item {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.modern-radio {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modern-radio input[type="radio"] {
    display: none;
}

.modern-radio input[type="radio"]+label {
    display: inline-block;
    width: 95%;
    border: 1px solid #d7d7d7;
    background-color: #d7d7d7;
    padding: 10px;
    vertical-align: middle;
    margin-right: 5px;
    cursor: pointer;
}

.modern-radio input[type="radio"]:checked+label {
    background-color: #0b7451;
    border-color: #0b7451;
    color: white;
}

/* image-radio */
.image-radio {
    text-align: center;
}

.image-radio input[type="radio"] {
    display: none;
}

.image-radio input[type="radio"]+label {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

.image-radio input[type="radio"]:checked+label img {
    outline: 10px solid #0b74515f;
    border-radius: 15px;
    color: white;
}
.image-radio img{
    width: 50%;
    object-fit:cover;
}

.col-24 {
    width: 20%;
}
.image-checkbox {
    text-align: center;
}

.image-checkbox input[type="checkbox"] {
    display: none;
}

.image-checkbox input[type="checkbox"]+label {
    display: inline-block;
    width: 100%;
    height: 100%;
    border:none;
    vertical-align: middle;
    cursor: pointer;
}

.image-checkbox input[type="checkbox"]:checked+label img {
    outline: 10px solid #0b74515f;
    border-radius: 15px;
    background-color:transparent;
    color: white;
}

.image-checkbox input[type="checkbox"]:checked+label {
    background-color: transparent;
}
.image-checkbox img{
    width:100%;
    height:100%;
    object-fit: cover;
}

.grid {
    display: grid;
    width:100%;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 1px;
    grid-auto-rows: minmax(50px,50px);
    place-items: center;
}
.gridPoint{
    /* //circle */
    width: 15px;
    height: 15px;
    cursor: pointer;
    position: initial;
    z-index:4;
    border-radius: 50%;
    background-color: #2f2f2f;
    border: 1px solid #f2f2f2;
    user-select:none;
    position: relative;
}


.topUp{
    position: relative;
    z-index:6;
}
#MultiDragQuestion li{
    list-style-type: none;
    padding: 9px 5px;
    margin: 5px auto;
    border: 1px solid #f2f2f2;
    border-radius: 5px;
    background-color: #c9c9c9;
    color: white;
    text-align: center;
    width:50%;
    cursor: grab;
    user-select:none;
    position: relative;
    z-index:5;
}
.memory-number {
    margin: 20px 0px;
}
.squares-holders {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.square {
    width: 50px;
    height: 50px;
    background-color: #f1f1f1;
    border: 1px solid black;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 5px;
    cursor: pointer;
    color: transparent;
}
.square.revealed {
    color: black;
}
.square.wrong {
    background-color: red;
    color: white;
}
.square.correct {
    background-color: green;
    color: white;
}

.square:hover {
   opacity: 0.8;
}