/*
Theme Name: OiDigital Institute
Author: ZOZUK
Author URI: https://zozuk.com/
Template: hello-elementor
Version: 2.2.0
*/

/* Menu label */
.add-new-label::before {
    content: 'New';
    background-color: rgba(255, 0, 0, 0.75);
    border-radius: 2px;
    font-size: 7px;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    font-family: Poppins;
    color: white;
    width: 40px;
    height: 13px;
    padding: 2px 2px;
    transform: translateX(33px);
    display: none;
    position: absolute;
}

/* FAQ Toggle Styling */
.jet-toggle__label-text {
    font-family: Poppins;
    font-size: 20px;
    font-weight: normal !important;
    color: var(--e-global-color-text) !important;
}

.active-toggle .jet-toggle__label-text {
    color: var(--e-global-color-9eae6f1) !important;
    font-weight: 600 !important;
}

/* Font Awesome Icons Loading Issue */
i {
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
}

.become-a-partner-menu-link a {
    color: #2767d9 !important;
}

/* Buttons */
[type='button'],
[type='submit'],
[type='button']:hover,
[type='submit']:hover {
    background: #2767d9;
    border-radius: 100px;
    font-family: Poppins;
    color: white;
    font-weight: 600;
    padding: 9px 40px;
    border: 0px;
}

/* GForms progress bar */
.gform_wrapper .gf_progressbar {
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.01);
}
.gform_wrapper .gf_progressbar:after {
    background-color: transparent;
}

.gform_wrapper .gf_progressbar_percentage {
    background: none;
    background-color: #f7a70b;
}

.gform_wrapper .gf_progressbar_wrapper {
    padding: 0px;
}

/** Side cart **/
.elementor-menu-cart__product-image {
    display: none;
}

.elementor-menu-cart__product-name {
    grid-column-start: 1;
    padding: 0;
}

.elementor-menu-cart__product-name .variation {
    display: grid;
    grid-template-columns: 1fr 3fr;
}

.elementor-menu-cart__product-price {
    color: #000;
    width: 150px;
    display: inline-block;
    padding: 0;
}
.elementor-menu-cart__footer-buttons {
    display: flex !important;
    align-items: center;
    justify-content: space-around;
}
.elementor-menu-cart__footer-buttons .elementor-button {
    background: #ffb31e;
    border-radius: 50px;
    height: auto;
    color: #000;
}

.elementor-menu-cart__footer-buttons .elementor-button--view-cart {
    background: transparent;
    color: dodgerblue;
    padding: 0;
}

.elementor-menu-cart__footer-buttons .elementor-button--checkout {
    font-weight: bold;
}

/* Menu New Icon */
.menu-item-has-children.new-icon::before {
    content: 'NEW';
    display: block;
    position: absolute;
    transform: translate(5px, -6px);
    font-size: 9px;
    font-weight: bold;
    background-color: red;
    color: white;
    padding: 2px 5px 1px 5px;
    border-radius: 2px;
    z-index: 10;
}

@media only screen and (max-width: 600px) {
    .menu-item-has-children .new-icon::before {
        transform: translate(3px, 3px);
    }
}

/* Menu Children New Icon */
.new-icon > .elementor-sub-item::before {
    content: '';
    display: block;
    position: absolute;
    transform: translate(-15px, 0px);
    background-color: red;
    width: 7px;
    height: 7px;
    border-radius: 200px;
    z-index: 10;
    animation-name: 'mobile-menu-blinker';
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@media only screen and (max-width: 600px) {
    .new-icon > .elementor-sub-item::before {
        transform: translate(-15px, 0px);
    }
}

@keyframes mobile-menu-blinker {
    0% {
        opacity: 1;
    }
    80% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
    }
}

/* Product filter menu horizontal scrollbars & hover styles */
.mobile-navmenu {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: hidden;
    justify-content: space-between;
    padding-left: 24px;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.mobile-navmenu:hover {
    overflow-x: auto;
}

@media only screen and (max-width: 700px) {
    overflow-x: auto;
}

/* Style the tab */
.tab {
    overflow: hidden;
    background: white;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    color: #10144e;
    border-radius: 0px;
    font-weight: 600;
    font-family: Poppins;
    width: 50%;
    border-radius: 7px 7px 0px 0px;
}

.tab button .fas {
    color: orange;
    margin-left: 1em;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: white;
    color: RGB(16, 20, 78);
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #10144e;
    color: white;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    background: #10144e;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}
.fallback-links {
    text-align: center;
    margin: 1rem 0px;
    font-weight: bold;
}
