:root {
    --gf-alpha-primary-color: #152036;
    --gf-alpha-theme-color: #F08F80;
    --eagf-text-color: #8A8C98;
    --eagf-bg-color: #FFF6EF;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,100&display=swap');

.toplevel_page_alphagf_addons #wpcontent {
    padding-left: 0;
    background-color: #fffaf7;
}

.alphagf_dashboard {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    font-size: 15px;
    line-height: 20px;
    color: var(--gf-alpha-primary-color);
}

.alphagf_logo h2 {
    margin: 0;
}

.alphagf_header {
    background: #FFF;
    padding: 15px 30px;
    display: grid;
    grid-template-columns: 250px auto 250px;
    gap: 30px;
    border-bottom: 1px solid rgba(240, 143, 128, .3);
    box-shadow: 0px 4px 6px rgba(53, 66, 134, 0.07);
}

.alphagf_menu ul {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 0;
}

.alphagf_menu ul li {
    margin: 0;
    transition: 0.3s;
}

.alphagf_menu ul li a {
    text-decoration: none;
    font-size: 15px;
    color: var(--gf-alpha-primary-color);
    padding: 0 20px 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    height: 44px;
    border-radius: 6px;
    position: relative;
    user-select: none;
    border: 1px solid transparent;
    outline: none;
}

.alphagf_menu ul li a:focus {
    outline: none;
    box-shadow: none;
}

.alphagf_menu ul li i {
    font-size: 24px;
}

.alphagf_menu ul li.active a,
.alphagf_menu ul li a:hover {
    border-color: var(--gf-alpha-theme-color);
    color: var(--gf-alpha-theme-color);
    background: #FFF6EF;
}

.alphagf_support {
    text-align: right;
}

.alphagf_support a {
    text-decoration: none;
    font-size: 16px;
    color: #FFF;
    padding: 0 25px 0 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    height: 44px;
    border-radius: 6px;
    position: relative;
    user-select: none;
    background: var(--gf-alpha-theme-color);
    border: 1px solid var(--gf-alpha-theme-color);
}

.alphagf_support a:hover {
    background: #FFF;
    color: var(--gf-alpha-theme-color);
    box-shadow: 0px 4px 6px rgba(53, 66, 134, 0.07);
}

.alphagf_support a i {
    font-size: 22px;
}

.alphagf_logo {
    display: flex;
    align-items: center;
}


/* Addons style */
main.alpha-dashboard-main {
    padding: 40px 26px;
}

.alphagf_addons_wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.alphagf_single_addon {
    background: #FFFFFF;
    border-radius: 6px;
    box-shadow: rgba(149, 157, 165, 0.1) 0px 5px 20px;
    border: 1px solid rgba(240, 143, 128, .2);
    display: flex;
    flex-direction: column;
}

.alphagf_single_addon .alphagf_top_wrap {
    padding: 24px 24px 22px 24px;
    border-bottom: 1px solid rgba(240, 143, 128, .2);
    flex: 1;
}

.alphagf_single_addon .alphagf_icon_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
}

.alphagf_single_addon .alphagf_icon_box .alphagf_icon i {
    font-size: 40px;
    color: var(--gf-alpha-theme-color);
}

.alphagf_single_addon .alphagf_icon_box .alphagf_icon {
    height: 70px;
    width: 70px;
    background: rgba(240, 142, 128, .1);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.alphagf_single_addon .alphagf_cta_btns a {
    text-decoration: none;
    color: var(--gf-alpha-primary-color);
    height: 28px;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f1f1f1;
    transition: 0.3s;
    border-radius: 4px;
    user-select: none;
    outline: none;
}

.alphagf_single_addon .alphagf_cta_btns {
    display: flex;
    gap: 10px;
}

.alphagf_single_addon .alphagf_cta_btns i {
    font-size: 15px;
}

.alphagf_single_addon .alphagf_cta_btns a:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-color: rgba(240, 142, 128, .5);
    color: rgba(240, 142, 128, 1);
}

.alphagf_addon_title h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 5px;
    line-height: 25px;
}

span.alphagf_addon_version {
    font-size: 11px;
    background: rgba(240, 142, 128, .2);
    padding: 3px 7px;
    display: inline-block;
    color: var(--gf-alpha-primary-color);
    font-weight: 500;
    line-height: 15px;
    border-radius: 4px;
}

.alphagf_single_addon p.description {
    font-size: 14px;
    margin: 0;
    line-height: 22px;
}

.alphagf_single_addon .alphagf_addon_title {
    margin-bottom: 15px;
}

.alphagf_single_addon .alphagf_bottom_wrap {
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alphagf_toggle_btn {
    position: relative;
    display: inline-block;
}

.alphagf_toggle_btn input[type=checkbox] {
    position: absolute;
    z-index: -99;
    opacity: 0;
    visibility: hidden;
}

.alphagf_toggle_btn label {
    height: 20px;
    width: 40px;
    background: var(--eagf-bg-color);
    display: block;
    border-radius: 30px;
    position: relative;
    transition: 0.3s;
    cursor: pointer;
    border: 1px solid rgba(240, 143, 128, 0.5);
}

.alphagf_toggle_btn label:before {
    content: '';
    position: absolute;
    height: 14px;
    width: 14px;
    top: 3px;
    left: 3px;
    background: var(--gf-alpha-theme-color);
    border-radius: 50%;
    transition: 0.5s ease-in-out;
    box-sizing: border-box;
}

/* Toggle ON */
.alphagf_single_addon.checked .alphagf_toggle_btn label {
    background: var(--gf-alpha-theme-color);
    border-color: var(--gf-alpha-theme-color);
}

.alphagf_single_addon.checked .alphagf_toggle_btn label::before {
    background: #fff;
    left: 23px;
}

/* Spinner on Checked + Spinner Class */
.alphagf_toggle_btn.checking label::before {
    background: #fff;
    border: 2px solid rgba(240, 143, 128, 0.5);
    border-top-color: var(--gf-alpha-theme-color);
    animation: spin 1s linear infinite;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
}

/* Spinner animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.alphagf_toggle_btn.unchecking label::before {
    border: 2px solid #fff;
    border-top-color: var(--gf-alpha-theme-color);
    animation: spin 1s linear infinite;
    background: var(--gf-alpha-theme-color);
}

.alphagf_status {
    width: auto;
    text-align: center;
    background-color: #DEEDED;
    font-size: 11px;
    font-weight: 600;
    color: #0F3D6C;
    padding: 2px 8px;
    border-radius: 4px;
    line-height: 150%;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.alphagf_status.freemium {
    background: #fceed9;
    color: #FFB347;
}

.alphagf_status.pro {
    color: #FFF;
    background: var(--gf-alpha-theme-color);
}

.alphagf_heading h2 {
    font-size: 26px;
    margin: 0 0 10px;
}

.alphagf_heading {
    margin-bottom: 20px;
}

.alphagf_heading p {
    margin: 0;
    font-size: 16px;
}


.alphagf_notification_message {
    position: fixed;
    top: 100px;
    right: 30px;
    width: 400px;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 18px 16px 20px 50px;
    border-radius: 4px;
    gap: 8px;
    -webkit-box-shadow: 0 20px 36px 0 #00012314;
    box-shadow: 0 20px 36px #00012314;
    overflow: hidden;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2352CB98"><path fill-rule="evenodd" d="M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Zm13.36-1.814a.75.75 0 1 0-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 0 0-1.06 1.06l2.25 2.25a.75.75 0 0 0 1.14-.094l3.75-5.25Z" clip-rule="evenodd" /></svg>');
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: 15px center;
    font-size: 16px;
    max-width: max-content;
    transform: translate(500px, 0);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 9999;
}

.alphagf_notification_message:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background-color: #52cb98;
}

.alphagf_notification_message.open {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}

.alphagf_single_addon .alphagf_icon_box .alphagf_icon i.icon-math-captcha {
    font-size: 20px;
}

.alphagf_heading_wrap {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 70px;
}


.alphagf_search_label {
    width: 400px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.alphagf_search_label input {
    width: 100%;
    height: 48px;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 8px 15px 8px 50px;
    background: #fff;
    border: 1px solid rgba(240, 143, 128, .2);
    outline: none;
    transition: 0.3s;
    outline: none;
}

.alphagf_search_label input:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid var(--gf-alpha-theme-color);
}

.alphagf_search_label .alphagf_search_icon {
    height: 44px;
    width: 46px;
    display: flex;
    position: absolute;
    left: 1px;
    top: 1px;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.alphagf_filter_wrap {
    display: flex;
    gap: 20px;
}

.alphagf_filter_wrap .alphagf_filter_btn {
    height: 46px;
    background: #ffff;
    border: 1px solid rgba(240, 143, 128, .2);
    box-sizing: border-box;
    font-size: 15px;
    display: flex;
    align-items: center;
    padding: 6px 20px;
    border-radius: 6px;
    color: var(--gf-alpha-theme-color);
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.alphagf_filter_wrap .alphagf_filter_btn.active {
    background: #FFF6EF;
    border-color: var(--gf-alpha-theme-color);
}

.alphagf_single_addon.hide {
    display: none;
}