@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    background:#fff;
    text-align:center;
    font-family: 'Roboto', sans-serif;
    margin: 20px;
}

#logo {
    width: 50px;
    height: auto;
    padding-right: 10px;;
}

.title {
    margin-bottom: 30px;
    line-height: 2.5rem;
    font-size: 1.8rem;
    font-weight: 500;
    color: #123889;
    text-shadow: 0px 0px 1px rgba(0,0,0,0.9);
    font-family: 'Times New Roman', Times, serif;
    text-transform: uppercase;
    word-spacing: 5px;
}


#table {
    display: flex;
    flex-direction: row;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
    margin: 50px auto;
    max-width: 700px;
    border-radius: 10px;
    padding: 20px;

}
.none {
    display: none !important;
}

#table-right, #table-left {
    width: 50%;
    padding: 0 5px;
}

.item {
    display: flex;
    flex-direction: row;
}

.table-name, .table-value {
    display: inline-block;
    line-height: 1.2rem;
    font-size: 0.7rem;
    text-align: left;
    border-bottom: 1.8px;
    border-bottom-style: dotted;
    border-bottom-color: #123889;

}

.table-name {
    margin-right: 2.25px;
    width: 40%;
    text-align: left;
    font-weight: 500;
}

.table-value {
    width: 60%;
    padding-left: 15px;
}

.bi-check-circle {
    display: inline-block;
    margin-left: 10px;
}

#image_section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-left:auto;
    margin-right:auto;
    max-width: 1000px;
}

img, figcaption {
    width:100%;
}

hr {
    margin: 10px 0;
    border: none;
    border-top: 3px;
    border-top-style: dotted;
    border-top-color: #123889;
}

figcaption {
    line-height: 1.5;
}

.image {

    display: flex;
    flex-direction: column;
    margin: 15px;
    border-radius: 10px;
    height: 350px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
    padding:20px;
    text-align:center;
    background-color: #fff;
    overflow: hidden;
}

img {
    margin: 0 auto 15px auto;
    width: fit-content;
    height: 270px;
}

.name {
    display:block;
    margin: 0 auto;
    width: 200px;
    font-weight: 400;
    text-shadow: 0px 0px 0.5px rgba(0,0,0,0.9);
    color: #828384;
    word-wrap: break-word;
}

#status {
    margin:20px auto;
}

.status-text {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    font-style: italic;
    color:darkgrey;
}



.loader {
    position: relative;
    left: 50%;
    margin: 20px -15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}
    
.loader::before {
    content: "";
    position: absolute;
    box-sizing: border-box;
    inset: 0px;
    border-radius: 50%;
    border: 3px solid darkgray;
    animation: prixClipFix 2s linear infinite ;
}

@keyframes rotate {
    100%   {transform: rotate(360deg)}
}

@keyframes prixClipFix {
    0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
    25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
    75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
    100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
}


@media (max-width: 660px) {
    #table {
        flex-direction: column;
        justify-content: center;
        width: 80%;
    }
    #table-left, #table-right {
        width: 100%;
    }
}