File: //var/www/drakkar_site_dev/wp-content/plugins/check-email/assets/css/admin/checkmail_wizard.css
.wrap_div {
font-family: Arial, sans-serif;
text-align: center;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
/* height: 100vh; */
/* background-color: #f9f9f9; */
}
.container {
background-color: white;
padding: 20px;
margin: 80px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.logo {
margin-bottom: 20px;
}
.button_check_mail {
display: inline-block;
padding: 10px 20px;
margin-top: 20px;
background-color: #f47a20;
color: white;
text-decoration: none;
border-radius: 4px;
}
/* wizard steps */
.cm_step_body {
font-family: Arial, sans-serif;
/* background-color: #f9f9f9; */
margin: 0;
padding: 50px;
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
.cm_step_container {
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 80%;
max-width: 600px;
z-index: 5;
}
.cm_logo {
text-align: center;
margin-bottom: 20px;
}
.cm_progress {
display: flex;
justify-content: space-between;
margin: 20px 0;
}
.cm_progress div {
width: 49%;
height: 8px;
background-color: #e0e0e0;
border-radius: 4px;
position: relative;
}
.cm_progress div.active {
background-color: #4CAF50;
}
.cm_step {
font-size: 14px;
color: #666;
}
.cm_h2 {
color: #333;
font-size: 24px;
}
.cm_p {
color: #555;
}
.cm_checklist {
list-style: none;
padding: 0;
}
.cm_checklist li {
padding: 10px 0;
border-bottom: 1px solid #e0e0e0;
display: flex;
justify-content: space-between;
align-items: center;
}
.cm_checklist li:last-child {
border-bottom: none;
}
.cm_checklist li .cm_checkmark {
color: green;
font-weight: bold;
}
.cm_step_buttons {
display: flex;
justify-content: space-between;
margin-top: 20px;
}
.cm_step_button {
display: inline-block!important;
padding: 10px 20px;
background-color: #f47a20!important;
color: white!important;
text-decoration: none;
border-radius: 4px;
cursor: pointer;
border: none;
}
.cm_step_button.secondary {
background-color: #ccc!important;
color: #333!important;
border: none;
}
.cm_step_footer {
text-align: center;
margin-top: 20px;
}
.cm_step_footer a {
color: #0073aa;
text-decoration: none;
}
.cm_step_hidden {
display: none;
}
#adminmenuback, #adminmenuwrap, #adminmenu, #wpadminbar, #wpfooter{
display: none;
}
#wpcontent, #wpfooter {
margin-left: 0;
}
.cm_loader {
display: none;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border: 6px solid #f3f3f3;
border-top: 6px solid #f47a20;
border-radius: 50%;
width: 60px;
height: 60px;
animation: spin 2s linear infinite;
z-index: 99; /* Ensure the loader is above everything */
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}