.temp-loader * {
    border: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --hue: 223;
    --bg: hsl(var(--hue), 10%, 90%);
    --fg: hsl(var(--hue), 10%, 10%);
    /* font-size: calc(16px + (24 - 16) * (100vw - 320px) / (1280 - 320)); */
}

.pl {
    display: block;
    width: 6.25em;
    height: 6.25em;
}

.pl__ring,
.pl__ball {
    animation: ring 2s ease-out infinite;
}

.pl__ball {
    animation-name: ball;
}


/* Dark theme  */

@media (prefers-color-scheme: dark) {
     :root {
        --bg: hsl(var(--hue), 10%, 10%);
        --fg: hsl(var(--hue), 10%, 90%);
    }
}


/* Animation */

@keyframes ring {
    from {
        stroke-dasharray: 0 257 0 0 1 0 0 258;
    }
    25% {
        stroke-dasharray: 0 0 0 0 257 0 258 0;
    }
    50%,
    to {
        stroke-dasharray: 0 0 0 0 0 515 0 0;
    }
}

@keyframes ball {
    from,
    50% {
        animation-timing-function: ease-in;
        stroke-dashoffset: 1;
    }
    64% {
        animation-timing-function: ease-in;
        stroke-dashoffset: -109;
    }
    78% {
        animation-timing-function: ease-in;
        stroke-dashoffset: -145;
    }
    92% {
        animation-timing-function: ease-in;
        stroke-dashoffset: -157;
    }
    57%,
    71%,
    85%,
    99%,
    to {
        animation-timing-function: ease-out;
        stroke-dashoffset: -163;
    }
}

.temp-loader {
    position: fixed;
    background-color: #000000ba;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999999;
}

.temp-loader svg {
    height: 50px;
    opacity: 0.8;
}

p.you-get {
    color: #f5ff9c;
    margin-left: 10px;
    font-size: 13px;
}

.card-img {
    height: 30px;
    width: auto;
    margin-top: 5px;
}

.custom-modal .modal-header img {
    height: 100px;
    margin: auto;
}

.custom-modal .modal-header button {
    background-color: #747474;
}

img.img-fluid.pg-logo.logo-dark {
    height: auto;
    width: 80px;
    margin: auto;
}

.box-holo {
    background: linear-gradient(145deg, rgb(78 97 101 / 10%), rgb(51 234 200 / 10%));
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 0.4rem;
    border: 1px solid rgb(75 152 155 / 30%);
    min-height: 45px;
    width: 106px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.box-holo:hover {
    border-color: rgb(0 212 255 / 23%);
    background: linear-gradient(145deg, rgb(77 122 112 / 20%), rgba(147, 51, 234, 0.2));
}

.box-holo::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20px;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent);
    border-radius: 50%;
}

.box-holo .account-type {
    font-size: 0.5rem;
    color: #c1ded2;
    font-weight: 600;
    text-transform: uppercase;
}

.box-holo .balance {
    font-size: 0.65rem;
    font-weight: 700;
    margin: 0.1rem 0;
    background: linear-gradient(45deg, #00d4ff, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.box-holo .btn-holo {
    font-size: 0.54rem;
    padding: 0.1rem 0.3rem;
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.5);
    color: #00d4ff;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: auto;
    display: inherit;
    margin-bottom: 3px;
}

.box-holo .btn-holo:hover {
    background: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 8px rgba(0, 212, 255111, 0.5);
}

.box-holo .btn-holo-warning {
    background-color: #bd981975;
    color: #ffea76;
    border-color: #fff400;
}

.box-holo .btn-holo-danger {
    background-color: #bd191975;
    color: #ffbbbb;
    border-color: #cb6f6f;
}


/* Glass Modal */

.glass-overlay {
    position: fixed;
    top: 00px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    display: none;
    z-index: 100000000;
    animation: glassFade 0.5s ease;
}

.glass-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    color: #333;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(255, 255, 255, 0.2);
    animation: glassSlide 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: #00000082;
}

.glass-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-title {
    font-size: 28px;
    font-weight: 700;
    color: rgb(255 255 255 / 80%);
    text-shadow: 0 1px 2px rgb(0 0 0 / 50%);
}

.glass-close {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    color: rgba(0, 0, 0, 0.9);
}


/* Form Elements */

.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: rgb(255 255 255 / 70%);
    text-shadow: 0 1px 1px rgb(0 0 0 / 30%);
}


/* Glass Input Fields */

.glass-input {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: rgb(217 237 255 / 80%);
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.glass-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05), 0 0 0 3px rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.glass-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}


/* Glass Textarea */

.glass-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: rgba(0, 0, 0, 0.8);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    resize: vertical;
    min-height: 120px;
}

.glass-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05), 0 0 0 3px rgba(255, 255, 255, 0.2);
}


/* Glass Select */

.glass-select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: rgba(0, 0, 0, 0.8);
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.glass-select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05), 0 0 0 3px rgba(255, 255, 255, 0.2);
}


/* Glass Radio Buttons */

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.glass-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.glass-radio:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.glass-radio input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.glass-radio input[type="radio"]:checked {
    border-color: rgba(102, 126, 234, 0.8);
    background: rgba(102, 126, 234, 0.2);
}

.glass-radio input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.8);
    backdrop-filter: blur(2px);
}

.glass-radio.checked {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.4);
}


/* Glass Checkboxes */

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.glass-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.glass-checkbox:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.glass-checkbox input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.glass-checkbox input[type="checkbox"]:checked {
    border-color: rgba(102, 126, 234, 0.8);
    background: rgba(102, 126, 234, 0.2);
}

.glass-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(102, 126, 234, 0.9);
    font-size: 14px;
    font-weight: bold;
}

.glass-checkbox.checked {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
}


/* Glass Buttons */

.glass-btn {
    padding: 11px 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.glass-btn-primary {
    background: rgba(102, 126, 234, 0.3);
    color: rgb(213 217 238);
    border-color: rgba(102, 126, 234, 0.4);
}

.glass-btn-primary:hover {
    background: rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.glass-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgb(235 235 235 / 70%);
    border-color: rgba(255, 255, 255, 0.3);
}

.glass-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.glass-btn-danger {
    background: rgba(255, 107, 107, 0.3);
    color: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 107, 107, 0.4);
}

.glass-btn-danger:hover {
    background: rgba(255, 107, 107, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.2);
}


/* Glass Alerts */

.glass-alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.glass-alert-success {
    background: rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
    color: rgba(27, 94, 32, 0.9);
}

.glass-alert-warning {
    background: rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.3);
    color: rgba(245, 124, 0, 0.9);
}

.glass-alert-error {
    background: rgba(244, 67, 54, 0.15);
    border-color: rgba(244, 67, 54, 0.3);
    color: rgba(183, 28, 28, 0.9);
}

.glass-alert-info {
    background: rgba(33, 150, 243, 0.15);
    border-color: rgba(33, 150, 243, 0.3);
    color: rgba(13, 71, 161, 0.9);
}

.alert-icon {
    font-size: 20px;
    font-weight: bold;
}


/* Glass Range Slider */

.glass-range {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
}

.glass-range::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.glass-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.4);
}

.glass-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    backdrop-filter: blur(5px);
}


/* Glass Toggle Switch */

.glass-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.glass-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 3px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    transition: 0.4s;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

input:checked+.toggle-slider {
    background: rgba(102, 126, 234, 0.4);
    border-color: rgba(102, 126, 234, 0.5);
}

input:checked+.toggle-slider:before {
    transform: translateX(26px);
    background: rgba(102, 126, 234, 0.8);
}


/* Modal Actions */

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}


/* Animations */

@keyframes glassFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes glassSlide {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(-50px);
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0);
        backdrop-filter: blur(20px);
    }
}


/* Responsive */

@media (max-width: 768px) {
    .glass-modal {
        width: 95%;
        padding: 30px 20px;
    }
    .radio-group {
        flex-direction: column;
    }
    .modal-actions {
        flex-direction: column;
    }
    .glass-btn {
        width: 100%;
    }
}

.dash-section {
    background-color: #000000;
    padding: 10px 0px;
    border-radius: 10px;
    border: 1px solid #4c5e6e;
    margin-bottom: 5px;
}

.inline-info {
    display: inline-block;
    border-left: 1px solid #ffffff82;
    margin-left: 5px;
    padding-left: 5px;
    font-weight: 400;
    opacity: 0.7
}

.inline-info b {
    background-color: #ffffff29;
    padding: 5px;
    border-radius: 5px;
}

.shares-descr {
    font-size: 11.5px;
    padding: 5px;
    background-color: #8cbdff24;
    margin-top: 4px;
    border-radius: 10px;
    color: #cfcfcf;
}

.shares-descr li b {
    color: #afd6ff;
}

.cost-save {
    font-size: 11px;
    border-top: 1px dashed;
    width: max-content;
    margin: auto;
}

.pgk-exp {
    height: 30px;
    align-items: center;
    border-top: 1px solid #6c6c6c;
    padding-top: 10px;
    font-size: 11px;
    color: #d27c7c;
}

.pgk-exp * {
    font-size: 12px;
}

.pkg-exp-bar {
    background-color: #ffa4a430;
    height: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.pkg-exp-bar span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0 0 5px #000000;
    color: white;
    z-index: 1;
    font-size: 10px;
    width: max-content;
}

.pkg-in-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 60%;
    background-color: #619dbc;
}

.item-note {
    position: relative;
    overflow: visible;
    z-index: 10;
}

.feature-note {
    position: absolute;
    background-color: #fff970;
    padding: 5px;
    border-radius: 10px;
    top: 100%;
    z-index: 100;
    box-shadow: 0 0 20px #ffffff;
    color: black;
}

.feature-note::after {
    top: -15px;
    left: 50%;
    transform: translate(-50%);
    content: "";
    position: absolute;
    border-top: 10px solid #fff970;
    border-right: 10px solid #fff970;
    border-bottom: 10px solid transparent;
    border-left: 10px solid transparent;
    rotate: -45deg;
}

.feature-note p {
    font-size: 11px;
    margin: 0;
    padding: 0;
}

.feature-note button {
    padding: 5px;
    font-size: 12px;
    margin: auto;
    display: block;
    margin-top: 5px;
}

.social-floater {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 10000;
    background-color: #14bf8c;
    font-size: 20px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 10px #39c0b7;
    cursor: pointer;
}

.go-top {
    display: none !important;
}

.social-holder {
    position: fixed;
    background-color: white;
    z-index: 1000;
    right: 10px;
    bottom: 70px;
    width: max-content;
    padding: 5px;
    border-radius: 5px;
    counter-reset: section;
}

.social-holder::after {
    content: "";
    position: absolute;
    border-bottom: 10px solid white;
    border-left: 10px solid transparent;
    border-top: 10px solid transparent;
    border-right: 10px solid white;
    rotate: 45deg;
    bottom: -6px;
    right: 10px;
}

.social-holder a {
    display: block;
    margin: 2px;
    padding: 2px;
    font-size: 13px;
    color: #052966;
    background-color: #e3e3e3;
    border-radius: 50px 5px 5px 50px;
}

.social-holder a::before {
    counter-increment: section;
    content: counters(section, ".") " ";
    background-color: #000000;
    text-decoration: none;
    color: #ffffff;
    padding: 3px;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    display: inline-block;
    line-height: 15px;
    text-align: center;
    margin-right: 5px;
}