/*
    Global Styling CSS
*/
.global-kit {
    --e-global-color-primary: #F93822;
    --e-global-color-secondary: #404041;
    --e-global-color-text: #777777;
    --e-global-color-accent: #111111;
    --e-global-color-fd535a7: #FB8B00;
    --e-global-color-030d5f6: #F8F8F8;
    --e-global-color-7716eb3: #000000;
    --e-global-color-781b25c: #FFFFFF;
    --e-global-color-highlight: #FFDCD8;
    --e-global-color-green: #00D69C;
    --e-global-color-grey: #ADAEBC;
    --e-global-color-other: #E8E8E8;
    --e-global-color-footer: #F9382208;
    --e-global-typography-primary-font-family: "Open Sans";
    --e-global-typography-primary-font-weight: 600;
    --e-global-typography-secondary-font-family: "Open Sans";
    --e-global-typography-secondary-font-weight: 400;
    --e-global-typography-text-font-family: "Open Sans";
    --e-global-typography-text-font-weight: 400;
    --e-global-typography-accent-font-family: "Open Sans";
    --e-global-typography-accent-font-weight: 500;
    font-family: "Open Sans", Sans-serif;
    font-size: 16px;
}
.container {
    width:800px;
    margin:30px auto 80px;
    border-radius:10px;
    padding:30px;
    box-shadow: 0px 0px 10px 0px #CCC;
    background-color:#FFF
}
.fe {
    background-color: var(--e-global-color-030d5f6);
}
.fe-box-container {
    width:1140px;
    margin:0 auto;
}
.fe-full-container {
    padding:0 50px;
}
.login-container {
    width: 500px;
    padding:30px 40px;
}
.highlight {
    background-color:var(--e-global-color-highlight);
    border-radius:10px;
    font-weight:600;
    padding:10px 20px;
}
h1 {
    font-weight:700;
}
h2 {
    color: var(--e-global-color-secondary);
    font-family: "Open Sans", Sans-serif;
    font-size: 42px;
    font-weight: 700;
}
h5 {
    font-weight:600;
}
p {
    color: #333;
}
a {
    color:var(--e-global-color-primary);
}
a.button {
    background-color: var(--e-global-color-primary);
    color: var(--e-global-color-781b25c);
    border:0;
    border-radius:5px;
    padding: .5rem 1rem;
    font-weight: 600;
}
a:hover {
    color:var(--e-global-color-primary);
    text-decoration:underline;
}
a.button:hover {
    text-decoration:none;
    background-color: var(--e-global-color-secondary);
    color: var(--e-global-color-text);
}
ul,ol {
    margin-bottom:1em;
}
.center {
    text-align:center;
}
.hidden {
    display:none;
}
button,input.button,.wp-2fa-configuration-form .button {
    background-color: var(--e-global-color-primary);
    color: var(--e-global-color-781b25c);
    border:0;
    border-radius:5px;
}
button:focus,button:hover,input.button:focus,input.button:hover,.wp-2fa-configuration-form .button:hover,.wp-2fa-configuration-form .button:focus {
    background-color: var(--e-global-color-secondary);
    color: var(--e-global-color-text);
}
table {
    font-size:1em;
}
table a {
    color: #333;
}
table td.center {
    text-align:center !important;
}
table td.left {
    text-align:left !important;
}
label.required::after,legend.required::after {
    content: " *";
    color: red;
    font-weight: bold;
}
.modal {
    display:none;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -30%);
    background: rgb(255, 255, 255);
    padding: 50px 50px 35px;
    border-radius: 10px;
    text-align: center;
    z-index: 9999;
}
.modal .modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}
.modal .modal-close span {
    font-size: 30px;
    width: 30px;
    height: 30px;
}
.modal p {
    font-size: 18px;
    font-weight: 700;
}
.modal h4 {
    font-weight:700;
}
.modal .action-buttons,.modal .close-form {
    display: flex;
    gap: 15px;
    align-items: center;
}
.modal .close-form label,.modal .close-form input {
    flex:1;
}
.modal .close-form label {
    font-size:18px;
    font-weight:700;
}
.modal .action-buttons button {
    flex: 1;
    color: #FFF;
    font-size:14px;
    font-weight:600;
    font-family:'Open Sans';
    letter-spacing: 1px;
    padding: 10px 30px 10px 30px;
    border:0;
}
.modal .action-buttons button.action-button-red {
    background-color: var(--e-global-color-primary);
}
.modal .action-buttons button.action-button-grey {
    background-color: #ADAEBC;
}
.modal .action-buttons button:hover {
    background-color: var(--e-global-color-secondary);
}
.modal #close_date_display {
    color: var(--e-global-color-fd535a7);
}
.modal p.note {
    font-size:13px;
    font-weight:normal;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 5px solid #ccc;
    border-top-color: var(--e-global-color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
/*for 2FA plugin*/
.wp-2fa-configuration-form h3 {
    font-size:1em;
    font-weight:bold;
}
.modal__content {
    height: fit-content !important;
}
.default_styling .radio-cells .option-pill label {
    font-size: 16px !important;
    font-family: 'Open Sans';
}
.default_styling .radio-cells .option-pill label input {
    margin-right: 5px;
}
.wp2fa-modal .modal__close {
    color: var(--e-global-color-primary) !important;
}
.wp-2fa-login.login h1 {
    display:none;
} 