 

/* set root css vars */
:root {
    --gpn-orange: #fa8c24;
}

.hide {
    display: none;
}
#wp-admin-bar-wpengine_adminbar {
    display: none;
}
.gpn-front-end-options {
    position: fixed;
    top: 32px;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: var(--gpn-orange);
    padding: 10px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1140px 1fr;
    height: 55px;
}
.gpn-front-end-options .overridden {
    font-size: 12px;
    display: flex;
    align-items: center;
}
.gpn-front-end-options .overridden .dashicons-info {
    font-size: 18px;
    margin-right: 4px;
}
.back-to-wp {
    text-decoration: none;
    color: #000;
    font-size: 13px;
    display: flex;
    align-items: center;
}
.back-to-wp i {
    margin-right: 5px;
}
.back-to-wp:hover {
    text-decoration: none;
}
.back-to-wp:hover span {
    text-decoration: underline;
}
@media only screen and (max-width:1500px) {
    .back-to-wp .back-to {
        display: none;
    }
}
@media only screen and (max-width:1400px) {
    .back-to-wp-text {
        display: none;
    }
}


.gpn-front-end-options .logo {
    text-align: right;
}
.gpn-front-end-options .logo:focus,
.gpn-front-end-options .back-to-wp:focus  {
    background: 0 !important; /* needed to override theme */
    box-shadow: none !important; /* needed to override theme */
}
.gpn-buttons {
    margin: 0 14px;
    display: flex;
    align-items: center;
}
.gpn-buttons button {
    margin-right: 14px;
    margin-bottom: 1px;
}
.toggle-button {
    background: #fff;
    border: 0;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    position: relative;
    padding: 4px 16px 5px 14px;
}
.toggle-button:focus:not(:focus-visible) {
    outline: none;
}
.toggle-button:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #000;
    margin-right: 4px;
    position: relative;
    top: 3px;
}
.toggle-button.loading:before {
    border-radius: 100%;
    border-left-color: transparent;
    animation: spin 1s linear infinite; 
    opacity: 0.7;
}
.toggle-button .tick {
    position: absolute;
    left: 15px;
    top: 5px;
    visibility: hidden;
}
.toggle-button.active .tick {
    visibility: visible;
}
.toggle-button.loading .tick {
    visibility: hidden;
}
.toggle-button .tick path {
    fill: #000;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.gpn-message-modal {
    position: fixed;
    top: 40px;
    width: 200px;
    height: 50px;
    z-index: 9999;
    background: rgba(0, 0, 0, 1);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    font-size: 13px;
    line-height: 1.3;
    opacity: 0;
    right: -200px;
    transition: all 0.3s ease;
}
.gpn-message-modal.active {
    right: 20px;
    opacity: 1;
}
.gpn-message {
    font-size: 13.5px;
    font-weight: bold;
}