﻿/* Panel styles
-------------------------------------------------- */
@media (max-width:500px) {
    .main-container {
        padding: 0px;
    }
}

.container {
    height: 100%;
    max-width: inherit;
}

#host, .pb-3 {
    height: 100%;
}

.signers .selection {
    margin-bottom: 1em;
}

.btn_format {
    white-space: break-spaces;
    display: inline-table;
    font-size: 25px;
}

.span_format {
    white-space: break-spaces;
    display: inline-table;
}

.selectUser select {
    padding: 10px;
    font-size: 20px;
    font-family: dumbledor;
    /*line-height: 1;*/
    /*border: 4px dashed #DB2828;*/
    border-radius: 5px;
    /*-webkit-appearance: none;*/
    outline: none;
}
    /* Load styles
-------------------------------------------------- */
    /*.load {
    border: 0px solid #ECF0F1;
    padding: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center center;
    transform: translate(-50%, -50%) rotate(135deg);*/
    /*change these sizes to fit into your project*/
    /*width: 50px;
    height: 50px;
}

    .load hr {
        border: 0;
        margin: 0;
        width: 40%;
        height: 40%;
        position: absolute;
        border-radius: 50%;
        animation: spin 2s ease infinite;
    }

    .load :first-child {
        background: #19A68C;
        animation-delay: -1.5s
    }

    .load :nth-child(2) {
        background: #F63D3A;
        animation-delay: -1s
    }

    .load :nth-child(3) {
        background: #FDA543;
        animation-delay: -0.5s
    }

    .load :last-child {
        background: #193B48
    }

@keyframes spin {
    0%, 100% {
        transform: translateX(200%)
    }

    25% {
        transform: translateY(200%)
    }

    50% {
        transform: translateX(0)
    }

    75% {
        transform: translateY(0)
    }
}*/

    .load {
    animation: is-rotating 3s infinite;
    width: 180px;
    height: 180px;
    border: 20px solid #e5e5e5;
    border-top-color: #0094ff;
    border-radius: 50%;
}

@keyframes is-rotating {
    to {
        transform: rotate(1turn);
    }
}