﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set width on the form input elements since they're 100% wide by default
input,
select,
textarea {
    max-width: 280px;
}
*/

/* api method call progress spinner */
.spinner {
    display: inline-block;
    border: 4px solid #d0d0c0; /* Light grey */
    border-top: 4px solid #808080; /* Grey */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin-bottom: -5px;
    margin-left: 5px;
}

.spinnersmall {
    display: inline-block;
    border: 4px solid #FF99FF; /* Light grey */
    border-top: 4px solid #CCCCFF; /* Grey */
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: spin 1s linear infinite;
    margin-bottom: -5px;
    margin-left: 5px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.thumb-sm {
    float:left;
  height: 80px;
  width: 80px;
  margin-right: 10px;
    box-shadow: -4px 6px 5px #c8c8c8; 
    padding:2px 2px 4px 2px;
    border:1px solid whitesmoke; 
    border-radius: 1px;
}
.thumb-sm>img{
    max-width: 10%;
    max-height: 10%;
    transform: scale(10);
    position:relative;
    top: 25px;
    left:33px;
}

.thumb-med {
    float:left;
  height: 120px;
  width: 120px;
  margin-right: 10px;
    box-shadow: -4px 6px 5px #c8c8c8; 
    padding:2px 2px 4px 2px;
    border:1px solid whitesmoke; 
    border-radius: 1px;
}

.thumb-med>img{
    max-width: 10%;
    max-height: 10%;
    transform: scale(10);
    position:relative;
    top: 45px;
    left:50px;
}

