#TB_ajaxContent {
    width: 100% !important;
    height: 95% !important;
    padding: 0 !important;
}

.wizard-content {
    display: none;
}

.tabs-bar {
    height: 50px;
    width: 100%;

    background-color: #f1f1f1;

    font-weight: bold;
}

.tabs-bar-button {
    height: 100%;
    width: 8rem;

    border: none;
}

.tabs-bar-button-active {
    background-color: #fff;
}

.wizard-tab {
    height: 88%;
    display: none;

    padding: 2%;
}

.wizard-settings {
    padding: 3%;
}

.settings-message {
    display: none;
    font-weight: bold;
    font-size:  small;
}

.wizard-settings-input {
    height: 2.5rem;
    width: 100%;

}

.loadingDIV {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;

    text-align: center;
    font-weight: bold;
}

.loadingAnimation {
    position: relative;
    display:inline-block;
    bottom: 45px;
    height: 60px;
    width: 60px;
    background-color: rgba(0, 0, 0, 0);
    
    border-radius: 50%;

    border: 6px solid rgba(0, 0, 0, 0);
    border-left: 6px solid black;
    border-right: 6px solid black;

    animation: loadingAnimation 1.2s linear infinite;
}

@keyframes loadingAnimation {
    0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }

}

#TB_ajaxContent {
    display: flex;
    flex-direction: column;
}

.admin-header-dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.block {
    display: block;
}
