/* your styles go here */
span.error {
    color: red;
}

.logo-img {
    width: 1em;
    margin-right: 0.3em;
}

.logo-inner {
    width: 8em;
    height: 8em;
    margin: 0 0 1em;
    background: #fff;
    padding: 1em;
    margin: 0 auto 1em;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-inner .logo-img {
    width: 85%;
    margin: 0;
}

.btn-secondary:focus, .btn-secondary.focus, .btn-primary:focus, .btn-primary.focus {
    box-shadow: none;
    -webkit-box-shadow: none;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: none;
    -webkit-box-shadow: none;
}

.btn-secondary {
    color: #fff;
    background-color: red;
    border-color: red;
}

.action-btn {
    margin: 0 0.2em;
}

.red {
    color: #D0011B;
    font-size: 1.3em;
}

.green {
    color: #4CAF50;
    font-size: 1.3em;
}
.details-contaner{
    padding: 16px;
    border: 1px solid #2f333e;
    color: black;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.request-loader-container{
    position: fixed;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 0;
    background-color: #ffffffd4;
    z-index: 10;
    display: none;
    justify-content: center;
    align-items: center;
}
.request-loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}