@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&&display=swap');

html, body{
    height:100%;
}

body{
    background-color: #008EC9;
    color:#fff;
}

.logo{
    padding-top:105px;
    display: flex;
    justify-content: center;
}

.mailRow{
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;

    font-family: "Inter", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
}

.mailRow div {
    padding-right:10px;
}
.mailRow input{
    width: 100%;
    max-width: 448px;
    height: 47px;
    border-radius: 5px;
    border-style: solid;
    border-color:#C6D3D8;
    border-width: 1px;
    padding: 0 20px;
}
.mailRow input:focus {
    outline: none;
}

.subheadline{
    padding-top: 36px;
    text-align: center;
    font-family: "Inter", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 24px;
}

.unsubscribeCatWrapper{
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
}
.unsubscribeCatWrapper input {
    margin-right: 10px;
    cursor: pointer;
}
.unsubscribeCatWrapper label{
    text-decoration: underline;
    cursor: pointer;
}

.headline{
    padding-top: 40px;
    text-align: center;
    font-family: "Inter", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 40px;
    display: flex;
    justify-content: center;
}

.categoryWrapper{
    padding-top:60px;
}
.categoryWrapper .box {
    border-radius: 20px;
    background:#fff;
    padding:15px;
    margin-bottom: 30px;
    cursor: pointer;
    transition: transform 0.13s ease-out;
}
.categoryWrapper .box:hover{
    transform: scale(1.02, 1.02);
}
.categoryWrapper .box .imgWrapper{
    position:relative;
    overflow:hidden;
    border-radius: 10px;
}
.categoryWrapper .box .imgWrapper .status{
    position: absolute;
    z-index: 10;
    background:#fff;
    border:1px solid #00425D;
    color: #00425D;
    border-radius: 5px;
    top:0;
    right:0;
    margin:10px;
    padding: 5px 8px;
    font-family: "Inter", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
}
.categoryWrapper .box .imgWrapper .status.active {
    background-color: #03D1A8;    
}
.categoryWrapper .box .imgWrapper img {
    display: block;
}
.categoryWrapper .box .title{
    padding:20px 0 10px 0;
    text-align: left;
    font-family: "Inter", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    color:#00425D;
}
.categoryWrapper .box input{
    display:none;
}
.update_settings{
    padding-top:50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.update_settings button{
    font-family: "Inter", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
    color:#00425D;
    border:none;
    border-radius: 10px;
    padding: 20px 40px;
    cursor: pointer;
    transition: all 0.1s ease-out;
    background-color: #fff;
}
.update_settings button:hover{
    background-color:#03D1A8;
    color:#fff;
}
.not_interested_link{
    margin:30px 0 60px 0;
    font-family: "Inter", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    text-decoration: underline;
    color:#fff;
    text-align: center;
    display: block;
}

.imprint_link{
    color:#ccc;
}

.footer{
    margin-top: 30px;
    font-family: "Inter", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color:#ccc;
    text-align: center;
    display: block;
    position: relative;
}

.thankyouWrapper{
    text-align: center;
    height:100%;
    display:flex;
    align-items: center;
    justify-content: center;    
    margin: 15px;
}
.thankyouWrapper .logo{
    padding-top: inherit;
    display: inherit;
    justify-content: inherit;
    padding-bottom:46px;
}
.thankyouWrapper .header{
    font-family: "Inter", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 32px;
    color: #fff;
}
.thankyouWrapper .subheader {
    padding:30px 0;
    font-family: "Inter", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 24px;
    color: #fff;
}
.thankyouWrapper .subheader.dark{
    color:#00425D;
    padding: 50px 0 0 0;
}
.unsubscribedCats{
    padding-top:24px;
    width: 100%;
    max-width: 470px;    
    text-align: left;
    font-family: "Inter", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    color: #fff;
    margin:0 auto;
}
.unsubscribedCats .cat{
    width: 100%;
    max-width: 235px;
    float: left;
    padding-bottom:14px;
}
.unsubscribedCats .cat::before {
    content: url('../imgs/checkmark.png');
    position: relative;
    top: 4px;
    right: 4px;
}

@media only screen and (max-width: 600px) {    
    .mailRow {
        display: block;
    }
    .mailRow div {
        text-align: center;
        padding-bottom:10px;
    }    

    .thankyouWrapper{        
        display: block;
        padding: 15px 0;
        height: auto;
    }
}
