.atom-iframe-wrapper {
    background-color: white;
    border-radius: 3px;
    display: flex;
}

.atom-iframe-wrapper > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.atom-iframe-top {
    padding: 1em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #F8F8F8;
}

.atom-iframe-minimized-top {
    padding-left: 1em;
    padding-right: 1em;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}

.atom-iframe-minimized-title {
    font-weight: 500;
    overflow: hidden;
    max-height: 75px;
    white-space: pre-line;
    text-overflow: ellipsis;
}

.atom-iframe-bottom {
    padding: 0.4em;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.atom-iframe-minimized-bottom {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-left: 1em;
    padding-right: 1em;
}

.atom-iframe-refresh {
    width: 0.9em;
    height: 0.9em;
    margin-left: 1em;
    padding: 0.35em;
    cursor: pointer;
    border-radius: 3px;
}

.atom-iframe-refresh:hover {
    background-color: #F8F8F8;
}

.atom-iframe-input {
    width: 100%;
    border-radius: 3px;
    border: none !important;
    outline: none !important;
    padding: 0.5em 0.5em;
    resize: none;
    background-color: #F8F8F8;
    color: #A2A2A2;
    font-size: 12px;
}

.iframe-no-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #F8F8F8;
    height: 100%;
    width: 100%;
    color: #A2A2A2;
    border-radius: 5px;
    font-size: 14px;
}

.iframe-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    width: 100%;
}
.iframe-no-content-icon {
    width: 30px;
}

.atom-iframe-iframe {
    position: relative;
    width: 100%;
    height: 100%;
    border: 2px solid #F8F8F8;
    outline: none;
}

.iframe-shield {
    position: absolute;
    z-index: 99;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.atom-iframe-minimized-icon {
    height: 22px;
    margin-right: 8px;
}

.atom-iframe-minimized-link {
    color: #A2A2A2;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}