/* Scorecard */
.scorecardrow {
    display:flex;
    flex-flow: row wrap;
    align-items: stretch;
}

.scorecardbox {
    position: relative;
    border:2px solid rgb(121, 74, 32);
    width: 45%;
    min-width: 18em;
    margin-left: 1.5em;
    margin-right: 1.5em;
    padding: 2em;
    padding-bottom: 3em;
    margin-bottom: 3em;
    border-radius: 1em;
}

.scorecardbox .scorecardprice {
    position:absolute;
    font-size: xx-large;
    font-weight: bold;
    color: rgb(121, 74, 32);
    text-align: right;
    width: 100%;
    bottom: 1em;
    right: 1.5em;
}

input[type="submit"].scorecardbutton {
    background-color: #e0555a !important;
    color:#ffffff !important;
    margin-right:0.5em;
    margin-left:0.5em;
}

input[type="submit"].scorecardbutton:hover {
    background-color: #dd7377 !important;
    color:#ffffff !important;
}

#nothankspopup {
    position:fixed;
    border: solid 2px black;
    border-radius: 1em;
    background-color: #ffffff;
    width:60%;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);    left:20%;
    padding:1.5em;
}

#nothankspopup textarea {
    width:100%;
    height: 6em;
    margin-bottom:1em;
    margin-top:1em;
}

#nothankspopup .closebutton {
    text-align: right;
    width:100%;
}

#nothankspopup .closebutton:hover {
    cursor:pointer;
}

#nothankspopup .hidden {
    display: none;
}