.overall-status {
    display: flex;
/*     border: 1px solid; */
    padding: 1rem;
    align-items: center;
}
  
.overall-color {
    width: 1rem;
    height: 1rem;
    background: #eee;
    border-radius: 100%;
    margin-right: 1rem;
}

.overall-status.status-green .overall-color {
    background-color: #558841;
}

.overall-status.status-yellow .overall-color {
    background-color: #f3e341;
}

.overall-status.status-red .overall-color {
    background-color: #962416;
}

.overall-status.status-no-data .overall-color {
    background-color: unset;
    border: 2px solid #000;
}

.overall-title {
    font-size: 120%;
    color: #fff;
    flex: 1;
}

.overall-status.status-green {
    background-color: #79c859;
}

.overall-status.status-yellow {
    background-color: #f3bd40;
}

.overall-status.status-red {
    background-color: #d9412e;
}

.overall-status.status-no-data {
    background-color: unset;
    border: 2px solid #000;
}

.overall-status.status-no-data .overall-title {
    color: #000;
}

.site-statuses {
    margin-top: 1rem;
}

.status-headers {
    display: flex;
}

.status-row {
    border: 1px solid;
    border-right: 0;
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
    background: #fff;
    text-align: center;
    width: 100%;
    line-height: 1.2;
}

.status-row:last-child {
    border-right: 1px solid;
}

.elementor-status {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid;
    padding: 1rem;
}

.elementor-status:nth-of-type(even) {
    background: #eeeeee75;
}

.top-row {
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.additional-content {
	display: none;
    margin-top: 1rem;
    max-height: max-content;
}

body.elementor-editor-active .additional-content {
	display: block;
}

.status-wrapper {
    display: flex;
}

.status-notice {
    margin-top: 1rem;
    padding: 0 1rem;
}

.site-title {
    font-weight: 600;
    font-size: 125%;
    display: flex;
    align-items: center;
    cursor: pointer;
}

span.status-header {
    margin-bottom: 0.5rem;
}

span.site-color {
    width: 1rem;
    height: 1rem;
    background: #fff;
    border: 1px solid;
    display: inline-block;
    margin-left: 0.5rem;
    border-radius: 100%;
}

.elementor-status.status-green span.site-color {
    background: #558842;
    border-color: #558842;
}

.elementor-status.status-yellow span.site-color {
    background: #f3e341;
    border-color: #f3e341;
}

.elementor-status.status-red span.site-color {
    background: #962416;
    border-color: #962416;
}

.open-addl {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1.25em;
    transform: rotate(0deg);
    transition: .3s;
}

.elementor-status.open .open-addl {
    transform: rotate(180deg);
}

.status-row i {
    font-size: 1.5rem;
}

.status-row i.up {
    color: #558842;
}

.status-row i.down {
    color: #dd0820;
}

.open-addl i.eicon-minus-circle {
    display: none;
}

.elementor-status.open i.eicon-plus-circle {
    display: none;
}

.elementor-status.open i.eicon-minus-circle {
    display: block;
}

a.site-link {
    color: inherit;
    font-size: .75rem;
    margin: 0 0 0 .2rem;
    opacity: .4;
}

.site-content {
    padding-right: 2rem;
}

@media (max-width: 650px) {
	.status-wrapper {
		flex-wrap: wrap;
	}
	.status-row {
		width:25%;
		border-right: 1px solid;
	}
}

@media (max-width: 550px) { 
	.status-row {
		width:50%;
	}
}

@media (max-width: 320px) { 
	.status-row {
		width:100%;
	}
}