/*
Theme Name: Cakraindo
Text Domain: cakraindo
Version: 1.3.7
Tested up to: 6.3
Requires at least: 6.0
Requires PHP: 8.0
Description: Cakraindo is a WordPress theme for Cakraindo.
Author: Unify Studio
Author URI: https://unifystudio.io
Theme URI: https://unifystudio.io/cakraindo
*/

.break-spaces {
    white-space: break-spaces;
}

.paragraph-wrapper p {
    margin-bottom: 1.5rem;
}

.loading-spinner {
    display: none;
}

.loading {
    position: relative;
}

.loading .loading-spinner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-alert {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}

.popup-alert-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
}

.popup-alert .popup-alert-content {
    background-color: #056141;
    padding: 40px;
    width: 680px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popup-alert .popup-alert-content h5 {
    color: #fff;
    font-size: 28px;
    line-height: 32px;
    font-weight: 700;
    text-align: center;
}

.popup-alert .popup-alert-content p {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    margin-top: 16px;
}

.popup-alert .popup-alert-content .popup-alert-close {
    background-color: #FEE4DC;
    color: #F15B30;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.popup-alert .popup-alert-content .popup-alert-close svg {
    transition: transform 0.3s ease-in-out;
}

.popup-alert .popup-alert-content .popup-alert-close:hover svg {
    transform: rotate(-45deg);

}

.alert-container {
    display: none;
}

.alert.alert-error {
    background-color: #FEE4DC;
    color: #F15B30;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}