#support-stripes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    list-style: none;
}

#support-stripes .ast-container {
    display: flex;
    justify-content: space-between;
    max-height: 40px;
    overflow: hidden;
    align-items: center;
}

#support-stripes button {
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.5s linear;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 0;
}

#support-stripes button:hover,
#support-stripes button:focus {
    opacity: 0.8;
}

#support-stripes li .stripe-message {
    overflow: hidden;
    text-overflow: ellipsis;
    width: 80%;
    white-space: nowrap;
    font-size: 14px;
    margin-right: 10px;
}

#support-stripes li.danger {
    background: #edc1c1;
    color: #600000;
}

#support-stripes li.danger button {
    background: #a74f4f;
    color: #fff;
}

#support-stripes li.warning {
    background: #ffffd3;
    color: #424219;
}

#support-stripes li.warning button {
    background: #d0a05a;
    color: #fff;
}

#support-stripes li.info {
    background: #bde3ff;
    color: #114c78;
}

#support-stripes li.info button {
    background: #3592d7;
    color: #fff;
}

#support-backdrop {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    min-height: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    display: none;
}

.support-modal {
    background: #fefefe;
    border: #333333 solid 0px;
    z-index: 999999;
    position: fixed;
    width: 500px;
    top: 0;
    left: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    border-radius: 6px;
    overflow: hidden;
    display: none;
}

.support-modal-active {
    display: block !important;
}

@media (max-width: 768px) {
    .support-modal {
        width: 95%;
    }
}

.support-modal.has-footer {
    padding-bottom: 50px;
}

.support-modal-body {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
}

.support-modal.has-footer .support-modal-body {
    padding-bottom: 40px;
}

.support-modal-danger {
    background: #edc1c1;
}

.support-modal-warning {
    background: #ffffd3;
}

.support-modal-info {
    background: #bde3ff;
}

.support-modal-danger .support-modal-body {
    color: #600000;
}

.support-modal-danger .support-modal-footer > a {
    background: #a74f4f;
    color: #fff;
}

.support-modal-warning .support-modal-body {
    color: #424219;
}

.support-modal-warning .support-modal-footer > a {
    background: #d0a05a;
    color: #fff;
}

.support-modal-info .support-modal-body {
    color: #114c78;
}

.support-modal-info .support-modal-footer > a {
    background: #3592d7;
    color: #fff;
}

.support-modal-close {
    background: transparent !important;
    padding: 10px 0 0 !important;
    border: none !important;
    position: absolute;
    right: 15px;
    top: 0;
    transition: all 0.5s linear;
}

.support-modal-close:hover,
.support-modal-close:focus {
    opacity: 0.7;
}

.support-modal-close > svg {
    width: 30px;
    height: 30px;
}

.support-modal-footer {
    position: absolute;
    width: 100%;
    height: 60px;
    background: #eee;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-modal-footer > a {
    padding: 10px 20px;
    display: block;
    outline: none;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    transition: all 0.2s linear;
}

.support-modal-footer > a:focus,
.support-modal-footer > a:hover {
    opacity: 0.7;
}

.support-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.support-image-container img {
    max-width: 60%;
    height: auto;
}
