.saiyan-wrapper {
    font-family: Arial, sans-serif;
}

.saiyan-btn-primary {
    background-color: #1497c1;
    color: white;
    height: 38px;
    padding: 10px 20px;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: none !important;
    transition: 400ms ease-out;
}

.saiyan-btn-primary:not([disabled]):hover {
    background-color: #1283a6;
}

.saiyan-btn-primary[disabled] {
    background-color: #16a2cc;
    cursor: not-allowed;
}

a.saiyan-btn-primary {
    color: white !important;
}

.saiyan-btn-group {
    display: flex;
}

.saiyan-select {
    /* height: 38px !important; */
    margin: 0;
    /* padding: 10px !important; */
    /* border: none; */
    /* outline: none; */
    /* cursor: pointer; */
    transition: 400ms ease-out;
}

.saiyan-textfield {
    height: 38px;
    margin: 0;
    padding: 10px 20px;
    border: none !important;
    outline: none !important;
}

.saiyan-progress-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 99999;
}

.saiyan-progress-wrapper .progress-bar {
    position: absolute;
    display: flex;
    background-color: #1283a6;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    transition: 400ms ease-out;
}

.saiyan-progress-wrapper .progress-bar .message {
    color: white;
    text-align: center;
    margin: auto;
    opacity: 0.0;
    transition: 400ms ease-out;
}

.saiyan-progress-wrapper .progress-bar.load {
    height: 5px;
    transition-duration: 500ms;
}

.saiyan-progress-wrapper .progress-bar.show-message {
    height: 40px;
    transition-duration: 250ms;
}

.saiyan-progress-wrapper .progress-bar.hide {
    height: 0;
}

.saiyan-progress-wrapper .progress-bar.show-message .message {
    opacity: 1.0;
}

.saiyan-progress-wrapper .snackbar {
    position: relative;
    color: white;
    bottom: -100px;
    width: 300px;
    margin: auto;
    padding: 20px;
    pointer-events: all;
    transition: 400ms ease-out;
}

.saiyan-progress-wrapper .snackbar.info {
    background-color: #1283a6;
}

.saiyan-progress-wrapper .snackbar.success {
    background-color: #49a62b;
}

.saiyan-progress-wrapper .snackbar.warning {
    background-color: #ff9800;
}

.saiyan-progress-wrapper .snackbar.error {
    background-color: #a63d3f;
}

.saiyan-progress-wrapper .snackbar.show {
    bottom: 0;
}

.saiyan-module-wrapper {
    margin-bottom: 20px;
}

.saiyan-module-wrapper.no-margin {
    margin: 0;
}

.saiyan-module-wrapper.not-accessible {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.saiyan-module-wrapper.focus {
    animation-name: focus;
    animation-duration: 2000ms;
    animation-timing-function: ease-out;
}

.saiyan-module-wrapper > label {
    font-weight: 500;
    color: #999;
}

.saiyan-module-wrapper > small {
    margin-top: 5px;
    opacity: 0.8;
}

.saiyan-module-wrapper span {
    font-weight: normal;
}


@keyframes focus {
    0% {background-color: rgba(0, 171, 255, 0.27););}
    100% {background-color: rgba(0, 171, 255, 0);;}
}