﻿#components-reconnect-modal {
    display: none;
    transition: visibility 0s linear 1000ms;
}

    #components-reconnect-modal.components-reconnect-show,
    #components-reconnect-modal.components-reconnect-failed,
    #components-reconnect-modal.components-reconnect-rejected {
        display: block;
    }

.components-reconnect-show > div,
.components-reconnect-failed > div,
.components-reconnect-rejected > div {
    display: none;
}

.components-reconnect-show > .show,
.components-reconnect-failed > .failed,
.components-reconnect-rejected > .rejected {
    display: block;
}

.custom-components-reconnect-modal-bg {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 5000;
}

.custom-components-reconnect-modal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background-color: #FFF;
    margin: auto;
    border: 1px solid #AAA;
    height: 200px;
    width: 400px;
    box-shadow: 5px 5px 20px 10px hsl(0deg 0% 0% / 5%);
}

.components-reconnect-top {
    background: #F59F42;
    display: flex;
    flex-direction: row;
    height: 60px;
    transition: height 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
    padding: 20px;
    color: white;
    width: 100%;
    text-align: center;
}

.components-reconnect-bottom {
    padding: 20px;
    text-align: center;
    vertical-align: middle;
}
