html {
    overflow-y: scroll;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
}

.subtitle {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.subtitle > h1 {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 5px;
}

.subtitle > h2 {
    font-size: 22px;
    font-weight: 700;
}

.content{
    width:75%;
    margin: 0 auto;
}

.form-content {
    margin: 0 auto;
}
.form-item {
    margin: 30px 0;
}

#chooseCountry {
    border-radius: 0;
    border: 2px solid #ccc;
    font-size: 20px;
    height:100%;
}

#marriage {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

#germany, #norway {
    display: none;
}


#chooseYearRadio{
    display: flex;
    font-size: 20px;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

input[type=radio]{
    display: none;
}

input[type="radio"] + label span {
    display:inline-block;
    width:19px;
    height:19px;
    margin:-2px 10px 0 0;
    vertical-align:middle;
    border: 1px solid #ccc;
    border-radius: 100px;
    cursor:pointer;
}
input[type="radio"]:checked + label span {
    background: #77B200;

}

label {
    font-weight: 100;
}

input[type=text], input[type=number]{
    padding: 5px 5px;
    border-radius: 0;
    border: 2px solid #ccc;
    font-size: 20px;
    height:100%;
    width: 100%;
}

.submit-button {
    background: #77B200;
    color: white;
    width: 100%;
    height: 75px;
    font-size: 30px;
}

.submit-button:hover {
    transform: scale(1.05);
    background: #77B200;
    color: white;
}

footer {
    text-align: center;
    margin-top: 100px;
}

.hint {
    height:0px;
    max-height: 0px;
}


.hint-tip {

    width: 50px;
    height: 50px;

    content: "?";
    text-align: center;
    padding: 0 10px;
    font-size: 25px;
    position: relative;
    bottom: 46px;
    left: 105%;
    border: 1px solid #77B200;
    border-radius: 50%;

    line-height: 50px;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;

    cursor: help;
}

.tooltip .tooltip-arrow {
    display: none;
}

.tooltip.in {
  opacity: 1;
  filter: alpha(opacity=100);
}

.tooltip-inner {
    min-width: 200px;
}

.taxModal .modal-content{
    border: 5px solid #77B200;
    border-radius: 0;
}

.taxModal .modal-content{
    border: 5px solid #77B200;
    border-radius: 0;
}

.taxModal .modal-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
}

.taxModal .modal-body > p {
    text-align: center;
    font-size: 17px;
}

#taxReturn {
    text-align: center;
    color: #77B200;
    font-size: 45px;
}

.error {
    color: #cc1818;
}

.hidden{
    display: none;
}