.img-template {
    max-width: 100%;
    border: 2px solid rgba(0, 140, 112, 0.383);
}

.img-template-chosen {
    border: 2px solid rgb(0, 140, 113);
}

body {
    min-height: 100vh;
}

main {
    padding: 50px;
    min-height: calc(100vh - 160px);
}

footer {
    background-color: rgb(0, 140, 113);
    color: white;
    padding: 20px;
}

footer a {
    color: white;
}

footer a:hover {
    color: #dddddd;
}

header {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    color: rgb(0, 140, 113);
    padding:  20px 50px;
}

header h1 {
    font-weight: 900;
}

#logo {
    width: 100%;
}

.btn-primary {
    background-color: rgb(0, 140, 113);
    border-color: rgb(0, 140, 113);
}


.btn-primary:hover {
    background-color: rgb(0, 118, 94);
    border-color: rgb(0, 118, 94);
}


#range_size {
    accent-color: rgb(0, 140, 113);
}

#input_size {
    border: none;
    text-align: right;
}

#loader {
    position: fixed;
    position: -webkit-fixed; /* Safari */
    top: 0;
    bottom: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 10000000;
    display: flex;
    align-items: center;
    justify-content: center;

}

#mobile {
    position: fixed;
    position: -webkit-fixed; /* Safari */
    top: 0;
    bottom: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 10000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-inner {
    background-color: white;
    width: 90%;
    padding: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-inner img{
    max-width: 90%;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #008C70; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

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