.svg-icon i {
    font-size: 1.3em;
}

.form-group {
    margin-bottom: 24px;
}

.col-auto, .col-sm-auto, .col-md-auto, .col-lg-auto, .col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

label input[type='radio'], label input[type='checkbox'] {
    /*display: none;*/
}

input[type='radio']:checked + .color-selected i {
    display: inline;
}

.color-selected {
    position: relative;
    cursor: pointer;
}

.color-selected i {
    display: none;
    position: absolute;
    font-size: 1.2em;
    color: mediumseagreen;
    right: -5px;
    top: -5px;;
}

section.pricing-plans {
    padding-bottom: 50px;
}

@media (min-width: 992px) {
    section.pricing-plans {
        padding-bottom: 90px;
    }
}

section.pricing-plans .section-heading {
    text-align: center;
}

section.pricing-plans .plan-item {
    text-align: center;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    border-radius: 15px;
    margin-bottom: 30px;
}

section.pricing-plans .plan-item .top-content {
    padding: 40px 30px 30px 30px;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

section.pricing-plans .plan-item .top-content h4 {
    color: #ffffff;
    letter-spacing: 0.25px;
    font-weight: 500;
}

section.pricing-plans .plan-item .top-content h2 {
    font-size: 44px;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

section.pricing-plans .plan-item .top-content h2:after {
    font-style: normal;
    font-weight: 500;
    color: #ffffff;
    font-size: 24px;
    left: 0;
    top: -12px;
    position: relative;
    content: 'CFA';
    margin-left: 5px;
}

section.pricing-plans .plan-item .top-content span {
    display: block;
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 0.25px;
}

section.pricing-plans .plan-item .pink {
    background-color: #fd658f;
}

section.pricing-plans .plan-item .purple {
    background-color: #7b6fe5;
}

section.pricing-plans .plan-item .down-content {
    padding: 50px 30px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

section.pricing-plans .plan-item .down-content ul {
    margin-bottom: 40px;
}

section.pricing-plans .plan-item .down-content ul li {
    font-size: 14px;
    color: #716f85;
    margin-bottom: 20px;
}

section.pricing-plans .plan-item .down-content ul li:last-child {
    margin-bottom: 0px;
}

section.pricing-plans .plan-item .down-content ul .line-through {
    text-decoration: line-through;
}
.plan-item .top-content{
    position: relative;
}
.plan-item .card-toolbar{
    position: absolute;
    right: 20px;
    top: 10px;
}
.main-purple-button {
    position: relative;
    max-width: 100%;
}

.main-purple-button a {
    display: inline-block;
    text-align: center;
    color: #ffffff;
    background-color: #7b6fe5;
    font-size: 14px;
    font-weight: 400;
    padding: 13px 35px;
    border-radius: 25px;
    letter-spacing: 0.15px;
    z-index: 1;
    position: relative;
}

.main-purple-button a:after {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fd658f;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    content: '';
    display: inline-block;
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: -1;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all transform 300ms ease-out 200ms;
    transition: all transform 300ms ease-out 200ms;
}

.main-purple-button a:hover::after {
    width: 100%;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: -webkit-transform 300ms ease-out;
    transition: -webkit-transform 300ms ease-out;
    transition: transform 300ms ease-out;
    transition: transform 300ms ease-out, -webkit-transform 300ms ease-out;
}

.main-pink-button {
    position: relative;
    max-width: 100%;
}

.main-pink-button a {
    display: inline-block;
    text-align: center;
    color: #ffffff;
    background-color: #fd658f;
    font-size: 14px;
    font-weight: 400;
    padding: 13px 35px;
    border-radius: 25px;
    letter-spacing: 0.15px;
    z-index: 1;
    position: relative;
}

.main-pink-button a:after {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #7b6fe5;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    content: '';
    display: inline-block;
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: -1;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all transform 300ms ease-out 200ms;
    transition: all transform 300ms ease-out 200ms;
}

.main-pink-button a:hover::after {
    width: 100%;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: -webkit-transform 300ms ease-out;
    transition: -webkit-transform 300ms ease-out;
    transition: transform 300ms ease-out;
    transition: transform 300ms ease-out, -webkit-transform 300ms ease-out;
}

.main-white-button {
    position: relative;
    max-width: 100%;
}

.main-white-button a {
    display: inline-block;
    text-align: center;
    color: #fd658f;
    background-color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    padding: 13px 35px;
    border-radius: 25px;
    letter-spacing: 0.15px;
    z-index: 1;
    position: relative;
}

.main-white-button a:after {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #36334c;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    content: '';
    display: inline-block;
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: -1;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all transform 300ms ease-out 200ms;
    transition: all transform 300ms ease-out 200ms;
}

.main-white-button a:hover {
    color: #ffffff;
}

.main-white-button a:hover::after {
    width: 100%;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: -webkit-transform 300ms ease-out;
    transition: -webkit-transform 300ms ease-out;
    transition: transform 300ms ease-out;
    transition: transform 300ms ease-out, -webkit-transform 300ms ease-out;
}
.btn-rm{
    position: relative;
}
.btn-rm form {
    position: absolute;
    flex: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
}
.btn-rm form button{
    padding: 0;
    display: block;
    width: 100%;
    height: 100%;
}
.countdown{
    display: flex;
    justify-content: center;
    margin:20px auto;
}
.countdown .counter{
    background: white;
    /*padding:10Px;*/
    margin:0 10px;
    width:54px;
    height:54Px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius:5px;
    box-shadow: 0 0 5px gainsboro;
    font-weight: bolder;
    font-size: 1.5em;
    position: relative;
}
.countdown .counter:after {
    content: ':';
    position: absolute;
    top: 0;
    height: 100%;
    width: 20px;
    right: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown .seconds .counter:after{
    display: none;
}

#page {
    display: flex;
    flex: 1;
}
.login-background{
    background-size:100% 50%;
    background-image: url('./../media/svg/illustrations/progress.svg');
}
.topbar .b-dropdown-text{
    padding:0;
}

.typing {
    position: absolute;
    right: 5Px;
    display: flex;
    top: 50%;
    transform: translateY(-50%);
}

.typing .point {
    width: 5Px;
    height: 5px;
    background: rgba(53, 53, 53, 0.47);
    margin: 0 2px;
    border-radius: 100%;
    animation: bounce 1s ease infinite;
}

.typing .two {
    animation: bounce 1s ease .1s infinite;
}

.typing .three {
    animation: bounce 1s ease .2s infinite;
}

@keyframes bounce {
    0% {
        transform: scale(0) translateY(0)
    }
    20% {
        transform: scale(1) translateY(-10px)
    }
    40% {
        transform: scale(1) translateY(0)
    }
    80% {
        transform: scale(1) translateY(10px)
    }
    100% {
        transform: scale(0) translateY(0)
    }
}

.searchin {
    position: absolute;
    right: 0;
    display: flex;
    top: 50%;
    transform: translateY(-50%);
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px gray solid;
    border-top: 2Px transparent solid;
    animation: rotate .5s ease infinite;

    border-radius: 100%;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}
.wave {
    background-color: #F3F6F9;
    overflow: hidden;
    position: relative;
}
.wave > div {
    z-index: 1;
}
.wave:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: -1;
}
.wave:after {
    content: " ";
    width: 1000px;
    height: 1025px;
    position: absolute;
    bottom: 65%;
    left: -250px;
    border-radius: 35%;
    background: white;
    z-index: 0;
}
.wave:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.wave-animate:after {
    -webkit-animation: animate-wave 15s infinite linear;
    animation: animate-wave 15s infinite linear;
}
.wave-animate-slower:after {
    -webkit-animation: animate-wave 30s infinite linear;
    animation: animate-wave 30s infinite linear;
}
.wave-animate-slow:after {
    -webkit-animation: animate-wave 25s infinite linear;
    animation: animate-wave 25s infinite linear;
}
.wave-animate-fast:after {
    -webkit-animation: animate-wave 10s infinite linear;
    animation: animate-wave 10s infinite linear;
}
.wave-animate-faster:after {
    -webkit-animation: animate-wave 5s infinite linear;
    animation: animate-wave 5s infinite linear;
}
.wave.wave-primary {
    background-color: rgba(54, 153, 255, 0.1) !important;
}
.wave.wave-primary .svg-icon svg g [fill] {
    fill: #3699FF;
}
.wave.wave-secondary {
    background-color: rgba(228, 230, 239, 0.1) !important;
}
.wave.wave-secondary .svg-icon svg g [fill] {
    fill: #E4E6EF;
}
.wave.wave-success {
    background-color: rgba(27, 197, 189, 0.1) !important;
}
.wave.wave-success .svg-icon svg g [fill] {
    fill: #1BC5BD;
}
.wave.wave-info {
    background-color: rgba(137, 80, 252, 0.1) !important;
}
.wave.wave-info .svg-icon svg g [fill] {
    fill: #8950FC;
}
.wave.wave-warning {
    background-color: rgba(255, 168, 0, 0.1) !important;
}
.wave.wave-warning .svg-icon svg g [fill] {
    fill: #FFA800;
}
.wave.wave-danger {
    background-color: rgba(246, 78, 96, 0.1) !important;
}
.wave.wave-danger .svg-icon svg g [fill] {
    fill: #F64E60;
}
.wave.wave-light {
    background-color: rgba(243, 246, 249, 0.1) !important;
}
.wave.wave-light .svg-icon svg g [fill] {
    fill: #F3F6F9;
}
.wave.wave-dark {
    background-color: rgba(24, 28, 50, 0.1) !important;
}
.wave.wave-dark .svg-icon svg g [fill] {
    fill: #181C32;
}
.wave.wave-white {
    background-color: rgba(255, 255, 255, 0.1) !important;
}
.wave.wave-white .svg-icon svg g [fill] {
    fill: #ffffff;
}

@keyframes animate-wave {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}



.offcanvas,
.offcanvas-mobile {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}
.offcanvas .offcanvas-header.offcanvas-header-navs,
.offcanvas-mobile .offcanvas-header.offcanvas-header-navs {
    position: relative;
}
.offcanvas .offcanvas-header.offcanvas-header-navs .offcanvas-close,
.offcanvas-mobile .offcanvas-header.offcanvas-header-navs .offcanvas-close {
    position: absolute;
    top: 0;
    right: 0;
}
.offcanvas .offcanvas-content .offcanvas-demo,
.offcanvas-mobile .offcanvas-content .offcanvas-demo {
    border: 5px solid #EBEDF3;
}
.offcanvas .offcanvas-content .offcanvas-demo.offcanvas-demo-active,
.offcanvas-mobile .offcanvas-content .offcanvas-demo.offcanvas-demo-active {
    border: 5px solid #3699FF;
}

.offcanvas {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 1px 9px -3px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 1px 9px -3px rgba(0, 0, 0, 0.25);
}

@media (max-width: 991.98px) {
    .offcanvas-mobile {
        background-color: #ffffff;
        -webkit-box-shadow: 0px 1px 9px -3px rgba(0, 0, 0, 0.25);
        box-shadow: 0px 1px 9px -3px rgba(0, 0, 0, 0.25);
        overflow: auto;
    }
}
.offcanvas {
    z-index: 1001;
    position: fixed;
    top: 0;
    bottom: 0;
    -webkit-transition: left 0.3s ease, right 0.3s ease, bottom 0.3s ease, top 0.3s ease;
    transition: left 0.3s ease, right 0.3s ease, bottom 0.3s ease, top 0.3s ease;
    left: -395px;
    width: 375px;
}
.offcanvas.offcanvas-on {
    -webkit-transition: left 0.3s ease, right 0.3s ease, bottom 0.3s ease, top 0.3s ease;
    transition: left 0.3s ease, right 0.3s ease, bottom 0.3s ease, top 0.3s ease;
    left: 0;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .offcanvas {
        -webkit-transition: none !important;
        transition: none !important;
    }
}

.offcanvas.offcanvas-right {
    right: -395px;
    left: auto;
}
.offcanvas.offcanvas-right.offcanvas-on {
    -webkit-transition: left 0.3s ease, right 0.3s ease, bottom 0.3s ease, top 0.3s ease;
    transition: left 0.3s ease, right 0.3s ease, bottom 0.3s ease, top 0.3s ease;
    right: 0;
    left: auto;
}

.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    z-index: 1000;
    -webkit-animation: animation-offcanvas-fade-in 0.6s ease 1;
    animation: animation-offcanvas-fade-in 0.6s ease 1;
}

@-webkit-keyframes animation-offcanvas-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes animation-offcanvas-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.offcanvas {
    background: #ffffff;
    -webkit-box-shadow: 0px 1px 9px -3px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 1px 9px -3px rgba(0, 0, 0, 0.25);
}

.offcanvas-overlay {
    background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 425px) {
    .offcanvas {
        width: 90% !important;
    }
}
@media (max-width: 991.98px) {
    [data-offcanvas-offcanvas=on] {
        overflow: hidden !important;
    }
}
@media (max-width: 991.98px) {
    .offcanvas-mobile {
        z-index: 1001;
        position: fixed;
        top: 0;
        bottom: 0;
        -webkit-transition: left 0.3s ease, right 0.3s ease, bottom 0.3s ease, top 0.3s ease;
        transition: left 0.3s ease, right 0.3s ease, bottom 0.3s ease, top 0.3s ease;
        left: -395px;
        width: 375px;
    }
    .offcanvas-mobile.offcanvas-mobile-on {
        -webkit-transition: left 0.3s ease, right 0.3s ease, bottom 0.3s ease, top 0.3s ease;
        transition: left 0.3s ease, right 0.3s ease, bottom 0.3s ease, top 0.3s ease;
        left: 0;
    }
}
@media screen and (max-width: 991.98px) and (-ms-high-contrast: active), (max-width: 991.98px) and (-ms-high-contrast: none) {
    .offcanvas-mobile {
        -webkit-transition: none !important;
        transition: none !important;
    }
}
@media (max-width: 991.98px) {
    .offcanvas-mobile.offcanvas-mobile-right {
        right: -395px;
        left: auto;
    }
    .offcanvas-mobile.offcanvas-mobile-right.offcanvas-mobile-on {
        -webkit-transition: left 0.3s ease, right 0.3s ease, bottom 0.3s ease, top 0.3s ease;
        transition: left 0.3s ease, right 0.3s ease, bottom 0.3s ease, top 0.3s ease;
        right: 0;
        left: auto;
    }
}
@media (max-width: 991.98px) {
    .offcanvas-mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        overflow: hidden;
        z-index: 1000;
        -webkit-animation: animation-offcanvas-fade-in 0.6s ease 1;
        animation: animation-offcanvas-fade-in 0.6s ease 1;
    }
}
@media (max-width: 991.98px) {
    @-webkit-keyframes animation-offcanvas-fade-in {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    @keyframes animation-offcanvas-fade-in {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
}
@media (max-width: 991.98px) {
    .offcanvas-mobile {
        background: #ffffff;
        -webkit-box-shadow: 0px 1px 9px -3px rgba(0, 0, 0, 0.25);
        box-shadow: 0px 1px 9px -3px rgba(0, 0, 0, 0.25);
    }
}
@media (max-width: 991.98px) {
    .offcanvas-mobile-overlay {
        background: rgba(0, 0, 0, 0.1);
    }
}
@media (max-width: 425px) {
    .offcanvas-mobile {
        width: 90% !important;
    }
}
@media (max-width: 991.98px) {
    [data-offcanvas-offcanvas-mobile=on] {
        overflow: hidden !important;
    }
}


.btn.btn-xs i {
    font-size: 1rem;
    padding-right: 0.3rem;
}
.btn.btn-xs .svg-icon {
    margin-right: 0.3rem;
}
.btn.btn-xs .svg-icon svg {
    height: 16px;
    width: 16px;
}
.btn.btn-icon.btn-xs {
    height: 24px;
    width: 24px;
}

.b-dropdown-text{
    padding:0;
}
.table-responsive{
    overflow-x: visible!important;
}

input[type='text'],input[type='number'],.btn,select,textarea{
    border-radius:0!important;
}
label{
    /*margin-bottom:10px;*/
}
#kt_content_container{
    display: flex;
    flex-direction: column;
}
.input-group-text{
    border-radius:0!important;
}
