body {
    margin: 0;
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

img{
    max-width: 100%;
    height: auto;
    vertical-align: top;
}
ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
}
body{
    font-family: 'Inter';
    font-style: normal;
}

.wrapper{
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    overflow: hidden;
    color: black;
}

.container{
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    min-height: 90vh;
}
@media screen and (max-width: 500px) {
    .container{
        padding: 0 5px;
    }
}

.header-box{
    position: relative;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    margin: 2em 0;
}

.logo{
    margin-left: 1em;
    margin-right: 1em;
    font-weight: 400;
    font-size: 30px;
    line-height: 36px;
    color: #000000;
}
.logo .home-link{
    text-decoration: none;
    color: #000000;
}

.footer-box{
    padding: 20px;
    text-align: center;
    position: sticky
}
.nav-list{
    text-align: center;
    display: flex;
}
.nav-item{
    margin-left: 15px;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    /* identical to box height */


    color: #000000;
}

.nav-link{
    color: #000;
}
.nav-link.active{
    text-decoration-line: underline;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
}
.nav-link:hover{
    opacity: 0.7;
}
.referral-header-box{
    margin-left: auto;
}
ul.nav-list-dropdown{
    display: none;
    position: absolute;
    border: 1px solid #17A2B8;
    z-index: 1;
    background: #E5EAF0;
}
span.nav-link{
    cursor: pointer;
}
span.nav-link:hover+ul.nav-list-dropdown{
    display: block;
}
ul.nav-list-dropdown:hover{
    display: block;
}

.close-cluetip{
    float: right;
    color: #14A2B8;
    padding: 5px;
}
.cluetip-outer .ui-widget-content{
    display: none;
}
.close-cluetip-all-cross{
    color: red;
    margin-right: 5px;
    right: 0;
    bottom: 5px;
    position: absolute;
}
.close-cluetip:hover,
.close-cluetip-all:hover,
.close-cluetip-all-cross:hover,
span.pronimgblue:hover,
span.title:hover{
    cursor: pointer !important;
}
.cluetip:hover{
    z-index: 100 !important;
}
.cluetip-default .ui-cluetip-header,
.cluetip-default .cluetip-outer{
    background-color: #FBFFCF !important;
}

.char-img-content .content-items{
    margin-top: 55px;
}
.menu-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 2;
}
.selection-box-header{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: end;
    background: #F2F5F9;
    border-radius: 2px;
    padding: 5px;
    line-height: 0;
}
.selection-box-header form+form{
    margin-left: 5px;
    line-height: 0;
}
.selection-box-header .select-item-header.active {
    background: #17A2B8;
    border-radius: 5px;
}
.selection-box-header .select-item-header {
    padding: 5px;
    cursor: pointer;
    line-height: 0;
    border: none;
}
.selection-box-header .select-item-header.active svg path {
    fill: white;
}
.navigation-wrapper>.navigation{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 70%;
    margin: 0 auto;
}