﻿/* BASE */

:root {
    --blue: #007aff;
    --indigo: #5603ad;
    --purple: #510fa8;
    --pink: #f074ad;
    --red: #ff3b30;
    --orange: #fa9500;
    --yellow: #fc0;
    --green: #4cd964;
    --teal: #24b7fa;
    --cyan: #4bd6e5;
    --white: #fff;
    --gray: #6c7686;
    --gray-dark: #343a40;
    --light: #ced4da;
    --lighter: #f5f9fb;
    --primary: #003669;
    --secondary: #fafbfe;
    --success: #4cd964;
    --info: #24b7fa;
    --warning: #fa9500;
    --danger: #ff3b30;
    --light: #ced4da;
    --dark: #05172a;
    --white: #fff;
    --darker: #020b13;
    --color-primary: #ff9438;
    --color-secondary: #67aae8;
    --color-bg-light: #eef9fc;
    --color-bg-dark: #3e497a;
    --color-heading-1: #000000;
    --color-heading-2: #ff9438;
    --color-heading-3: #fe6a0f;

    --logo-blue: #0086ff;
}


body {
    font-family: Nunito, Arial;
    font-size: 16px;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    font-weight: 400;
    font-style: normal;
    color: #000;
    line-height: 1.5;
    background-color: #fff;
    counter-reset: my-sec-counter;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

p {
    font-family: "Nunito Sans"
}

.fw-900 {
    font-weight: 900;
}

.hideuntilready {
    opacity: 0;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}
    .hideuntilready.visible {
        opacity: 1;
        visibility: visible;
    }

.global-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: #FF8F36;
    -webkit-transition: all linear 0.1s;
    transition: all linear 0.1s;
    z-index: 9999999;
}

.pb-6 {
    padding-bottom: 4rem !important;
}

.pt-6 {
    padding-top: 4rem !important;
}

#page-container {
    /*position: relative;
    min-height: 90vh;*/
}

#content-wrap {
    /*padding-bottom: 187px;  Footer height */
}

footer {
    margin-top: auto;
}

#HideAfter_5_Seconds {
    -moz-animation: cssAnimation 0s ease-in 5s forwards;
    /* Firefox */
    -webkit-animation: cssAnimation 0s ease-in 5s forwards;
    /* Safari and Chrome */
    -o-animation: cssAnimation 0s ease-in 5s forwards;
    /* Opera */
    animation: cssAnimation 0s ease-in 5s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.cursor-pointer {
    cursor: pointer;
}

.tab-btn-group i, .header-sec i {
    color: var(--logo-blue);
}

/* sub header */
.sub-header-row {
    transform: translateY(20%);
    line-height: 25px;
}

.sub-header-title {
    font-size: 24px;
    font-weight: 600;
    color: #c8c8c8;
    display: none;
}

.sub-header-heading {
    color: #c8c8c8;
    display: none;
}

.bg-sub-header {
    background: linear-gradient(white, #f7f8fa), linear-gradient(white, #f7f8fa), linear-gradient(white, #f7f8fa);
    background-repeat: repeat, repeat, repeat;
    background-size: auto, auto, auto;
    background-repeat: repeat, repeat, repeat;
    background-size: auto, auto, auto;
    background-size: 0px 50%, 100% 125px, 0px 50%;
    background-repeat: no-repeat;
    border: none;
    /*color: #999;
    background-position: bottom left, bottom center, bottom right;*/
    height: 70px;
}

.text-navy {
    color: navy;
}

.text-orangered {
    color: orangered;
}

.fulljustify {
    text-align: justify;
}

    .fulljustify:after {
        content: "";
        display: inline-block;
        width: 100%;
    }

.btn.btn2 {
    padding: 15px 23px;
}

    .btn.btn2.plans {
        padding: 15px 38px;
    }

.min-2-lines {
    /* Sets the minimum height to exactly 2 lines of text */
    min-height: 2lh;
    /* Optional: ensures text doesn't look cramped */
    line-height: 1.5;
}
  
.ctl-btn {
    font-size: 17px;
    color: #ffffff;
    line-height: 1;
    font-weight: 700;
    padding: 15px 42px;
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    text-align: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

    .ctl-btn-check:focus + .ctl-btn,
    .ctl-btn:focus {
        outline: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .ctl-btn:hover {
        color: var(--color-primary);
        background: #fff;
    }

.ctl-text-primary {
    color: #fa944f;
}

.custom-toolbar-button {
    background: #f8f9fa;
    box-shadow: none;
    color: #212529;
    padding: 5px;
}

    .custom-toolbar-button:hover {
        background: #5c636a;
        border-color: #6c757d;
        border-radius: 5px;
        color: white;
    }

@keyframes cssAnimation {
    to {
        width: 0;
        height: 0;
        overflow: hidden;
    }
}

@-webkit-keyframes cssAnimation {
    to {
        width: 0;
        height: 0;
        visibility: hidden;
    }
}

.h-75vh {
    height: 75vh;
}
.h-50vh {
    height: 50vh;
}
.h-30vh {
    height: 30vh;
}
.h-25vh {
    height: 25vh;
}

.error {
    color: red;
}

.Turtle-plan-price {
    color: #1c7ba7;
}

.Turtle-plan-credits {
    color: var(--blue);
}

.Turtle-plan-header {
    color: grey;
}

.Turtle-plan-description {
    color: #6c7686;
}

.Bull-plan-price {
    color: #1c7ba7;
}

.Bull-plan-credits {
    color: var(--blue);
}

.Bull-plan-header {
}

.Bull-plan-description {
    color: #6c7686;
}

.Rabbit-plan-price {
    color: #1c7ba7;
}

.Rabbit-plan-credits {
    color: var(--blue);
}

.Rabbit-plan-header {
}

.Rabbit-plan-description {
    color: #6c7686;
}

.Whale-plan-price {
    color: #1c7ba7;
}

.Whale-plan-credits {
    color: var(--blue);
}

.Whale-plan-header {
}

.Whale-plan-description {
    color: #6c7686;
}

.Upgrade-price {
    color: #09a3ea;
}


/*Extend Bootstrap */
@media (min-width: 650px) and (max-width: 768px) {
    .container {
        max-width: 620px;
    }
}

@media (min-width: 850px) and (max-width: 992px) {
    .container {
        max-width: 820px;
    }
}

/*Override Bootstrap */
/*
.btn {
    font-size: 17px;
    color: #ffffff;
    line-height: 1;
    font-weight: 700;
    padding: 15px 42px;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    text-align: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

    .btn:focus {
        outline: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .btn:hover {
        color: var(--color-primary);
        background: #fff;
    }
 */

.btn-success {
    color: #fff;
    border-color: #4cd964;
    background-color: #1cb737;
    box-shadow: none;
}


.btn-primary {
    font-size: 17px;
    color: #fff;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
    .btn-primary:hover {
        color: var(--color-primary);
        background-color: white;
        border-color: var(--color-primary);
    }

    .btn-check:focus + .btn-primary, .btn-primary:focus {
        color: #fff;
        background-color: var(--color-primary);
        border-color: var(--color-primary);
        box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
    }

    .btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
        color: #fff;
        background-color: var(--color-primary);
        border-color: #ff5438;
    }

        .btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.25rem rgb(250, 235, 7);
        }

    .btn-primary:disabled, .btn-primary.disabled {
        color: #fff;
        background-color: #f3c59d;
        border-color: #aa5f52;
    }

.btn-outline-primary {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

    .btn-outline-primary:hover {
        color: #fff;
        background-color: var(--color-primary);
        border-color: var(--color-primary);
    }

    .btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
        box-shadow: 0 0 0 0.25rem #fac99e;
    }

    .btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
        color: #fff;
        background-color: var(--color-primary);
        border-color: var(--color-primary);
    }

        .btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
            box-shadow: 0 0 0 0.25rem #fac99e;
        }

    .btn-outline-primary:disabled, .btn-outline-primary.disabled {
        color: #f3c59d;
        background-color: transparent;
    }


.btn-close {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
    .btn-close:hover, .btn:focus {
        text-decoration: none;
    }

    .btn-close:hover {
        color: #212529;
    }

/*
    override syncfusion styles*
/
/*
.e-control, .e-css {
    font-family: 'Nunito', sans-serif !important;
    font-size: 100%;
    font-weight: normal;
}
*/

.e-control, .e-css {
    font-family: "Nunito", sans-serif !important;
}

.e-toolbar .e-tbar-btn {
    font-family: "Nunito", sans-serif !important;
}

    .e-toolbar .e-tbar-btn .e-tbar-btn-text {
        font-family: "Nunito", sans-serif !important;
    }

.e-error {
    color: #f44336;
    font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", "sans-serif", "-apple-system", "BlinkMacSystemFont";
    font-size: 14px;
    font-weight: normal;
}

/* un-selected tab text color */
.e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
    border-radius: 4px !important;
}

/* Selected tab text color */
.e-tab .e-tab-header .e-toolbar-item.e-active.e-ileft .e-tab-text, .e-tab .e-tab-header .e-toolbar-item.e-active.e-iright .e-tab-text {
    color: var(--color-primary) !important;
    font-weight: 700;
}

/*! CSS Used from: UI Purpose Theme */
/*          new classes based on original theme */
.tab-btn-group > .tab-btn:not(:last-child):not(.dropdown-toggle), .tab-btn-group > .tab-btn-group:not(:last-child) > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.tab-btn-group > .tab-btn:not(:first-child), .tab-btn-group > .tab-btn-group:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.tab-btn {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.7;
    display: inline-block;
    padding: .625rem 1.6rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    /*border: .0625rem solid transparent;*/
    border-radius: .25rem;
}

.tab-btn-secondary {
    color: #212529;
    border-color: #fafbfe;
    background-color: #fafbfe;
    box-shadow: none;
}

    .tab-btn-secondary:hover {
        color: #212529;
        border-color: #d0d9f6;
        background-color: #dae2f8;
    }

    .tab-btn-secondary:focus {
        box-shadow: none, 0 0 0 0 rgba(250, 251, 254, .5);
    }

    .tab-btn-secondary:disabled {
        color: #212529;
        border-color: #fafbfe;
        background-color: #fafbfe;
    }

    .tab-btn-secondary:not(:disabled):not(.disabled):active, .tab-btn-secondary:not(:disabled):not(.disabled).active, .show > .tab-btn-secondary.dropdown-toggle {
        color: #212529;
        border-color: #c5d1f3;
        background-color: #d0d9f6;
    }

.header-account-page .btn-group-nav {
    position: relative;
    z-index: 1;
    transform: translateY(50%);
}

.slice {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.slice-xl {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.slice-lg {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.slice-sm {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.slice:not(.border-top):not(.border-bottom):not(.delimiter-bottom):not([class*='bg-']):not(.section-rotate) + .slice:not(.border-top):not(.border-bottom):not(.delimiter-top):not([class*='bg-']) {
    padding-top: 0;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
    color: #212529;
    border-color: #c5d1f3;
    background-color: #d0d9f6;
}

.form-text {
    display: block;
    margin-top: 0.25rem;
}

.text-info {
    color: #24b7fa !important;
}

.btn-info {
    color: #fff;
    border-color: #24b7fa;
    background-color: #24b7fa;
    box-shadow: none;
}
    .btn-info:hover {
        color: #fff;
        border-color: #059fe6;
        background-color: #06a8f2;
    }

.btn:hover, .btn:focus {
    text-decoration: none;
}
.form-control-label {
    font-size: .875rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1rem;
}

.alert-success {
    color: #fff;
    border-color: #69df7d;
    background-color: #00a21b;
}

.badge-success {
    color: #16c333;
    background-color: #dff8e4;
}

    .badge-success[href]:hover,
    .badge-success[href]:focus {
        text-decoration: none;
        color: #19c035;
        background-color: #a0ebad;
    }

.badge-info {
    color: #0090d2;
    background-color: #d3f0fe;
}

    .badge-info[href]:hover,
    .badge-info[href]:focus {
        text-decoration: none;
        color: #0090d2;
        background-color: #88d8fc;
    }

.input-group-transparent .input-group-text {
    color: #adb5bd;
    border: .0625rem solid #ced4da;
    background-color: transparent;
}

.bg-gradient-warning {
    background: linear-gradient(80deg, #fa9500 0, #fa6300 100%) !important;
}

.bg-gray {
    background-color: #6c757d !important
}
.bg-green {
    background-color: #2dce89 !important
}
.btn-white {
    color: #212529;
    border-color: #fff;
    background-color: #fff;
    box-shadow: none;
}

.btn-white:hover {
    color: #212529;
    border-color: #e6e6e6;
    background-color: #ececec;
}

.btn-circle {
    border-radius: 30px;
}

.select2-selection__arrow {
    height: 40px !important;
    position: absolute !important;
    top: 5px !important;
    right: 1px !important;
    width: 30px !important;
    display: block !important;
}

.e-warning {
    color: #f38b17;
}

[data-separator='bottom-wave'] {
    /*background-position: bottom center, center; <- seems to be a typo */
    background-position: bottom center;
}

.avatar {
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    color: #fff;
    border-radius: .25rem;
    align-items: center;
    justify-content: center;
}

    .avatar.rounded-circle img {
        border-radius: 50%;
    }

    .avatar img {
        height: 100%;
    }

    .avatar span {
        background-color: #003669;
    }

    .avatar + .avatar {
        margin-left: .25rem;
    }

    .avatar + .avatar-content {
        display: inline-block;
        margin-left: .75rem;
    }

.avatar-lg {
    font-size: 1.25rem;
    width: 4.5rem;
    height: 4.5rem;
}

.avatar-sm {
    font-size: .75rem;
    width: 1.875rem;
    height: 1.875rem;
    border-radius: .2rem;
}

.avatar-w2-lg {
    font-size: 1.25rem;
    height: 4.5rem;
    width: 8.5rem;
}

.avatar-w2-sm {
    font-size: .75rem;
    height: 1.875rem;
    width: 3.75rem;
    border-radius: .2rem;
}

.avatar-group {
    line-height: 1;
    display: inline-block;
}

    .avatar-group .avatar {
        z-index: 1;
        transition: margin .15s ease-in-out;
    }

        .avatar-group .avatar:hover {
            z-index: 2;
        }

        .avatar-group .avatar img {
            border: 2px solid #fff;
        }

        .avatar-group .avatar + .avatar {
            margin-left: -1.5rem;
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }

    .avatar-group .avatar-sm + .avatar-sm {
        margin-left: -1rem;
    }

    .avatar-group:hover .avatar {
        border-top-left-radius: .25rem;
        border-bottom-left-radius: .25rem;
    }

    .avatar-group:hover .avatar-sm {
        border-top-left-radius: .2rem;
        border-bottom-left-radius: .2rem;
    }

.avatar-ungroup--hover:hover .avatar:not(:first-child) {
    margin-left: 0;
}

.avatar-parent-child {
    position: relative;
    display: inline-block;
}

.avatar-child {
    position: absolute;
    border: 2px solid #fff;
    border-radius: .2rem;
    background-color: #fff;
}

.avatar + .avatar-child {
    right: -15%;
    bottom: -9%;
    max-width: 20px;
}

.avatar-lg + .avatar-child {
    right: -7%;
    bottom: -7%;
    max-width: 26px;
}

.avatar-sm + .avatar-child {
    right: -21%;
    bottom: -15%;
    max-width: 16px;
}

.avatar-connect {
    position: relative;
}

    .avatar-connect:before {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        content: '';
        border-bottom: 2px dashed rgba(0, 0, 0, .15);
    }

    .avatar-connect ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

/* Ayan Theme Global Styles*/

a {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    outline: none !important;
    color: var(--color-primary);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    a:hover {
        color: red;
    }

a {
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

.shadow {
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, .1) !important;
}

[class*='shadow'] {
    transition: all .2s ease-in-out;
}

.orange-span {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

    .orange-span::before {
        content: "";
        width: 100%;
        height: 2px;
        background-color: var(--color-primary);
        position: absolute;
        left: 0;
        bottom: 4px;
    }

.black-span {
    color: black;
    position: relative;
    display: inline-block;
}

    .black-span::before {
        content: "";
        width: 100%;
        height: 2px;
        background-color: black;
        position: absolute;
        left: 0;
        bottom: 4px;
    }
/*********** loader *************/
.loading-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba( 255, 255, 255, .8 );
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading .loading-modal {
    overflow: hidden;
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading .loading-modal {
    display: block;
    animation: loaderbg 2s infinite;
}

.jumping-dots-loader {
    border-radius: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    width: 100px;
    height: 100px;
    z-index: 1001;
}

    .jumping-dots-loader span {
        display: inline-block;
        width: 20px;
        height: 20px;
        border-radius: 100%;
        background-color: var(--color-primary);
        margin: 35px 5px
    }

        .jumping-dots-loader span:nth-child(1) {
            animation: bounceloader 1s ease-in-out infinite
        }

        .jumping-dots-loader span:nth-child(2) {
            animation: bounceloader 1s ease-in-out 0.33s infinite
        }

        .jumping-dots-loader span:nth-child(3) {
            animation: bounceloader 1s ease-in-out 0.66s infinite
        }

.container-content {
    min-height: 230px;
}

.vertical-align-bottom {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
}

.control-label-font {
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  font-size:14px;
  font-weight:normal
}
@keyframes bounceloader {

    0%, 75%, 100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }

    25% {
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}

@keyframes loaderbg {
    0% {
        background-color: rgba( 255, 255, 255, .1 );
    }

    50% {
        background-color: rgba( 255, 255, 255, .7 );
    }

    100% {
        background-color: rgba( 255, 255, 255, .3);
    }
}