.full{
    width: 100%;
}

.half{
    width: 50%;
}

.third{
    width: 33.333%;
}

.quater{
    width: 25%;
}

.flex{
    display: flex;
}

.grid{
    display: grid;
}

.centercontent{
    justify-content: center;
}

.endcontent{
    display: flex;
    justify-content: end;
}

.nodeco{
    text-decoration: none;
}

.font{
    font-family: 'Open Sans', sans-serif;
}

.block{
    display: block;
}

.tmargin10{
    margin-top: 10px;
}

.tmargin40{
    margin-top: 40px;
}

.size16{
    font-size: 16px;
}

.size18{
    font-size: 18px;
}

.size20{
    font-size: 20px;
}

.size24{
    font-size: 24px;
}

.size30{
    font-size: 30px;
}

.bold{
    font-weight: bold;
}

.black{
    color: #000;
}

.green{
    color: #6fd771;
}

.white{
    color: white;
}

.lila{
    color: #8074bd;
}

.inline{
    display: inline;
}

.underline{
    text-decoration-line: underline !important;
    text-decoration-color: #6fd771 !important;
    text-decoration-style: solid !important;
    text-decoration-thickness: 2px !important;
    text-underline-offset: 8px;
}

@-moz-document url-prefix() {
    .underline{
        text-decoration-line: underline !important;
        text-decoration-color: #6fd771 !important;
        text-decoration-style: solid !important;
        text-decoration-thickness: 2px !important;
        text-underline-offset: 9px;
    }
  }