/*
 * Base styles
 */

html {
    overflow-y: scroll;
    -ms-overflow-style: auto
}

html.no-scroll {
    overflow-y: hidden !important;
    min-height: 100%;
    padding-bottom: 1px !important
}

html.no-scroll body {
    overflow: hidden !important
}

body * {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-overflow: ellipsis;
    list-style: none;
    font-family: 'Poppins', sans-serif;
}

a {
    color: #78a42c;
    text-decoration: none
}

a:hover {
    text-decoration: underline
}


/* Disable scrollbar and scrolling */

.clip {
    overflow: hidden
}


/* Make container extend to full height, even when containing floated elements. */

.clear:after {
    content: '';
    clear: both;
    display: block
}


/* For backend developers: mark elements as not finished (when integrating templates with backend). */

._placeholder {
    outline: 2px dashed rgba(255, 0, 255, .33) !important
}

.text-left {
    text-align: left
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

h2 {
    margin-bottom: 4px;
    font-size: 20px;
    font-weight: 700
}

table+p,
p+p,
p.margin-top {
    margin-top: 10px
}

.grid>p+p {
    margin-top: 0
}

.bold {
    font-weight: 700
}

table {
    border: solid #b0b2b3;
    border-width: 1px 0 0 1px
}

*+table {
    margin-top: 25px
}

th,
td {
    padding: 15px;
    border: solid #b0b2b3;
    border-width: 0 1px 1px 0;
    text-align: left
}

@media (max-width: 719px) {
    th,
    td {
        font-size: 14px
    }
}

table.secondary {
    border-color: #fff;
    width: 100%;
    margin-bottom: 32px;
}

table.secondary td {
    padding: 29px 22px;
    border: solid #eee;
    border-width: 0 1px 1px 0;
    text-align: left;
    width: 50%;
    color: #221638;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    align-items: center;
}

table.secondary td span {
    border: 1px solid #EEEEEE;
    border-radius: 4px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
}

table.secondary td:last-child {
    justify-content: center;
}

table.secondary th {
    background: #fff;
    padding-left: 8px;
    color: #8A8496;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    padding-bottom: 24px;
    border: none;
}

table.secondary tbody {
    border: 1px solid #eee;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

table.secondary tr {
    display: flex;
    border-bottom: 1px solid #eee;
}

table.secondary tr:last-child {
    border-bottom: none;
}

table.secondary td {
    background: #fff;
    display: flex;
    border: none;
}

@media (max-width: 479px) {
    thead {
        display: none
    }
    td {
        display: block;
        padding: 15px 5px
    }
    td[data-label]:before {
        content: attr(data-label);
        display: inline-block;
        font-size: 14px;
        font-weight: 700
    }
}

@media (max-width: 719px) {
    table.secondary thead {
        display: table-header-group
    }
    table.secondary th,
    table.secondary td {
        display: table-cell;
        border-right: none
    }
}

.relative {
    position: relative
}

.header .need_help {
    border-bottom-right-radius: 5px;
    box-sizing: content-box
}