label {
    font-size: 0.9em
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ccc !important;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #ccc !important;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #ccc !important;
}

.disc-btn {
    cursor: pointer;
    background-color: #4D148C;
    color: white;
    padding: 5px 10px;
    margin-left: 10px;
    font-size: 0.9em;
}

.disc-btn:hover {
    opacity: 0.8;
}

body {
    /* font-family: "Libre Bodoni", serif; */
    font-family: "Charis SIL", serif;
}

.links {
    color: #0067FA !important;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}

.mudal {
    /* margin-top:100px; */
    /* background-color: #fff; */
    z-index: 101;
    position: fixed;
    /* left: 0;
    bottom: 0; */
    width: 100%;
    display: none;
    text-align: center;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mudal-overlay {
    background-color: black;
    opacity: 0.6;
    z-index: 100;
    position: fixed;
    height: 100%;
    width: 100%;
    display: none;
}

.loader {
    -webkit-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.toast {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    position: fixed;
    text-align: center;
    z-index: 102;
    background: black;
    border-radius: 5px;
    color: white;
    padding: 20px;
    font-size: 20px;
}

button {
    cursor: pointer;
}

button:hover {
    opacity: 0.8;
}

.step-circle {
    display: inline-block;
    width: 28px;
    border-radius: 50%;
    border: solid 2px #4D148C;
    text-align: center;
}

.tr-type:last-child {
    display: none;
}