html, body {
    min-width: unset;
    overflow-x: hidden;
}

main {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fefefe;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.label {
    color: #232323;
    padding: 0;
    margin-bottom: 10px;
}

.sdk-select {
    height: 34px;
    border-radius: 4px;
}

#meeting_form {
    max-width: 300px;
    width: 100%;
}

input {
    margin-top: 10px;
}


.lds-ring {
    display: inline-block;
    position: relative;
    width: 48px;
    height: 48px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 36px;
    height: 36px;
    margin: 3px;
    border: 3px solid #2A86FF;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #2A86FF transparent transparent transparent;
}

.lds-ring.-sm {
    width: 30px;
    height: 30px;
}

.lds-ring.-sm div {
    width: 24px;
    height: 24px;
    margin: 2px;
    border: 2px solid #2A86FF;
    border-color: #2A86FF transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#troubleshoot-btn {
    display: flex;
    position: absolute;
    z-index: 9999;
    left: 16px;
    bottom: 72px;
    border-radius: 100px;
    width: 30px;
    height: 30px;
    background: red;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    font-weight: bold;
}

#troubleshoot-btn:hover:before {
    content: '';
    display: block;
    position: absolute;
    width: 130%;
    height: 130%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(217, 11, 11, 0.3);
    border-radius: 100px;
}

#troubleshoot-window {
    position: absolute;
    z-index: 9999;
    left: 16px;
    bottom: 120px;
    width: 300px;
    background: #e1e3e5;
    font-weight: 500;
}

#troubleshoot-window .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 8px;
    background: #232333;
}

#troubleshoot-window .content {
    background: #d5d7d9;
    color: #232323;
    font-size: .9rem;
}

#troubleshoot-window ul.menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#troubleshoot-window ul.menu li {
    position: relative;
}

#troubleshoot-window ul.menu li+li {
    border-top: 1px solid #c0c0c0;
}

#troubleshoot-window ul.menu li .btn {
    display: block;
    width: 100%;
    text-align: left;
    border-radius: 0;
    padding: 8px;
    cursor: pointer;
}

#troubleshoot-window ul.menu li .btn:hover {
    background: #2975d0;
    color: #ffffff;
}