
body {
    margin: 0px;
    padding: 0px;
}


.main {
    min-height: 80vh;

}

#mask /* FOR JAVASCRIPT ON FORM SUBMIT */
{
    opacity: 0.8;
    /*background-color:#000;*/
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 1000;
    background-image: url("/assets/graphics/wait.gif");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 180px;
}

.red {
    color: red;
}

a {
    text-decoration: none;
    color: inherit;
}

.cadre {
    margin: auto;
    width: min(800px, 90vw);
}

.menu-top {
    color: white;
    font-size: small;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 12px;
    margin: auto;
    width: min(800px, 90vw);
}


.menu-top-right {
    display: flex;
    justify-content: flex-end;
    column-gap: 12px;
    margin: 10px auto;
    width: min(800px, 90vw);

}

.sub-menu {
    display: flex;
    justify-content: flex-end;
    column-gap: 12px;
    margin: 10px auto;
    width: min(800px, 90vw);
}

.menu-top a  {
    padding: 10px;
}

.menu-top a:hover {
    background-color: white;
    color: black;
}

.menu-sub {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    column-gap: 16px;
}

.menu-sub div {
    display: flex;
    justify-content: space-between;
    column-gap: 12px;
}


.club_logo {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 80px;
    margin: 12px;
}

.product {
    margin: 16px 16px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: row;
}

@media only screen and (max-width: 768px) {
    .product {
        flex-direction: column;
    }
}


.prod_img {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 200px;
    max-width: 200px;
    height: 200px;
    margin: 16px;
}

.prod_thumb {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 100px;
    max-width: 100px;
    height: 100px;

}

.prod_line {
    display: grid;
    grid-template-columns: 120px auto;
    gap: 40px;
    padding: 20px 20px;
}

.prod_line + .prod_line {
    border-top: solid 1px rgba(0, 0, 0, .10);
}


.content {
    padding: 16px;
    text-align: justify;
    width: 100%;
}

/*CARDS OVERWRIGHT*/
div.card {
    padding: 15px;
    border-radius: 2px;
}


div.card-header {
    margin-bottom: 12px;
    padding: 12px 0px 6px 0px;
    border-bottom: var(--col-medium) 1px solid;
    background-color: inherit;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}


div.card-title, div.modal-title {
    font-size: 24px;
    font-weight: 600;
    text-align: left;
}

div.card-subtitle, div.modal-subtitle {
    margin-top: 6px;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}

div.card-body {
    margin-bottom: 15px;
    padding: 0px;
}


div.modal-body {
    padding: 15px;
}


footer {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: black;
    margin-top: 20px;
}

.footer-terms {
    font-size: .7rem;
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.footer-terms a {
    color: white;
    text-decoration: none;
}

.footer-terms a:hover {
    color: red;
}

.copyright {
    color: white;
    font-size: 9px;
    text-transform: uppercase;
}

span.required {
    color: #888;
    font-size: small;
}
