:root {
    scroll-behavior: smooth;
}

section.app_container {
    max-width: 450px;
    margin: auto;
}

.main_color {
    color: #37c7c7;
}

a {
    text-decoration: none;
}

a:hover {
    color: #37c7c7;
    cursor: pointer;
    text-decoration: none;
}

@font-face {
    font-family: popins;
    src: url("../fonts/Poppins-Regular.ttf");
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: popins;
}

.btn-primary {
    background-color: #37c7c7;
    border-color: #37c7c7;
}

.btn-outline-primary {
    color: #37c7c7;
    border-color: #37c7c7;
}

.btn-check:active + .btn-primary,
.btn-check:checked + .btn-primary,
.btn-primary.active,
.btn-primary:active,
.show > .btn-primary.dropdown-toggle,
.btn-primary:hover,
.btn-check:focus + .btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: #5382f1;
    border-color: #5382f1;
    box-shadow: none;
}

body {
    font-family: popins;
    padding-top: 55px;
    padding-bottom: 90px;
    height: 100%;
}

.alert-primary {
    font-size: 15px;
    background-color: #37c7c7;
    color: #fff;
    position: absolute;
    top: 55px;
}

.period_popup .modal-footer,
.period_popup .modal-header {
    border: 0;
}

.app_container {
    overflow: hidden;
    width: 100%;
}

.header {
    position: fixed;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
    height: 55px;
    background-color: #fbfbfb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 15px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}
.header .drower :nth-child(2) {
    display: none;
}
.header .drower.active :nth-child(2) {
    display: block;
}
.header .drower.active :first-child {
    display: none;
}
.header .page_name {
    font-size: 17px;
    font-weight: 600;
}
.header .notification {
    position: relative;
}
.header .notification__notify::after {
    content: attr(data-notification);
    position: absolute;
    font-size: 11px;
    background-color: #37c7c7;
    height: 17px;
    width: 17px;
    padding: 3px;
    border-radius: 50%;
    color: #fff;
    right: 10px;
    top: -7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar .content {
    transform: translate(-100%, 0);
    transition: all 0.3s ease-in-out;
}
.sidebar.active .content {
    transform: translate(0, 0) !important;
}
.sidebar.active .overlay {
    transform: translate(0, 0) !important;
}
.sidebar .overlay {
    position: fixed;
    top: 55px;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 50;
    transform: translate(-100%, 0);
}
.sidebar .content {
    position: fixed;
    width: 70%;
    top: 55px;
    bottom: 0;
    left: 0;
    background: #fff;
    z-index: 100;
}

.bottom_nav {
    position: fixed;
    z-index: 10;
    background-color: #fbfbfb;
    height: 90px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    padding-inline: 15px;
}
.bottom_nav__icons {
    display: flex;
    justify-content: space-around;
    width: 100%;
}
.bottom_nav__icons a {
    display: inline-block;
}
.bottom_nav__icons a img {
    width: 25px !important;
}
.bottom_nav__icons .active {
    position: relative;
    filter: invert(30%) sepia(100%) saturate(542%) hue-rotate(138deg)
        brightness(81%) contrast(90%);
}
.bottom_nav__icons .active::after {
    content: "";
    background-color: #37c7c7;
    width: 12px;
    height: 12px;
    position: absolute;
    border-radius: 50%;
    top: -20px;
    left: 7.5px;
}

.body_content {
    padding: 25px 15px;
}

.welcome {
    font-weight: 600;
    font-size: 18px;
}
.welcome.welcome_small {
    font-size: clamp(17px, 3vw, 25px);
}

.count_boxes .box_item {
    background-color: #f8faff;
    height: 140px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 25px;
    border-radius: 7px;
    padding: 15px 10px;
}
.count_boxes .box_item .box_title {
    font-size: 17px;
    margin-top: 10px;
}
.count_boxes .box_item .box_number {
    font-weight: 700;
    font-size: 20px;
}

.sec_title {
    font-size: 19px;
    font-weight: 700;
}

.view_all {
    color: #9d9d9d;
}

.pricing {
    overflow: hidden;
}
.pricing_item {
    background: #fff;
    margin: 5px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    border-radius: 7px;
    padding: 30px 5px 25px 5px;
    text-align: center;
    overflow: hidden;
    position: relative;
    padding-inline: 15px;
}
.pricing_item-tag {
    background-color: #37c7c7;
    position: absolute;
    left: -41px;
    top: 17px;
    font-size: 16px;
    transform: rotate(-47deg);
    color: #fff;
    width: 150px;
    text-align: center;
    padding: 3px;
}
.pricing_item-title {
    font-size: 25px;
    font-weight: 600;
}
.pricing_item-price {
    font-size: 35px;
    font-weight: 700;
    color: #37c7c7;
}
.pricing_item-period {
    color: #9d9d9d;
    font-size: 17px;
    margin-bottom: 15px;
}
.pricing_item-list {
    width: 100%;
    text-align: left;
    padding: 0 20px;
    margin-bottom: 15px;
}
.pricing_item-list li {
    font-size: 18px;

    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.pricing_item-list li::before {
    content: "";
    height: 15px;
    width: 15px;
    background-image: url(../images/icons/price-dot.svg);
    background-size: cover;
    display: inline-block;
    margin: 0px 7px -1px 0;
}
.pricing_item-prepaid li {
    font-size: 20px;
}
.pricing_item-prepaid li p {
    font-weight: bolder;
    margin: 5px 0 15px 0;
    margin-left: auto;
    margin-bottom: 0;
}
.pricing_pronze {
    background-color: #fdf4ef;
}

.services_box {
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin: 15px 0;
    border-radius: 7px;
}
.services_box:last-child {
    margin-bottom: 0;
}
.services_box:first-child {
    margin-top: 0;
}
.services_box.premium {
    border: 2px solid #5382f1;
}
.services_box.premium .subscription img.premium {
    display: inline-block !important;
}
.services_box.premium .subscription span {
    color: #5382f1;
}
.services_box.pro {
    border: 2px solid #d50be7;
}
.services_box.pro .subscription img.pro {
    display: inline-block !important;
}
.services_box.pro .services_box_header span {
    color: #d50be7;
}
.services_box_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.services_box_body {
    margin: 10px 0;
}
.services_box_body .title {
    display: flex;
    align-items: center;
    margin: 10px 0;
    color: #000;
    font-weight: 600;
    font-size: 18px;
}
.services_box_body .title span {
    margin-left: 5px;
}
.services_box_body .des {
    margin: 10px 0;
}
.services_box_footer {
    display: flex;
    align-items: center;
    justify-content: end;
}
.services_box_footer .btn {
    margin-left: 5px;
}

.services_taps {
    width: 100%;
    display: flex;
    margin-top: 15px;
    padding: 5px 0;
    flex-wrap: nowrap;

    overflow-x: auto;
    margin-bottom: 15px;
}
.services_taps::-webkit-scrollbar {
    width: 0;
}
.services_taps-item {
    height: 125px;
    margin: 0 8px;
}
.services_taps-item img {
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    border-radius: 7px;
}
.services_taps-item.active p {
    font-weight: 600;
}
.services_taps-item p {
    margin: 7px 0;
    font-size: 13px;
    text-align: center;
}

.service_subscription {
    margin-top: 25px;
}
.service_subscription .plan {
    font-size: 13px;
    padding: 10px;
    text-align: center;
}
.service_subscription .premium {
    color: #5382f1;
    font-weight: 700;
}
.service_subscription .pro {
    color: #d50be7;
    font-weight: 700;
}

.form-group {
    margin-bottom: 15px;
}

.form-control:not(textarea),
.form-select:not(textarea) {
    height: 45px;
}

.input-group {
    margin-bottom: 15px;
}

.service_form {
    margin-top: 15px;
}

input[type="file"] {
    height: 38px;
}

.editor_shorts {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.editor_shorts-item {
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background: #f3f4f8;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.text_editor-tools {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #2d2d2d;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding-top: 20px;
    font-size: 17px;
}
.text_editor-tools li {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    cursor: pointer;
}
.text_editor-tools li button {
    padding: 0;
}
.text_editor-tools li button i {
    font-size: 19px;
}
.text_editor-tools li:hover i {
    color: #37c7c7;
}
.text_editor-textarea {
    padding: 15px;
    border-top: 0;
    height: 55vh;
    overflow-x: auto;
}

.pricing_taps .nav-tabs .nav-item.show .nav-link,
.pricing_taps .nav-tabs .nav-link.active {
    border: 0;
    color: #37c7c7 !important;
    font-weight: 700;
    background-color: white !important;
}
.pricing_taps .nav-link {
    color: #000;
}
.pricing_taps .nav-tabs {
    border: 0;
    background-color: #fbfbfb;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.pricing_taps .nav-tabs button:hover {
    border: 0;
}
.pricing_taps .nav-tabs .nav-link.active {
    background-color: unset;
}
.pricing_taps .pricing_taps .nav-tabs button {
    all: unset;
    padding: 10px;
}
.pricing_taps .nav-tabs .nav-link {
    all: unset;
    padding: 10px;
}
.pricing_taps .package-top-des {
    font-size: 15px;
    padding: 10px 5px;
}

.payment_poup .modal-dialog.modal-dialog-centered {
    display: flex;
    align-items: end;
    min-height: 100% !important;
}
.payment_poup .modal.fade.show .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, 0);
    margin: 0;
}
.payment_poup .modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, 50px);
    margin: 0;
}
.payment_poup .modal-content {
    border-radius: 40px 40px 0 0;
}
.payment_poup .modal-body {
    min-height: 200px;
}
.payment_poup .modal-body-checkout {
    padding-top: 15px;
}
.payment_poup .modal-body-checkout h6 {
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    margin-bottom: 25px;
    color: #37c7c7;
}
.payment_poup .modal-body-checkout p {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    text-transform: capitalize;
}
.payment_poup .modal-body-checkout .payment_method-box {
    padding: 15px;
    border-radius: 7px;
    min-height: 60px;
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    margin: 15px 0 30px 0;
    margin: 10px 0;
}
.payment_poup .modal-body-checkout .payment_method-box.active {
    background-color: #f4f4f4;
}
.payment_poup .modal-body-checkout .order_box {
    border: 1px solid #e4e4e4;
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
}
.payment_poup .modal-body-checkout .order_box p {
    color: #37c7c7;
    text-align: center;
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 20px;
}
.payment_poup .modal-body-checkout .order_box .subtotal,
.payment_poup .modal-body-checkout .order_box .taxes,
.payment_poup .modal-body-checkout .order_box .total {
    display: flex;
    align-items: center;
    padding: 5px 0;
    margin: 15px 0;
    justify-content: space-between;
    font-size: 18px;
}
.payment_poup .modal-body-checkout .order_box .subtotal span,
.payment_poup .modal-body-checkout .order_box .taxes span,
.payment_poup .modal-body-checkout .order_box .total span {
    font-weight: 700;
}
.payment_poup .modal-body-checkout .order_box .total {
    border-top: 1px dashed #37c7c7;
    padding-top: 20px;
}
.payment_poup .modal-body-checkout .order_box .total span {
    color: #37c7c7;
}
.payment_poup .modal-body .form-check {
    font-size: 13px;
    margin: 15px 0;
}
.payment_poup .modal-body .form-check input {
    width: 17px;
    height: 17px;
}
.payment_poup .modal-body .form-check label {
    padding-left: 5px;
}

.workbooks_item {
    width: 100%;
    border: 1px solid #e4e4e4;
    padding: 20px 10px;
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.workbooks_title {
    color: #000;
    margin-top: 18px;
    font-weight: 600;
    font-size: 17px;
}
.workbooks_num {
    margin-top: 10px;
    color: #fb9964;
    font-size: 17px;
    font-weight: bold;
}

.workbooks.ai-t img {
    width: 60px;
}
.workbooks.ai-t .workbooks_title {
    font-size: 12px !important;
}
.workbooks.ai-t .soon {
    position: relative;
    filter: grayscale(100%);
    opacity: 0.5;
    pointer-events: none;
}
.workbooks.ai-t .soon::after {
    content: "  soon";
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 12px;
}

.no_documents {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 70vh;
}
.no_documents img {
    margin-bottom: 50px;
}
.no_documents .btn {
    max-width: 300px;
}

.documents_item {
    padding: 15px;
    border: 1px solid #e4e4e4;
    border-radius: 7px;
    margin: 20px 0;
}
.documents_header {
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.documents_lang {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.documents_lang div span {
    font-weight: bold;
}
.documents_lang div span.php {
    color: blue;
}
.documents_lang div span.html {
    color: red;
}
.documents_body {
    padding: 15px 0;
}
.documents_body span {
    font-weight: bold;
    font-size: 15px;
}
.documents_footer {
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-size: 12px;
}
.documents_footer .info {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    flex: 1.7;
}
.documents_footer .info span {
    font-weight: bold;
}
.documents_footer .controls {
    flex: 0.7;
    display: inline-flex;
    margin: auto;
    justify-content: center;
    flex-wrap: wrap;
    -moz-column-gap: 5px;
    column-gap: 5px;
}
.documents_footer .controls .btn {
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}

.alert_modale_body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    font-size: 18px;
}
.alert_modale .modal-footer {
    display: flex;
    justify-content: center;
} /*# sourceMappingURL=style.css.map */

.subscription .btn {
    color: #00bdcc;
    background: transparent;
    border: 0;
}

.services_tabs-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.services_tabs-item p {
    margin: 8px 0;
    font-size: 13px;
}
.services_taps-icon {
    background: #fff;
    box-shadow: 0 0px 16px 4px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
}
.service-tab {
    padding: 10px;
    justify-content: center;
    flex: 0 0 20%;
}

.btn-yellow {
    background: transparent !important;
    border: 0;
}
.tab-menu-heading li.nav-item {
    width: auto !important;
    font-size: 14px;
}

.pricing_taps .nav-tabs .nav-link.active {
    border-radius: 20px;
}

.checkout-wrapper-box label[aria-expanded="true"] {
    border: 0;
    box-shadow: none !important;
}

#dashboard-background {
    background: #fff !important;
}

#dashboard-background button.btn.btn-primary {
    margin: 14px 0;
}

#dashboard-background .text-primary,
#dashboard-background a {
    color: #37c7c7 !important;
}

#dashboard-background div#profile-pages {
    display: flex;
    /* flex-direction: row; */
}

#dashboard-background div#profile-pages div[class^="col-"] {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#dashboard-background div#profile-pages div:has(.fa-user-xmark) {
    flex: 0 0 100%;
}

#dashboard-background div#profile-pages div[class^="col-"] > div {
    padding: 0 !important;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 500px) {
    .service-tab {
        flex: 0 0 33%;
    }
}

.checkout-wrapper-box label.gateway {
    box-shadow: none !important;
    border: 0 !important;
}

/* section.app_container {
    width: 100%;
    max-width: 560px !important;
} */
