:root {
    --jumbotron-padding-y: 3rem;
}

.jumbotron {
    padding-top: var(--jumbotron-padding-y);
    padding-bottom: var(--jumbotron-padding-y);
    margin-bottom: 0;
    background-color: #fff;
}

@media (min-width: 768px) {
    .jumbotron {
        padding-top: calc(var(--jumbotron-padding-y) * 2);
        padding-bottom: calc(var(--jumbotron-padding-y) * 2);
    }
}

.jumbotron p:last-child {
    margin-bottom: 0;
}

.jumbotron-heading {
    font-weight: 300;
}

.jumbotron .container {
    max-width: 40rem;
}

footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

footer p {
    margin-bottom: .25rem;
}

/*.box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }*/

#rtlh3 small {
    transform: rotateY(180deg);
    display: inline-block;
}

.card {

    border: none !important;
}


#shadow_box {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-color: black;
    opacity: 0.5;
    z-index: 9999;
}

#msg {
    width: 100%;
    height: 100%;
    left: 0%;
    top: 0%;
    position: absolute;
    /*background-color: #4a4c54;*/
    z-index: 99999;
    border-radius: 20px 20px 20px 20px;
    font-size: large;
    /*color: white;*/

}

#msg_text {
    width: 50%;
    margin-right: 25%;
    border-radius: 20px 20px 20px 20px;
    font-size: 32px;
    padding-right: 1%;
    padding-bottom: 2%;
    margin-top: 10%;
}

#msg_close {
    color: snow;
    font-size: xx-large;
}

#details {
    width: 70%;
    height: auto;
    left: 10%;
    top: 5%;
    position: absolute;
    background-color: #4a4c54;
    z-index: 99999;
    border-radius: 20px 20px 20px 20px;
    font-size: larger;
    color: white;
    /*overflow: scroll;*/

}

#details_data {
    width: 50%;
    margin-right: 25%;
    border-radius: 20px 20px 20px 20px;
    font-size: 32px;
    padding-right: 1%;
    padding-bottom: 2%;
    margin-top: 0%;
    font-size: medium;

}

#loader {
    animation: animate 1.5s linear infinite;
    clip: rect(0, 80px, 80px, 40px);
    height: 80px;
    width: 80px;
    position: absolute;
    left: calc(50% - 40px);
    top: calc(50% - 40px);
    z-index: 100000;
}

@keyframes animate {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(220deg)
    }
}

#loader:after {
    animation: animate2 1.5s ease-in-out infinite;
    clip: rect(0, 80px, 80px, 40px);
    content: '';
    border-radius: 50%;
    height: 80px;
    width: 80px;
    position: absolute;
    z-index: 1000;

}

@keyframes animate2 {
    0% {
        box-shadow: inset #ff7e00 0 0 0 17px;
        transform: rotate(-140deg);
    }
    50% {
        box-shadow: inset #ff7e00 0 0 0 2px;
    }
    100% {
        box-shadow: inset #ff7e00 0 0 0 17px;
        transform: rotate(140deg);
    }
}

html body div.container div.row div.col-md-9 div.card h5.card-title {
    padding-top: 9%;
}

.container div.row img {
    margin-left: 3%;
    margin-bottom: 2%;
}

.img, #msg_close {
    cursor: pointer;
}